Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在linetype scale中,如何跳过图表的某些值?值 2 和 3 在我看来太相似了,所以我想跳过其中一个,而是使用 0、1、2 和 4。
您可以使用scale_linetype_manual()和设置值。
scale_linetype_manual()
df=data.frame(x=rnorm(100),y=rnorm(100),group=rep(c("a","b","c","d"),each=25)) ggplot(df,aes(x,y,group=group))+ geom_line(aes(linetype=group))+ scale_linetype_manual(values=c(6,1,2,4))