R語言
scatter.smooth
位於 stats
包(package)。 說明
繪製由 loess
計算的平滑曲線並將其添加到散點圖。
用法
scatter.smooth(x, y = NULL, span = 2/3, degree = 1,
family = c("symmetric", "gaussian"),
xlab = NULL, ylab = NULL,
ylim = range(y, pred$y, na.rm = TRUE),
evaluation = 50, ..., lpars = list())
loess.smooth(x, y, span = 2/3, degree = 1,
family = c("symmetric", "gaussian"), evaluation = 50, ...)
參數
x, y |
|
span |
|
degree |
使用的局部多項式的次數。 |
family |
如果 |
xlab |
x 軸的標簽。 |
ylab |
y 軸的標簽。 |
ylim |
繪圖的 y 範圍。 |
evaluation |
評估平滑曲線的點數。 |
... |
對於 |
lpars |
細節
loess.smooth
是一個輔助函數,用於評估覆蓋 x
範圍的 evaluation
等距點處的 loess
平滑度。
值
對於 scatter.smooth
,沒有。
對於 loess.smooth
,包含兩個組件的列表:x
(評估點網格)和 y
(網格點處的平滑值)。
例子
require(graphics)
with(cars, scatter.smooth(speed, dist))
## or with dotted thick smoothed line results :
with(cars, scatter.smooth(speed, dist, lpars =
list(col = "red", lwd = 3, lty = 3)))
也可以看看
loess
; smoothScatter
用於具有平滑密度顏色表示的散點圖。
相關用法
- R screeplot 屏幕圖
- R stlmethods STL 對象的方法
- R summary.nls 總結非線性最小二乘模型擬合
- R summary.manova 多元方差分析的匯總方法
- R summary.lm 總結線性模型擬合
- R smooth Tukey 的(運行中值)平滑
- R sortedXyData 創建一個sortedXyData對象
- R sigma 提取殘餘標準差“Sigma”
- R setNames 設置對象中的名稱
- R stat.anova GLM 方差分析統計
- R splinefun 插值樣條曲線
- R spec.taper 通過餘弦鍾錐化時間序列
- R summary.princomp 主成分分析的匯總方法
- R symnum 符號數字編碼
- R se.contrast 模型術語對比的標準誤差
- R summary.aov 方差模型分析總結
- R stepfun Step Functions - 創建和類
- R shapiro.test 夏皮羅-威爾克正態性檢驗
- R selfStart 構建自啟動非線性模型
- R spec.pgram 通過平滑周期圖估計時間序列的譜密度
- R spec.ar 通過 AR Fit 估計時間序列的頻譜密度
- R smooth.spline 擬合平滑樣條曲線
- R supsmu 弗裏德曼的超級平滑
- R stl Loess 時間序列的季節分解
- R summary.glm 廣義線性模型擬合總結
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Scatter Plot with Smooth Curve Fitted by Loess。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。