plot.doremidata {doremi} | R Documentation |
plot.doremidata
generates a plot of the simulated signals resulting from the generate.panel.1order
and generate.panel.2order
functions
## S3 method for class 'doremidata'
plot(x, ...)
x |
DOREMIDATA object resulting from the aforementioned functions |
... |
includes the additional arguments inherited from the generic plot method |
Returns a plot with axis labels, legend and title. The title includes the name of the DOREMIDATA object result of the analysis.
The function uses ggplot
to generate the graphs and thus it is possible to override the values of axis labels, legend and title through ggplot commands.
mydata <- generate.panel.1order(time=0:100,
excitation = c(rep(0,50),rep(1,51)),
nind = 6,
internoise = 0.2,
intranoise = 100)
plot(mydata)