R语言
smooth.info
位于 mgcv
包(package)。 说明
获取一个平滑规范对象,并在调用平滑构造函数之前向其添加额外的基础特定信息。默认方法返回未修改的提供对象。
用法
smooth.info(object)
参数
object |
是一个平滑的规范对象 |
细节
有时,在构造平滑器之前,有必要了解有关平滑器的一些信息,超出初始平滑规范对象中的内容。例如,一些平滑项可以设置为张量积平滑,并且在使用离散协变量方法时,bam
可以利用这一点。然而,bam
需要在构造之前知道平滑器是否属于此类别,以便边际离散化其协变量而不是联合离散化。与其bam
具有此类平滑类的硬编码列表,不如平滑规范对象自己报告这一点。 smooth.info
方法函数是实现此目的的手段。解释 gam 公式时,smooth.info
函数在生成后立即应用于每个平滑规范对象(在 interpret.gam0
中)。
值
一个平滑的规范对象,可以以某种方式进行修改。
例子
# See smooth.construct examples
spec <- s(a,bs="re")
class(spec)
spec$tensor.possible
spec <- smooth.info(spec)
spec$tensor.possible
作者
Simon N. Wood simon.wood@r-project.org
参考
Wood S.N. (2017) Generalized Additive Models: An Introduction with R (2nd edition). Chapman and Hall/CRC Press.
也可以看看
相关用法
- R smooth.construct.cr.smooth.spec GAM 中的惩罚三次回归样条
- R smooth.construct.bs.smooth.spec GAM 中的惩罚 B 样条
- R smooth.construct GAM 中平滑项的构造函数
- R smooth.construct.sz.smooth.spec GAM 中的约束因子平滑交互
- R smooth.construct.re.smooth.spec GAM 中的简单随机效应
- R smooth.construct.mrf.smooth.spec 马尔可夫随机场平滑
- R smooth.construct.gp.smooth.spec 低阶高斯过程平滑
- R smooth.construct.tp.smooth.spec GAM 中的惩罚薄板回归样条
- R smooth.construct.ad.smooth.spec GAM 中的自适应平滑
- R smooth.construct.so.smooth.spec 皂膜平滑剂
- R smooth.construct.ds.smooth.spec 低阶 Duchon 1977 样条
- R smooth.construct.fs.smooth.spec GAM 中平滑交互的因子
- R smooth.construct.ps.smooth.spec GAM 中的 P 样条
- R smooth.construct.sos.smooth.spec 球体上的样条线
- R smooth.construct.tensor.smooth.spec 张量积平滑构造函数
- R smooth.construct.t2.smooth.spec 张量积平滑构造函数
- R smooth.terms GAM 中的平滑术语
- R smooth2random 将平滑转换为适合估计随机效应的形式
- R smoothCon GAM 平滑项的预测/构造包装函数
- R scat 用于重尾数据的 GAM 缩放 t 系列
- R slanczos 计算对称矩阵的截断特征分解
- R single.index 具有 mgcv 的单指数模型
- R sp.vcov 从 (RE)ML GAM 拟合中提取平滑参数估计器协方差矩阵
- R shash Sinh-arcsinh 位置比例和形状模型族
- R s 在 GAM 公式中定义平滑
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Generic function to provide extra information about smooth specification。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。