autoplot.auto.imu | R Documentation |
Creates a graph of the automatic model selection result containing the empirical and theoretical wavelet variances.
## S3 method for class 'auto.imu' autoplot(object, process.decomp = FALSE, CI = TRUE, background = "white", transparence = 0.1, line.color = NULL, line.type = NULL, point.size = NULL, point.shape = NULL, CI.color = "#003C7D", title = "Automatic Model Selection Results", title.size = 15, axis.label.size = 13, axis.tick.size = 11, axis.x.label = expression(paste("Scale ", tau)), axis.y.label = expression(paste("Wavelet Variance ", nu)), units = c(bquote(rad^2/s^2), bquote(m^2/s^4)), facet.label.size = 13, facet.label.background = "#003C7D33", scales = "free_y", legend.title = "", legend.label = NULL, legend.key.size = 1, legend.title.size = 13, legend.text.size = 13, ...)
object |
A |
process.decomp |
A |
CI |
A |
background |
A |
transparence |
A |
line.color |
A |
line.type |
A |
point.size |
A |
point.shape |
A |
CI.color |
A |
title |
A |
title.size |
An |
axis.label.size |
An |
axis.tick.size |
An |
axis.x.label |
A |
axis.y.label |
A |
units |
A two-element vector indicating the units of gyroscope and accelerometer sensor. Set it to |
facet.label.size |
An |
facet.label.background |
A |
scales |
Same as |
legend.title |
A |
legend.label |
A |
legend.key.size |
A |
legend.title.size |
An |
legend.text.size |
An |
... |
Additional options. |
A panel containing the automatic model selection results of an IMU sensor.
Wenchao
## Not run: if(!require("imudata")){ install_imudata() library("imudata") } data(imu6) test = imu(imu6, gyros = 1:3, accels = 4:6, axis = c('X', 'Y', 'Z', 'X', 'Y', 'Z'), freq = 100) df = auto.imu(test) autoplot(df) autoplot(df, process.decomp = T) autoplot(df, CI = F) autoplot(df, CI = T, line.color = c('black', 'black', 'blue'), title.size = 18) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.