model_selection | R Documentation |
do linear model from data and y, and use AIC selection to choose min aic value model return.
aselect(y, data)
y |
y of linear model, a strain variable |
data |
all x of linear model, independent variable |
y <- iris[,1]
x <- iris[,2:4]
fit <- aselect(y=y, data=x)
summary(fit)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.