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


R predict.bs 評估樣條基礎


R語言 predict.bs 位於 splines 包(package)。

說明

評估給定值的預定義樣條基礎。

用法

## S3 method for class 'bs'
predict(object, newx, ...)

## S3 method for class 'ns'
predict(object, newx, ...)

參數

object

調用 bsns 的結果,其屬性說明 knotsdegree 等。

newx

需要評估的 x 值。

...

可選的附加參數。目前沒有使用其他參數。

object 類似的對象,隻不過以 x 的新值進行計算。

這些是從類 "bs""ns" 繼承的對象的通用函數 predict 的方法。有關此函數的一般行為,請參閱predict

例子

require(stats)
basis <- ns(women$height, df = 5)
newX <- seq(58, 72, length.out = 51)
# evaluate the basis at the new data
predict(basis, newX)

也可以看看

bsnspoly

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Evaluate a Spline Basis。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。