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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。