View source: R/all_func.R View source: R/all_func.R
| mylm | R Documentation |
A simple modeling function using a formula and data
A simple modeling function using a formula and data
mylm(formula, data)
mylm(formula, data)
formula |
A formula as in lm() |
data |
A data.frame containing the elements specified in the formula |
A list of matrices
A list of matrices
Jay ver Hoef
options(na.action='na.pass')
data("iris")
out_list = mylm(formula = Petal.Length ~ Sepal.Length + Sepal.Width, data = iris)
options(na.action='na.pass')
data("iris")
out_list = mylm(formula = Petal.Length ~ Sepal.Length + Sepal.Width, data = iris)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.