noise | R Documentation |
This functions estimate the noise in the data.
noise(x, y, method = c("MAD", "SuperSmoother"), ...)
x |
|
y |
|
method |
|
... |
further arguments passed to |
A numeric
of the same length as x
with the estimated noise.
Sebastian Gibb
stats::mad()
, stats::supsmu()
Other noise estimation and smoothing functions:
smooth()
x <- 1:20
y <- c(1:10, 10:1)
noise(x, y)
noise(x, y, method = "SuperSmoother", span = 1 / 3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.