我正在尝试使用随机森林来预测学生的GPA。此步骤完成后,谁能帮助我提供代码?
非常感谢您!
library(randomForest)
fit <- randomForest(`Term GPA` ~ AP_IB_WFU_CREDITS_EARNED + LEFT_1ST_YR + SAT_VM + student_ses_1 +Gender + Ethnicity_Grp
+ first_generation_indicator + term_hours_attempted + term_hours_passed,
method = "class",
data = test_rf,
importance = TRUE,
ntree = 2000)
varImpPlot(fit)
我熟悉线性模型,在这里我可以编写类似y = ax + by的函数。
随机森林怎么样?我还可以使用函数表达结果吗?