powered by
Generates a parallel coordinate plot for a given Cube object. All added selections and aggregations will be regarded.
Cube
# S4 method for Cube plot(x, color = NA, colorscale = "RdBu", ...)
The Cube object that should be plotted.
The color of the lines in the parallel coordinate plot. If this parameter is NA or NULL, a colorscale rather than a unique color will be used.
The colorscale for the lines in the parallel coordinate plot. Default is RdBu. All plotly colorscales (e.g., Blackbody, Earth, Jet) are possible.
Further plot_ly parameters.
# NOT RUN { data("sales") cube = generateCube(sales, columns = list(time = c("month", "year"), location = c("state"), product = "product"), valueColumn = "amount") plot(cube) # }
Run the code above in your browser using DataLab