當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R panel.smooth 簡單麵板圖


R語言 panel.smooth 位於 graphics 包(package)。

說明

一個簡單有用的 panel 函數的示例,可用作 coplotpairs 等參數。

用法

panel.smooth(x, y, col = par("col"), bg = NA, pch = par("pch"),
             cex = 1, col.smooth = 2, span = 2/3, iter = 3,
             ...)

參數

x, y

相同長度的數值向量

col, bg, pch, cex

points 的顏色、點類型和大小的數字或字符代碼;另請參見par

col.smooth

lines 用於繪製平滑的顏色。

span

lowess 的平滑參數 f ,請參閱此處。

iter

lowess 的魯棒性迭代次數。

...

lines 的進一步參數。

例子

pairs(swiss, panel = panel.smooth, pch = ".")  # emphasize the smooths
pairs(swiss, panel = panel.smooth, lwd = 2, cex = 1.5, col = 4)  # hmm...

也可以看看

coplotpairs,其中通常使用panel.smoothlowess 進行平滑處理。

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Simple Panel Plot。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。