这些函数与 partykit::ctree()
和 partykit::cforest()
的 API 略有不同,它们有几个重要的参数作为顶级参数(而不是在 partykit::ctree_control()
中指定)。
用法
ctree_train(
formula,
data,
weights = NULL,
minsplit = 20L,
maxdepth = Inf,
teststat = "quadratic",
testtype = "Bonferroni",
mincriterion = 0.95,
...
)
cforest_train(
formula,
data,
weights = NULL,
minsplit = 20L,
maxdepth = Inf,
teststat = "quadratic",
testtype = "Univariate",
mincriterion = 0,
mtry = ceiling(sqrt(ncol(data) - 1)),
ntree = 500L,
...
)
参数
- formula
-
要拟合的模型的符号说明。
- data
-
包含模型中变量的 DataFrame 。
- weights
-
长度与
nrow(data)
相同的权重向量。对于partykit::ctree()
模型,这些必须是非负整数,而对于partykit::cforest()
,它们可以是非负整数或双精度数。 - minsplit
-
节点中考虑分裂的最小权重总和。
- maxdepth
-
树的最大深度。默认
maxdepth = Inf
表示对树大小没有限制。 - teststat
-
指定要应用的检验统计量类型的字符。
- testtype
-
指定如何计算检验统计量分布的字符。
- mincriterion
-
必须超过测试统计值(对于
testtype == "Teststatistic"
)或 1 - p 值(对于testtype
的其他值)才能实现拆分。 - ...
-
传递给
partykit::ctree()
或partykit::cforest()
的其他选项。 - mtry
-
在类似随机森林的算法的每个节点上随机采样作为候选的输入变量的数量。默认
mtry = Inf
表示不进行随机选择。 - ntree
-
森林中生长的树数量。
例子
if (rlang::is_installed(c("modeldata", "partykit"))) {
data(bivariate, package = "modeldata")
ctree_train(Class ~ ., data = bivariate_train)
ctree_train(Class ~ ., data = bivariate_train, maxdepth = 1)
}
#>
#> Model formula:
#> Class ~ A + B
#>
#> Fitted party:
#> [1] root
#> | [2] B <= 56.77622: Two (n = 100, err = 34.0%)
#> | [3] B > 56.77622: One (n = 909, err = 33.8%)
#>
#> Number of inner nodes: 1
#> Number of terminal nodes: 2
相关用法
- R parsnip condense_control 将控制对象压缩为更小的控制对象
- R parsnip control_parsnip 控制拟合函数
- R parsnip logistic_reg 逻辑回归
- R parsnip predict.model_fit 模型预测
- R parsnip linear_reg 线性回归
- R parsnip C5_rules C5.0 基于规则的分类模型
- R parsnip set_engine 声明计算引擎和特定参数
- R parsnip augment 通过预测增强数据
- R parsnip repair_call 修复模型调用对象
- R parsnip dot-model_param_name_key 翻译模型调整参数的名称
- R parsnip glm_grouped 将数据集中的分组二项式结果与个案权重拟合
- R parsnip rule_fit 规则拟合模型
- R parsnip svm_rbf 径向基函数支持向量机
- R parsnip set_args 更改模型规范的元素
- R parsnip translate 解决计算引擎的模型规范
- R parsnip max_mtry_formula 根据公式确定 mtry 的最大值。此函数可能会根据公式和数据集限制 mtry 的值。对于生存和/或多变量模型来说,这是一种安全的方法。
- R parsnip svm_linear 线性支持向量机
- R parsnip set_new_model 注册模型的工具
- R parsnip rand_forest 随机森林
- R parsnip mlp 单层神经网络
- R parsnip nearest_neighbor K-最近邻
- R parsnip parsnip_update 更新型号规格
- R parsnip fit 将模型规范拟合到数据集
- R parsnip boost_tree 增强树
- R parsnip bart 贝叶斯加性回归树 (BART)
注:本文由纯净天空筛选整理自Max Kuhn等大神的英文原创作品 A wrapper function for conditional inference tree models。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。