R語言
banking
位於 lattice
包(package)。 說明
計算坡度
用法
banking(dx, dy)
參數
dx , dy |
連續 x、y 差異的向量。 |
細節
banking
是高級網格函數中aspect = "xy"
時使用的銀行函數。除了 xyplot
之外,它通常沒有多大意義。它考慮絕對斜率(基於 dx
和 dy
)並返回一個值,該值在通過麵板比例限製進行調整時將使上述絕對斜率的中值對應於 45 度線。
該函數的靈感來自貝爾實驗室網站上的 Trellis Graphics 文檔中對銀行業務的討論(請參閱 Lattice
),但很可能與 Cleveland 等人說明的算法相同(請參閱下文)。 (作者)不清楚這是否是S-PLUS中使用的算法。作為類似函數實現的替代銀行規則,可以通過適當修改 lattice.options("banking")
來用作 drop-in 替換。
例子
## with and without banking
plot <- xyplot(sunspot.year ~ 1700:1988, xlab = "", type = "l",
scales = list(x = list(alternating = 2)),
main = "Yearly Sunspots")
print(plot, position = c(0, .3, 1, .9), more = TRUE)
print(update(plot, aspect = "xy", main = "", xlab = "Year"),
position = c(0, 0, 1, .3))
## cut-and-stack plot (see also xyplot.ts)
xyplot(sunspot.year ~ time(sunspot.year) | equal.count(time(sunspot.year)),
xlab = "", type = "l", aspect = "xy", strip = FALSE,
scales = list(x = list(alternating = 2, relation = "sliced")),
as.table = TRUE, main = "Yearly Sunspots")
作者
Deepayan Sarkar Deepayan.Sarkar@R-project.org
參考
Cleveland, William S. and McGill, Marylyn E. and McGill, Robert (1988) “The Shape Parameter of a Two-variable Graph”, Journal of the American Statistical Association, 83, 289-300.
也可以看看
相關用法
- R barley 明尼蘇達州大麥試驗的產量數據
- R barchart.table 條形圖和點圖的表格方法
- R panel.xyplot xyplot 的默認麵板函數
- R xyplot.ts 時間序列繪圖方法
- R panel.bwplot bwplot 的默認麵板函數
- R panel.loess 添加黃土平滑的麵板函數
- R lset 修改網格設置的接口 - 已失效
- R panel.axis 繪圖軸刻度和標簽的麵板函數
- R Rows 從列表中提取行
- R panel.number 在繪圖期間訪問輔助信息
- R trellis.par.get 網格顯示的圖形參數
- R update.trellis 檢索和更新網格對象
- R panel.functions 有用的麵板函數組件
- R prepanel.functions Lattice 有用的 Prepanel 函數
- R xyplot 常見的二變量網格圖
- R simpleTheme 生成簡單主題的函數
- R panel.parallel 並行的默認麵板函數
- R print.trellis 繪製和總結網格對象
- R panel.cloud 雲默認麵板函數
- R packet.panel.default 將數據包與麵板關聯
- R levelplot 水平圖和等高線圖
- R trellis.device 初始化網格顯示
- R cloud 3d 散點圖和線框曲麵圖
- R tmd Tukey 均差圖
- R panel.pairs splom 的默認超級麵板函數
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Banking。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。