gpt4 book ai didi

r - 将 'model' 带出地球

转载 作者:行者123 更新时间:2023-12-05 01:09:22 24 4
gpt4 key购买 nike

对不起,糟糕的标题。不知道我该如何措辞。

我正在玩地球包,以了解使用或多或少的标准指标对神经网络信号进行回归。数据文件有 1000 行,目前有 187 列(186 个指标结果),我的目标变量在最后一列。我写的代码非常简单,暂时忽略了任何样本内与样本外的问题,但至少它似乎起作用了:

library(earth)
MyData = read.csv("C:\\Users\\TSIT\\\\GS-Pass12.csv",header=TRUE)
x=data.frame(MyData[,1:ncol(MyData)-1])
y=MyData[,ncol(MyData)]

a = earth(x,y,nprune=5)
summary(a, digits = 2, style = "pmax")

并且 summary 的输出看起来很合理:
summary(a, digits = 2, style = "pmax")
Call: earth(x=x, y=y, nprune=5)

y = 1.2
- 31 * pmax(0, Percent.Difference.from.Moving.Average..C..10. - 0.096)
+ 10 * pmax(0, 0.096 - Percent.Difference.from.Moving.Average..C..10.)
+ 25 * pmax(0, Percent.Difference.from.Moving.Average..C..15. - 0.14)
- 16 * pmax(0, 0.14 - Percent.Difference.from.Moving.Average..C..15.)

Selected 5 of 116 terms, and 2 of 185 predictors Importance:
Percent.Difference.from.Moving.Average..C..15.,
Value.Oscillator..C..8..26..1.-unused, ... Number of terms at each
degree of interaction: 1 4 (additive model) GCV 0.083 RSS 239
GRSq 0.66 RSq 0.66

我现在正在努力解决的问题是如何将结果模型 (y) 从 a 中取出并放入某种 R 变量中,以便我可以使用它。有人可以在这里指出我正确的方向吗?

提前致谢。

最佳答案

format()可以使用函数:

R> library(earth)
R> example(earth)
[... stuff omitted ...]
R> cat(format(a), "\n")
27.2459
+ 6.17669 * h(Girth-14)
- 3.26623 * h(14-Girth)
+ 0.491207 * h(Height-72)
R>

还有其他格式:
R> cat(format(a, style="pmax"), "\n")
27.2459
+ 6.17669 * pmax(0, Girth - 14)
- 3.26623 * pmax(0, 14 - Girth)
+ 0.491207 * pmax(0, Height - 72)

R> cat(format(a, style="bf"), "\n")
27.2459
+ 6.17669 * bf1
- 3.26623 * bf2
+ 0.491207 * bf3

bf1 h(Girth-14)
bf2 h(14-Girth)
bf3 h(Height-72)

R>

关于r - 将 'model' 带出地球,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15884991/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com