plot_outliers {evprof} | R Documentation |
Plot outlying sessions
Description
Plot outlying sessions
Usage
plot_outliers(
sessions,
start = getOption("evprof.start.hour"),
log = FALSE,
...
)
Arguments
sessions |
tibble, sessions data set in evprof standard format. |
start |
integer, start hour in the x axis of the plot. |
log |
logical, whether to transform |
... |
arguments to pass to function ggplot2::plot_point |
Value
ggplot2 plot
Examples
library(dplyr)
sessions_outliers <- california_ev_sessions %>%
sample_frac(0.05) %>%
detect_outliers(start = 3, noise_th = 5, eps = 2.5)
plot_outliers(sessions_outliers, start = 3)
plot_outliers(sessions_outliers, start = 3, log = TRUE)
[Package evprof version 1.1.2 Index]