问题描述
df <- data.frame(years = c(1,500,1000,seq(1100,2000,100)),numbers = sample(13))
library(ggplot2)
ggplot(df,aes(x = years,y = numbers)) +
geom_line()
如何在x轴上看到每个有序中断之间的相同距离?例如,图中的1年和500年应该与1500年和1600年具有相同的距离。
df <- data.frame(years = c(1,500,1000,seq(1100,2000,100)),numbers = sample(13))
library(ggplot2)
ggplot(df,aes(x = years,y = numbers)) +
geom_line()
如何在x轴上看到每个有序中断之间的相同距离?例如,图中的1年和500年应该与1500年和1600年具有相同的距离。