當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。