如何使用R随机森林来减少没有离散类的属性?

发布于 2024-09-08 17:09:43 字数 101 浏览 5 评论 0原文

我想使用随机森林进行属性缩减。我的数据中存在的一个问题是我没有离散类 - 只有连续类,这表明示例与“正常”有何不同。此类属性是一种从零到无穷大的距离。 有没有办法对此类数据使用随机森林?

I want to use Random forests for attribute reduction. One problem I have in my data is that I don't have discrete class - only continuous, which indicates how example differs from 'normal'. This class attribute is a kind of distance from zero to infinity.
Is there any way to use Random forest for such data?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

妖妓 2024-09-15 17:09:43

这应该没问题——RF 将切换到回归模式。使用 randomForest 包中的 randomForest 函数。
要使用 proximity=TRUE 参数获取对象相似度,例如:

randomForest(Sepal.Length~.,data=iris,proximity=TRUE)$proximity

获取节点纯度(类似基尼指数)属性重要性:

randomForest(Sepal.Length~.,data=iris)$importance[,"IncNodePurity"]

获取平均 MSE 增加(类似精度下降)属性重要性:

randomForest(Sepal.Length~.,data=iris,importance=TRUE)$importance[,"%IncMSE"]

That should be no problem -- RF will just switch to regression mode. Use randomForest function from the randomForest package.
To get object similarity with proximity=TRUE argument, like:

randomForest(Sepal.Length~.,data=iris,proximity=TRUE)$proximity

To get node-purity (Gini-index like) attribute importance:

randomForest(Sepal.Length~.,data=iris)$importance[,"IncNodePurity"]

To get mean MSE increase (accuracy-decrease like) attribute importance:

randomForest(Sepal.Length~.,data=iris,importance=TRUE)$importance[,"%IncMSE"]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文