提问人:Anas116 提问时间:9/28/2023 更新时间:9/28/2023 访问量:19
如何在ggplot上使x轴和y轴的开头相同?
How to make the beginning of x axis and y axis the same on ggplot?
问:
假设我有这个 df,我使用 ggplot 创建了一个绘图
df = data.frame(x = 1:10,
y = -10,1)
df
library(ggplot2)
ggplot(df)+aes(x=x,y=y)+
theme_classic()+
scale_x_continuous(breaks = 0:10,limits=c(0,10))+
scale_y_continuous(breaks = -10:0,limits=c(-10,0) )
我希望标签 0(x 轴)和 -10(y 轴)位于 x 轴和 y 轴的交点
答:
评论