文件名称:treesnip:防风草后端为“ tree”,“ lightGBM”和“ Catboost”
文件大小:1.16MB
文件格式:ZIP
更新时间:2024-05-30 08:01:55
R
树木 该程序包为防风衣程序包提供了以下绑定: 该tree引擎decision_tree ; 该catboost发动机boost_tree ; 用于boost_tree的lightGBM引擎。 docs 安装 还没有在CRAN上。 remotes :: install_github( " curso-r/treesnip " ) 最小的例子 # decision_tree model <- parsnip :: decision_tree() parsnip :: set_engine( model , " tree " ) # boost_tree model <- parsnip :: boost_tree( mtry = 1 , trees = 50 ) parsnip :: set_engine( model , " catboost " ) parsnip :: set