Moving (weighted) average filter plot (filtered)
Source:R/moving_filter_plot_f.R
moving_filter_plot_f.RdPlots the filtered results of a moving (weighted) average filter routine.
Usage
moving_filter_plot_f(
x,
xlab = "X",
ylab = "Data",
filterlab = "Filter & data",
plotk = "all"
)Arguments
- x
The result of using the
moving_avg_filter()ormoving_wt_filter()functions- xlab
The label for the x-axis
- ylab
The label for the y-axis
- filterlab
The label for the legend
- plotk
A string for choosing what to plot (Default is "all")
Examples
data(nautilus)
k = c(3, 5, 7, 9)
filt = moving_avg_filter(nautilus$x, nautilus$y, k)
moving_filter_plot_f(filt)
#> $GGPLOT
#>
#> $PLOTLY
#>
moving_filter_plot_f(filt, plotk = c("y", "k_9")) # plots data and filter of window 9
#> $GGPLOT
#>
#> $PLOTLY
#>
moving_filter_plot_f(filt, plotk = c("k_3", "k_9")) # plots filters of window 3 and 9
#> $GGPLOT
#>
#> $PLOTLY
#>