在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()
现在我正在尝试执行相同的绘图,但是这次我显示了绘图中连续年份(当前年份减去上一年)之间的差异。
我该怎么办