gpt4 book ai didi

r - 如何在动物园对象的 xyplot 中仅反转一个 y 轴

转载 作者:行者123 更新时间:2023-12-04 09:07:56 24 4
gpt4 key购买 nike

我在创建动物园对象的 xyplot 时遇到了一些麻烦。

我创建了一个简化的例子:

z <- zoo(cbind(a=1:4,b=11:14,c=10:13,d=5:8,e=10:7,f=1:4), 1991:1994)

我正在使用以下代码创建多面板 xyplot:
numLbl <- 4
xx <- seq(from = min(time(z)), to = max(time(z)), length.out = numLbl)
xyplot(z[,c(1,2,4,6)],scales = list(x = list(at = time (z), rot = 90)), layout = c(1,4), aspect = "fill", xlab = "",
panel = function (x,y, ...) {
panel.abline (v = xx, col = "grey", lty = 3)
panel.xyplot(x, y, type = "b", col = 1)
})

我想做的是仅在其中一个面板上反转 y 轴。我找到了一个相关的例子:

http://r.789695.n4.nabble.com/lattice-limits-in-reversed-order-with-relation-quot-same-quot-td2399883.html

但是,我无法让预面板与我的示例一起使用。我对格子很陌生,面板功能可能有些我不明白。

此外,如果有一种简单的方法可以将其中一个面板作为直方图,将其他面板作为线条,我将非常感谢您的提示。

很感谢任何形式的帮助!

最佳答案

这是完成第一个工作的预面板示例:

numLbl <- 4
count <- 0
swap <- 3
xx <- seq(from = min(time(z)), to = max(time(z)), length.out = numLbl)
xyplot(z[,c(1,2,4,6)],scales = list(x = list(at = time (z), rot = 90)),
layout = c(1,4), aspect = "fill", xlab = "",
panel = function (x,y, ...) {
panel.abline (v = xx, col = "grey", lty = 3)
panel.xyplot(x, y, type = "b", col = 1)
},
prepanel = function (x,y, ...) {
count <<- count + 1

lims <- list(xlim=c(min(x),max(x)), ylim=c(min(y),max(y)));

if (swap == count) {
lims[[2]] = rev(lims[[2]]);
}
lims;
}
)

关于r - 如何在动物园对象的 xyplot 中仅反转一个 y 轴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8970093/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com