plot.avar | R Documentation |
Displays a plot of Allan variance with its corresponding pointwise confidence intervals.
## S3 method for class 'avar' plot( x, units = NULL, xlab = NULL, ylab = NULL, main = NULL, col_ad = NULL, col_ci = NULL, nb_ticks_x = NULL, nb_ticks_y = NULL, legend_position = NULL, ci_ad = NULL, point_cex = NULL, point_pch = NULL, text_legend_cex = 1, ... )
x |
An |
units |
A |
xlab |
A |
ylab |
A |
main |
A |
col_ad |
A |
col_ci |
A |
nb_ticks_x |
An |
nb_ticks_y |
An |
legend_position |
A |
ci_ad |
A |
point_cex |
A |
point_pch |
A |
text_legend_cex |
A |
... |
Additional arguments affecting the plot. |
A plot of the Allan deviation and relative confidence interval for each scale.
Stephane Guerrier, Nathanael Claussen and Justin Lee
set.seed(999) Xt = rnorm(10000) av = avar(Xt) plot(av) plot(av, main = "Simulated white noise", xlab = "Scales") plot(av, units = "sec", legend_position = "topright") plot(av, col_ad = "darkred", col_ci = "pink")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.