Tidyverse로 하는 데이터 모델링
Albert Y. Kim
Assistant Professor of Statistical and Data Sciences
http://bit.ly/modeling_tidyverse에서 이용 가능




다양한 $f()$를 사용하는 $y = f(\vec{x}) + \epsilon$ 관련 강좌:
# Fit model:
model_score_1 <- lm(score ~ age, data = evals)
# Output regression table:
get_regression_table(model_score_1)
# A tibble: 2 x 7
term estimate std_error statistic p_value lower_ci upper_ci
<chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
1 intercept 4.46 0.127 35.2 0 4.21 4.71
2 age -0.006 0.003 -2.31 0.021 -0.011 -0.001

tidyverse 도구 활용: ggplot2, dplyrevals, house_prices 데이터셋 등 활용Tidyverse로 하는 데이터 모델링