当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R predict.trls 趋势曲面拟合的预测方法


R语言 predict.trls 位于 spatial 包(package)。

说明

基于趋势面模型对象的预测值

用法

## S3 method for class 'trls'
predict(object, x, y, ...)

参数

object

surf.ls 返回的拟合趋势面模型对象

x

预测位置东距向量(x 坐标)

y

预测位置北距向量(y 坐标)

...

传入或传出其他方法的进一步参数。

predict.trls 生成与预测位置相对应的预测向量。要使用 imagecontour 显示输出,请使用 trmat 或将返回的向量转换为矩阵形式。

例子

data(topo, package="MASS")
topo2 <- surf.ls(2, topo)
topo4 <- surf.ls(4, topo)
x <- c(1.78, 2.21)
y <- c(6.15, 6.15)
z2 <- predict(topo2, x, y)
z4 <- predict(topo4, x, y)
cat("2nd order predictions:", z2, "\n4th order predictions:", z4, "\n")

参考

Venables, W. N. and Ripley, B. D. (2002) Modern Applied Statistics with S. Fourth edition. Springer.

也可以看看

surf.ls , trmat

相关用法


注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Predict method for trend surface fits。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。