- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 cforest 函数(R,派对包)。
这就是我为构建森林所做的工作:
library("party")
set.seed(42)
readingSkills.cf <- cforest(score ~ ., data = readingSkills,
control = cforest_unbiased(mtry = 2, ntree = 50))
party:::prettytree(readingSkills.cf@ensemble[[1]],names(readingSkills.cf@data@get("input")))
1) shoeSize <= 28.29018; criterion = 1, statistic = 89.711
2) age <= 6; criterion = 1, statistic = 48.324
3) age <= 5; criterion = 0.997, statistic = 8.917
4)* weights = 0
3) age > 5
5)* weights = 0
2) age > 6
6) age <= 7; criterion = 1, statistic = 13.387
7) shoeSize <= 26.66743; criterion = 0.214, statistic = 0.073
8)* weights = 0
7) shoeSize > 26.66743
9)* weights = 0
6) age > 7
10)* weights = 0
1) shoeSize > 28.29018
11) age <= 9; criterion = 1, statistic = 36.836
12) nativeSpeaker == {}; criterion = 0.998, statistic = 9.347
13)* weights = 0
12) nativeSpeaker == {}
14)* weights = 0
11) age > 9
15) nativeSpeaker == {}; criterion = 1, statistic = 19.124
16) age <= 10; criterion = 1, statistic = 18.441
17)* weights = 0
16) age > 10
18)* weights = 0
15) nativeSpeaker == {}
19)* weights = 0
最佳答案
简短回答:案例权重 weights
在每个节点是 NULL
,即不存储。 prettytree
函数输出 weights = 0
, 自 sum(NULL)
在 R 中等于 0。
考虑以下 ctree
例子:
library("party")
x <- ctree(Species ~ ., data=iris)
plot(x, type="simple")
x
(类
BinaryTree
)案例权重存储在每个节点中:
R> sum(x@tree$left$weights)
[1] 50
R> sum(x@tree$right$weights)
[1] 100
R> sum(x@tree$right$left$weights)
[1] 54
R> sum(x@tree$right$right$weights)
[1] 46
cforest
:
y <- cforest(Species ~ ., data=iris, control=cforest_control(mtry=2))
tr <- party:::prettytree(y@ensemble[[1]], names(y@data@get("input")))
plot(new("BinaryTree", tree=tr, data=y@data, responses=y@responses))
fixInNamespace("print.TerminalNode", "party")
print
方法
function (x, n = 1, ...)·
{
print(names(x))
print(x$weights)
cat(paste(paste(rep(" ", n - 1), collapse = ""), x$nodeID,·
")* ", sep = "", collapse = ""), "weights =", sum(x$weights),·
"\n")
}
weights
是
NULL
在每个节点中:
R> tr
1) Petal.Width <= 0.4; criterion = 10.641, statistic = 10.641
[1] "nodeID" "weights" "criterion" "terminal" "psplit"
[6] "ssplits" "prediction" "left" "right" NA
NULL
2)* weights = 0
1) Petal.Width > 0.4
3) Petal.Width <= 1.6; criterion = 8.629, statistic = 8.629
[1] "nodeID" "weights" "criterion" "terminal" "psplit"
[6] "ssplits" "prediction" "left" "right" NA
NULL
4)* weights = 0
3) Petal.Width > 1.6
[1] "nodeID" "weights" "criterion" "terminal" "psplit"
[6] "ssplits" "prediction" "left" "right" NA
NULL
5)* weights = 0
update_tree <- function(x) {
if(!x$terminal) {
x$left <- update_tree(x$left)
x$right <- update_tree(x$right)
} else {
x$weights <- x[[9]]
x$weights_ <- x[[9]]
}
x
}
tr_weights <- update_tree(tr)
plot(new("BinaryTree", tree=tr_weights, data=y@data, responses=y@responses))
关于r - cforest 打印空树,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19924402/
我正在尝试使用 cforest 函数(R,派对包)。 这就是我为构建森林所做的工作: library("party") set.seed(42) readingSkills.cf 5 5
我有一个非常大的数据框,包含 790,000 行和 140 个预测变量。其中一些彼此密切相关,并且在不同的范围内。与 randomForest包,我可以使用 foreach 仅使用一小部分数据样本在每
我想使用 caret 包运行一个无偏见的 cforest。这可能吗? tc ) : no method for coercing this S4 class to a vector 这是因为无法将 c
我想用 party 库中的 cforest 函数来衡量特征的重要性。 我的输出变量在 0 类中有 2000 个样本,在 1 类中有 100 个样本。 我认为避免类不平衡造成偏差的一个好方法是使用子样本
我正在尝试使用 Party 包运行随机森林模型。我想使用 varimp 函数来确定条件变量的重要性,但它似乎不接受分类变量。这是一个link到我的数据,下面是我正在使用的代码。 > #set up d
我正在尝试在 R 中找到一种方法来计算随机森林或条件随机森林的单棵树的变量重要性。 一个好的起点是 rpart:::importance 命令,它计算 rpart 树的变量重要性的度量: > libr
您好,我在 R 中并行化 cforest 时遇到问题。 我一直在尝试使用 party 包中的 cforest 函数创建分类模型。我希望它在我的计算机上的多个内核中并行运行。我已经使用 randomFo
我使用 cForest 构建了随机森林模型。 现在,我想绘制一条简单的学习曲线,该曲线在 x 轴上显示树木数量,在 y 轴上显示错误分类错误(如下图所示)。然而,经过多次谷歌搜索后,我仍然无法弄清楚如
我是一名优秀的程序员,十分优秀!