plotAnno {seeds} | R Documentation |
Create annotated plot
Description
Create a annotated plot with given state and measurement names. The plots are equal to the output of the normal plot function.
Usage
plotAnno(x, stateAnno, measAnno)
## S4 method for signature 'resultsSeeds'
plotAnno(x, stateAnno, measAnno)
## S4 method for signature 'list'
plotAnno(x, stateAnno, measAnno)
Arguments
x |
an object of type resultsSeeds which contains the results of the algorithms |
stateAnno |
a character vector describing the names of the states |
measAnno |
a character vector describing the names of the measurements |
Value
Plots of the results with the provided annotation
Examples
data(uvb_res)
statesAnno <- c("x1", "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9", "x10", "x11", "x12", "x13")
measurAnno <- c("y1", "y2", "y3", "y4", "y5")
plotAnno(res[[2]], stateAnno = statesAnno, measAnno = measurAnno)
[Package seeds version 0.9.1 Index]