View source: R/Plots_sim_est.R
plot.H_LFD | R Documentation |
H_LFD
Creates a plot of the user provided time series with the
Hurst function estimated using Hurst
, the smoothed estimated
Hurst function and local fractal dimension estimated using LFD
and smoothed estimates of local fractal dimension for objects of class "H_LFD"
.
## S3 method for class 'H_LFD'
plot(
x,
H_Est = TRUE,
H_Smooth_Est = TRUE,
LFD_Est = TRUE,
LFD_Smooth_Est = TRUE,
...
)
x |
Return from |
H_Est |
Logical: If |
H_Smooth_Est |
Logical: If |
LFD_Est |
Logical: If |
LFD_Smooth_Est |
Logical: If |
... |
Other arguments. |
Compared to plot_tsest
, the function's argument is a "H_LFD"
object, not a time series.
A ggplot object which is used to plot the time series with theoretical, raw and smoothed estimates of Hurst function and raw and smoothed estimates of local fractal dimension.
H_LFD
, Hurst
, LFD
, plot_tsest
TS <- data.frame("t" = seq(0, 1, length = 1000), "X(t)" = rnorm(1000))
Object <- H_LFD(TS)
#Plot of time series, estimated and smoothed Hurst and LFD estimates
plot(Object)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.