-
18. Model Basic with modelrR 2018. 9. 13. 16:05
18. Model Basic with modelr
Introdunction
A simple model
Visualization models
Formulas and model families
Missing values
Other model families
- Generalized linear models : stats::glm()
- Generalized additive models : mgcv::gam()
- Penealized linear models : glmnet::glmnet()
- Robust linear models : MASS::rlm()
- Trees : rpart::rpart(), randomForest::randomForest()
- xgboost::xgboost()
[출처] R for Data Science, Hadley Wickham & Garrett Grolemund, O'REILLY, p345~374
# modelr
# modelr::data_grid()
# modelr::add_predictions()
# modelr::add_residuals()
# modelr::model_matrix()
# modelr::gather_predictions()
# modelr::spread_predictions()
# splines::ns()
# stats::nobs()'R' 카테고리의 다른 글
카네기멜론대학교 데이터 (0) 2018.10.19 미국 원자력 발전소 가동 현황 그래프 작성하기 (0) 2018.10.19 여러 개의 sheets 데이터를 하나로 합치기 (0) 2018.09.09 R의 결과를 파워포인트에 작성하기 (0) 2018.09.07 다중응답분석 (0) 2018.09.04