smooth_loess_custom | R Documentation |
if a robust loess fit is desired, add parameter family='symmetric' which will be passed to loess() function
smooth_loess_custom(
x,
y,
span = 0.1,
remove_na_yval = TRUE,
min_values = 10,
...
)
x |
numeric vector |
y |
numeric vector |
span |
span argument for loess() function |
remove_na_yval |
set all output values where is.na(y) to NA. default is TRUE |
min_values |
minimum number of values required (if less, input parameter y is returned). default is 10 |
... |
passed to loess() function |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.