plot-Cube-method: Visualizes a Cube object as parallel coordinate plot

Description Usage Arguments Author(s) See Also Examples

Description

Generates a parallel coordinate plot for a given Cube object. All added selections and aggregations will be regarded.

Usage

1
2
## S4 method for signature 'Cube'
plot(x, color = NA, colorscale = "RdBu", ...)

Arguments

x

The Cube object that should be plotted.

color

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.

colorscale

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.

Author(s)

Michael Scholz michael.scholz@th-deg.de

See Also

Cube

Examples

1
2
3
4
data("sales")
cube = generateCube(sales, columns = list(time = c("month", "year"),
      location = c("state"), product = "product"), valueColumn = "amount")
plot(cube)

hypercube documentation built on March 26, 2020, 7:52 p.m.