R语言
plot.profile
位于 stats
包(package)。 说明
"profile"
类对象的 plot
和 pairs
方法。
用法
## S3 method for class 'profile'
plot(x, ...)
## S3 method for class 'profile'
pairs(x, colours = 2:3, ...)
参数
x |
从类 |
colours |
用于平均曲线的颜色分别以 |
... |
传递给其他方法或从其他方法传递的参数。 |
细节
这是 profile.glm
创建的对象的主要 plot
方法。它也可以在 profile.nls
创建的对象上调用,但它们有一个特定的方法 plot.profile.nls
。
pairs
方法显示,对于每对参数 x 和 y,两条曲线在最大似然估计处相交,分别给出双变量轮廓似然轮廓的切线变为垂直和水平的点的轨迹。在精确二元正态轮廓似然的情况下,这两条曲线将是直线,给出 y|x 和 x|y 的条件均值,并且轮廓将是精确的椭圆形。
例子
## see ?profile.glm for an example using glm fits.
## a version of example(profile.nls) from R >= 2.8.0
fm1 <- nls(demand ~ SSasympOrig(Time, A, lrc), data = BOD)
pr1 <- profile(fm1, alphamax = 0.1)
stats:::plot.profile(pr1) ## override dispatch to plot.profile.nls
pairs(pr1) # a little odd since the parameters are highly correlated
## an example from ?nls
x <- -(1:100)/10
y <- 100 + 10 * exp(x / 2) + rnorm(x)/10
nlmod <- nls(y ~ Const + A * exp(B * x), start=list(Const=100, A=10, B=1))
pairs(profile(nlmod))
作者
Originally, D. M. Bates and W. N. Venables for S (in 1996).
Taken from MASS
where these functions were re-written by
B. D. Ripley for R (by 1998).
也可以看看
相关用法
- R plot.profile.nls 绘制 profile.nls 对象
- R plot.ppr 绘制投影寻踪回归拟合的岭函数
- R plot.stepfun 绘制阶跃函数
- R plot.isoreg isoreg 对象的绘图方法
- R plot.HoltWinters HoltWinters 对象的绘图函数
- R plot.ts 绘制时间序列对象
- R plot.density 核密度估计的绘图方法
- R plot.lm 绘制 lm 对象的诊断图
- R plot.acf 绘制自协方差和自相关函数
- R plot.spec 绘制频谱密度
- R pairwise.t.test 成对 t 检验
- R predict.smooth.spline 通过平滑样条拟合进行预测
- R predict 模型预测
- R profile.nls 分析 nls 对象的方法
- R ppoints 概率图的坐标
- R predict.HoltWinters 拟合 Holt-Winters 模型的预测函数
- R poly 计算正交多项式
- R proj 模型预测
- R predict.loess 预测黄土曲线或表面
- R power.t.test 一个和两个样本 t 检验的功效计算
- R power.prop.test 比例二样本检验的功效计算
- R preplot 绘图对象的预计算
- R prcomp 主成分分析
- R printCoefmat 打印系数矩阵
- R profile 分析模型的通用函数
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Plotting Functions for 'profile' Objects。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。