lm()
La función en R Language es una función de modelo lineal, utilizada para el análisis de regresión lineal.
Sintaxis: lm(fórmula)
Parámetros:
fórmula: descripción del modelo, como x ~ y
Ejemplo 1:
# R program to illustrate # lm function # Creating two vectors x and y x <- c(rep(1:20)) y <- x * 2 # Calling lm() function to # fit a linear model f <- lm(x ~ y) # Getting linear model f
Producción:
Call: lm(formula = x ~ y) Coefficients: (Intercept) y 1.589e-15 5.000e-01
Ejemplo 2:
# R program to illustrate # lm function # Creating two vectors x and y x <- c(2, 4, 6, 8) y <- c(1, 3, 5, 7) # Calling lm() function to # fit a linear model f <- lm(y ~ x) # Getting linear model f
Producción:
Call: lm(formula = y ~ x) Coefficients: (Intercept) x -1 1
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA