使用poly
R 中的函数,我如何评估多元多项式?
- 这篇文章总共有 4 个问题,在下面突出显示。
- 我正在寻求评估
poly()
-output 对象的输出(正交或原始多项式)。这将使我能够使用多项式生成类似于我可以用来评估结果的模型矩阵的行(即,我试图通过调用推送多元测试数据poly()
值,以便可以类似地评估它我的回归方法矩阵的一行)。 - 我的背景:我对 R、R
poly()
和 R 的回归例程比较陌生。 - 我已经尝试了几种方法,并希望得到每一种方法的帮助:
(A): 直接方法predict
此方法失败,显然是由于某些意外的输入类。我知道这些特殊的 x1 和 x2 值是共线的,不适合一般拟合(我只是想让predict
机器运转)。的使用predict
受到这篇SO 帖子的启发。 (Q1)是否可以直接调用该predict
方法来评估这个多项式?
> x1 = seq(1, 10, by=0.2)
> x2 = seq(1.1,10.1,by=0.2)
> t = poly(cbind(x1,x2),degree=2,raw=T)
> predict(t,newdata=data.frame(x1=2.03,x2=2.03))
Error in UseMethod("predict") :
no applicable method for 'predict' applied to an object of class "c('matrix', 'double', 'numeric')"
(B) 直接评估仅适用于原始多项式(非正交)
由于 (A),我尝试了直接调用 poly() 的解决方法。对于原始多项式,我可以让它工作,但我必须为每个变量重复数据。以下显示(第 1 次)单个数据点的失败,(第 2 次)重复值的成功。 (Q2)有什么办法可以避免第二个列表中数据的冗余重复以使原始poly()
评估正确吗?
> poly(cbind(x1=c(2.03),x2=c(2.13)),degree=2,raw=T)
Error in `colnames<-`(`*tmp*`, value = apply(z, 1L, function(x) paste(x, :
attempt to set 'colnames' on an object with less than two dimensions
> poly(cbind(x1=c(2.03,2.03),x2=c(2.13,2.13)),degree=3,raw=T)
1.0 2.0 3.0 0.1 1.1 2.1 0.2 1.2 0.3
[1,] 2.03 4.1209 8.365427 2.13 4.3239 8.777517 4.5369 9.209907 9.663597
[2,] 2.03 4.1209 8.365427 2.13 4.3239 8.777517 4.5369 9.209907 9.663597
attr(,"degree")
[1] 1 2 3 1 2 3 2 3 3
如果我尝试使用正交多项式的类似冗余列出数据方法,我会招致“嘿,你的数据是冗余的!” 错误(如果我只列出每个变量的值一次,也会发生这种情况)。(Q3) 是否可以通过直接调用来评估多元正交多项式poly()
?
> poly(cbind(x1=c(2.03, 2.03),x2=c(2.13, 2.13)),degree=2)
Error in poly(dots[[1L]], degree, raw = raw) :
'degree' must be less than number of unique points
(C) 无法从多元正交多项式中提取 alpha 和范数系数coefs
最后
,我知道predict.poly
. 我知道这coefs
是正交多项式拟合输出的 alpha 和 norm 值。但是,我只能从单变量多项式拟合中提取那些......当我拟合多元正交(或原始)时,来自的返回值poly
没有系数。 (Q4)是否可以从调用正交多项式拟合多元alpha
数据中提取和系数?norm
poly()
> t = poly(cbind(x1),degree=2) # univariate orthog poly --> WORKS
> attributes(t)$coefs
$alpha
[1] 5.5 5.5
$norm2
[1] 1.000 46.000 324.300 1826.458
> t = poly(cbind(x1,x2),degree=2) # multivariate orthog poly --> DOES NOT WORK
> attributes(t)$coefs
NULL
如果我能澄清,请告诉我。感谢您提供的任何帮助。