fitall {meifly} | R Documentation |
This technique generalises fitbest
. While it is much
slower it will work for any type of model.
fitall(y, x, method = "lm", ...)
y |
vector y values |
x |
matrix of x values |
method |
|
... |
other arguments passed on to |
y <- swiss$Fertility
x <- swiss[, -1]
mods <- fitall(y, x, "lm")