plot_series {daltoolbox} | R Documentation |
plot series
Description
plot series
Usage
plot_series(data, label_x = "", label_y = "", colors = NULL)
Arguments
data |
data.frame contain x, value, and variable |
label_x |
x-axis label |
label_y |
y-axis label |
colors |
color vector |
Value
plot
Examples
x <- seq(0, 10, 0.25)
data <- data.frame(x, sin=sin(x))
head(data)
grf <- plot_series(data, colors=c("red"))
plot(grf)
[Package daltoolbox version 1.0.767 Index]