gpt4 book ai didi

r - 同一轴上的两个刻度

转载 作者:行者123 更新时间:2023-12-04 10:10:57 25 4
gpt4 key购买 nike

我不确定是否可以做我想做的事。我想绘制一个带有两个比例的 x 轴,如下图所示。非常感谢,

enter image description here

最佳答案

ggplot2版本可能如下所示:

library(ggplot2)

x = c(1,2,3,4,5, 10,20,30,40,50)
y = c(1,2,2,3,4, 2,1,3,5,5)
# You should introduce cond - condition to separate axises - by yourself
df = data.frame(x=x,y=y,cond=ifelse(x>5,"x2","x1"))

ggplot(df, aes(x,y,group=cond)) + geom_line() + geom_point(aes(shape=cond), size=4) + facet_grid(.~cond, scales="free_x")

产生这个情节: enter image description here

关于r - 同一轴上的两个刻度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13355785/

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