Description Details Author(s) Examples
lm2Wsmry is a package for homework project process. By this package, a linear regression can be fitted, and a related summary output contains information like residuals, coefficient, standard errors, R^2, adjusted R^2, F statistics, related p-value and some other statistics value can be achieved. This package is trying to reproduce the output result given by lm() and summary(lm()) in base, by lm2() and summary_lm2() respectively. To have more details on each function, please check the help page for each function.
The DESCRIPTION file:
This package was not yet installed at build time.
Index: This package was not yet installed at build time.
lm2Wsmry is a package for homework project process. By this package, a linear regression can be fitted, and a related summary output contains information like residuals, coefficient, standard errors, R^2, adjusted R^2, F statistics, related p-value and some other statistics value can be achieved. This package is trying to reproduce the output result given by lm() and summary(lm()) in base, by lm2() and summary_lm2() respectively. To have more details on each function, please check the help page for each function.
Tiankai Xie
Maintainer: Who to complain to <tiankai@umich.edu>
1 2 3 4 5 6 7 8 9 | lm2(formula = Temp ~ Wind + Solar.R, data = airquality, na.handle = "na.omit")
result = lm2(formula = Rape ~ Murder+Assault+UrbanPop, data = USArrests, res_display = FALSE)
result$coefficients
summary_lm2(lm2(formula = Rape ~ Murder+Assault+UrbanPop, data = USArrests, res_display = FALSE))
result = summary_lm2(lm2(formula = Rape ~ Murder+Assault+UrbanPop, data = USArrests, res_display = FALSE), res_display = FALSE)
result$resd.tb
result$rank
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.