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


R banking 銀行業


R語言 banking 位於 lattice 包(package)。

說明

計算坡度

用法

banking(dx, dy)

參數

dx , dy

連續 x、y 差異的向量。

細節

banking 是高級網格函數中aspect = "xy" 時使用的銀行函數。除了 xyplot 之外,它通常沒有多大意義。它考慮絕對斜率(基於 dxdy )並返回一個值,該值在通過麵板比例限製進行調整時將使上述絕對斜率的中值對應於 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.

也可以看看

Lattice , xyplot

相關用法


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