如何使用ggplot2在图表中显示年份的差异?

时间:2019-03-12 04:27:09

标签: r ggplot2

在classdata包中,fbiwide数据包含我使用此代码的年份列

devtools::install_github("heike/classdata")
library(classdata)
library(ggplot2)

str(fbiwide)
head(fbiwide)


ggplot(aes(x = log(Burglary), y = log(Motor.vehicle.theft), colour = Year),
   data = filter(fbiwide, State %in% c("California", "Colorado", 
                                       "Iowa","Illinois",
                                       "District of Columbia","New York"))) +
facet_wrap(~State, scale = "free_y") + 
geom_point()

现在我正在尝试执行相同的绘图,但是这次我显示了绘图中连续年份(当前年份减去上一年)之间的差异。

我该怎么办

0 个答案:

没有答案