Description Usage Arguments Value Author(s) See Also Examples
View source: R/visualize_data.R
The function for plotting of ggplot objects. For more details about the
graphical parameter arguments, use ?visualize_data
1 | visualize_data(df, id_engine, cols = NULL, type = "l", n_step = 20)
|
df |
dataframe containing multiple multivariate time series formatted using
the specific Table Schema, use |
id_engine |
id for the input data to be shown. |
cols |
for the variable names of the input data to be shown. |
type |
what type of plot should be drawn. Possible types are:
|
a ggplot object containing the subgraphs of each variable from the input data.
Cuong Sai and Maxim Shcherbakov.
showDF
, validate_data
,summarize_data
1 2 3 4 5 | visualize_data(train_data, id_engine = 1:10, type = "l")
visualize_data(train_data, id_engine = 1:10, cols = c("s1", "s2", "S8", "c2"), type = "p")
visualize_data(train_data, id_engine = 1:20, type = "bp")
visualize_data(train_data, id_engine = 1:100, type = "h")
visualize_data(train_data, id_engine = 1:100, type = "hp", n_step = 30)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.