当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R plot.profile “轮廓”对象的绘图函数


R语言 plot.profile 位于 stats 包(package)。

说明

"profile" 类对象的 plotpairs 方法。

用法

## S3 method for class 'profile'
plot(x, ...)
## S3 method for class 'profile'
pairs(x, colours = 2:3, ...)

参数

x

从类 "profile" 继承的对象。

colours

用于平均曲线的颜色分别以xy 为条件。

...

传递给其他方法或从其他方法传递的参数。

细节

这是 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).

也可以看看

profile.glmprofile.nls

相关用法


注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Plotting Functions for 'profile' Objects。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。