R语言
is.empty.model
位于 stats
包(package)。 说明
R的公式表示法允许模型没有截距和预测变量。这些需要在内部进行特殊处理。is.empty.model()
检查对象是否说明空模型。
用法
is.empty.model(x)
参数
x |
|
值
TRUE
如果模型为空
例子
y <- rnorm(20)
is.empty.model(y ~ 0)
is.empty.model(y ~ -1)
is.empty.model(lm(y ~ 0))
也可以看看
相关用法
- R isoreg 等张/单调回归
- R influence.measures 回归删除诊断
- R interaction.plot 双向交互作用图
- R identify.hclust 识别树状图中的簇
- R integrate 一维函数的积分
- R stlmethods STL 对象的方法
- R medpolish 矩阵的中值波兰(稳健双向分解)
- R naprint 调整缺失值
- R summary.nls 总结非线性最小二乘模型拟合
- R summary.manova 多元方差分析的汇总方法
- R formula 模型公式
- R nls.control 控制 nls 中的迭代
- R aggregate 计算数据子集的汇总统计
- R deriv 简单表达式的符号和算法导数
- R kruskal.test Kruskal-Wallis 秩和检验
- R quade.test 四方测试
- R decompose 移动平均线的经典季节性分解
- R plot.stepfun 绘制阶跃函数
- R alias 查找模型中的别名(依赖项)
- R qqnorm 分位数-分位数图
- R eff.aovlist 多层方差分析的计算效率
- R pairwise.t.test 成对 t 检验
- R loglin 拟合对数线性模型
- R predict.smooth.spline 通过平滑样条拟合进行预测
- R bartlett.test 方差齐性的 Bartlett 检验
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Test if a Model's Formula is Empty。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。