plot_density_3D {evprof} | R Documentation |
Density plot in 3D, considering Start time and Connection duration as variables
Description
Density plot in 3D, considering Start time and Connection duration as variables
Usage
plot_density_3D(
sessions,
start = getOption("evprof.start.hour"),
eye = list(x = -1.5, y = -1.5, z = 1.5),
log = FALSE
)
Arguments
sessions |
tibble, sessions data set in evprof standard format. |
start |
integer, start hour in the x axis of the plot. |
eye |
list containing x, y and z points of view. Example: |
log |
logical, whether to transform |
Value
plotly plot (html)
Examples
library(dplyr)
california_ev_sessions %>%
sample_frac(0.05) %>%
plot_density_3D(start = 3)
[Package evprof version 1.1.2 Index]