robust_eda {wv} | R Documentation |
Comparison between classical and robust Wavelet Variances
Description
Displays a plot of the wavelet variances (classical and robust) for a given time series accounting for CI values.
Usage
robust_eda(
x,
eff = 0.6,
units = NULL,
xlab = NULL,
ylab = NULL,
main = NULL,
col_wv = NULL,
col_ci = NULL,
nb_ticks_x = NULL,
nb_ticks_y = NULL,
legend_position = NULL,
...
)
Arguments
x |
A time series objects. |
eff |
An |
units |
A |
xlab |
A |
ylab |
A |
main |
A |
col_wv |
A |
col_ci |
A |
nb_ticks_x |
An |
nb_ticks_y |
An |
legend_position |
A |
... |
Additional arguments affecting the plot. |
Value
Plot of wavelet variance and confidence interval for each scale.
Author(s)
Stephane Guerrier, Nathanael Claussen, and Justin Lee
Examples
set.seed(999)
n = 10^4
Xt = rnorm(n)
wv = wvar(Xt)
plot(wv)
plot(wv, main = "Simulated white noise", xlab = "Scales")
plot(wv, units = "sec", legend_position = "topright")
plot(wv, col_wv = "darkred", col_ci = "pink")