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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。