ssrnd | R Documentation |
Calculates the multi-dimensional SSR model
ssrnd(koord, dat, k = NULL, fn = NULL, iter = 1000)
koord |
data frame with n-dimensional coordinates. |
dat |
data frame with observations. |
k |
optional: maxumum run length for the model. |
fn |
optional: quantile for partial sums. |
iter |
optional: number of iterations for the numeric solver. |
df |
data frame with the relevant model data. |
Dr. Lars Metzner
Dr. Lars Metzner (2021) Adäquates Maschinelles Lernen. Independently Published.
# generate data
set.seed(1234)
x <- rnorm(300)
y <- rnorm(300)
xy <- data.frame(x=x, y=y)
z <-data.frame(z=rnorm(300) + atan2(x, y))
# Training
df_model <- ssrnd(xy, z)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.