gpt4 book ai didi

r - 点阵,仅当连接具有正斜率时才连接点

转载 作者:行者123 更新时间:2023-12-04 11:51:04 26 4
gpt4 key购买 nike

仅当连接具有正斜率时,是否有一种舒适的方法来连接点? (否则该函数的行为应与 xyplot(...) 完全相同)

library(lattice)

dat <- data.frame(x=1:10,y=sample(1:10))

xyplot(y ~ x, data=dat,
panel = function(x, y,...) {
panel.xyplot(x, y, type="o",...)
}
)

所以结果应该是这样的情节,但没有交叉线:

enter image description here

谢谢
克里斯托夫

最佳答案

dat <- dat[order(dat[, "x"]),]
dat$group <- cumsum(c(1, diff(dat$y) < 0))


xyplot(y ~ x, data = dat, groups = group,
panel = function(x, y,...) {
panel.xyplot(x, y, type = "o", col = trellis.par.get("plot.line")$col, ...)
}
)

resulting plot

关于r - 点阵,仅当连接具有正斜率时才连接点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27984087/

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