ggplot线图不连接点

时间:2017-07-26 14:30:05

标签: ggplot2 linechart

我试图创建一个简单的线图,绘制2006 - 2015年加州每个县每年的犯罪数量。问题是点都是连接的,而不是单独的线。数据框看起来像这样:

enter c 'data.frame':   7319 obs. of  69 variables:
 $ Year               : int  2006 2006 2006 2006 2006 2006 2006 2006 2006 2006 ...
 $ County             : chr  "San Bernardino County" "Los Angeles County" "Alameda County" "Alameda County" ...
 $ NCICCode           : chr  "Adelanto" "Agoura Hills" "Alameda" "Alameda BART" ...
 $ Violent_sum        : int  136 41 221 193 545 0 7 54 297 38 ...

尝试使用以下内容:

 ggplot(calicrime, aes(x=Year, y=Violent_sum, color=County)) + geom_line()

渲染图:

rendered plot

非常感谢任何帮助。

0 个答案:

没有答案