在ggplot中,如何连接geom_points以创建选举斜率图?

时间:2017-06-09 10:19:31

标签: r ggplot2 data-visualization

为了将2017年的结果可视化并与2015年进行比较,我想创建一个英国选举结果的斜率图。现在,我创建了一个散点图,但似乎无法弄清楚如何连接点。

以下是数据框:

   parties year seats
1      CON 2015   331
2      CON 2017   318
3      LAB 2015   232
4      LAB 2017   261
5      SNP 2015    56
6      SNP 2017    35
7       LD 2015     8
8       LD 2017    12
9      DUP 2015     8
10     DUP 2017    10
11  Others 2015    15
12  Others 2017    13

df2$year <- as.factor(df2$year)

在这个ggplot代码中只创建点:

ggplot(df2, aes(year, seats, colour = parties)) +
  geom_point()

结果:

Rplot

0 个答案:

没有答案