根据第三个变量更改线条样式 - R.

时间:2013-03-17 18:23:31

标签: r plot ggplot2

关注我的数据帧,使用dput():

structure(list(year = 1984:2007, ger.90.10.ratio = c(3.1, 3.09, 
2.98, 2.93, 2.98, 2.96, 2.95, 3.12, 3.16, 3.13, 3.24, 3.3, 3.28, 
3.24, 3.24, 3.17, 3.23, 3.31, 3.63, 3.69, 3.75, 3.91, 4.1, 3.99
), kanzler = c(1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 
1L, 1L, 1L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 1L, 1L), wahljahr = c(0L, 
0L, 1L, 0L, 0L, 0L, 1L, 0L, 0L, 0L, 1L, 0L, 0L, 0L, 1L, 0L, 0L, 
0L, 1L, 0L, 0L, 1L, 0L, 0L), us.90.10.ratio = c(9.55, 9.69, 10.09, 
10.23, 10.21, 9.99, 10.12, 10.22, 10.34, 10.64, 10.57, 10.11, 
10.33, 10.6, 10.44, 10.42, 10.58, 10.63, 10.75, 11.22, 11.08, 
11.17, 11.08, 11.18), us.80.20.ratio = c(4.36, 4.38, 4.49, 4.48, 
4.45, 4.44, 4.42, 4.51, 4.6, 4.65, 4.68, 4.52, 4.61, 4.64, 4.65, 
4.62, 4.56, 4.65, 4.69, 4.83, 4.76, 4.78, 4.84, 4.93), ger.ratio.diff = c(NA, 
-0.0100000000000002, -0.11, -0.0499999999999998, 0.0499999999999998, 
-0.02, -0.00999999999999979, 0.17, 0.04, -0.0300000000000002, 
0.11, 0.0599999999999996, -0.02, -0.0399999999999996, 0, -0.0700000000000003, 
0.0600000000000001, 0.0800000000000001, 0.32, 0.0600000000000001, 
0.0600000000000001, 0.16, 0.19, -0.109999999999999), ger.ratio.change = c(0, 
-0.0100000000000002, -0.11, -0.0499999999999998, 0.0499999999999998, 
-0.02, -0.00999999999999979, 0.17, 0.04, -0.0300000000000002, 
0.11, 0.0599999999999996, -0.02, -0.0399999999999996, 0, -0.0700000000000003, 
0.0600000000000001, 0.0800000000000001, 0.32, 0.0600000000000001, 
0.0600000000000001, 0.16, 0.19, -0.109999999999999)), row.names = c(NA, 
-24L), .Names = c("year", "ger.90.10.ratio", "kanzler", "wahljahr", 
"us.90.10.ratio", "us.80.20.ratio", "ger.ratio.diff", "ger.ratio.change"
), class = "data.frame")

我想要做的是创建一个线条图,根据第三个变量的值改变线条样式。 它应该如下图Plot with different line style depending on presidents party affiliation

用语言说: 在上面的数据框中,我想绘制ger.90.10.ratio对年份,并根据kanzler-column中的值更改行的样式。

我到处搜索过(也许我的google-fu很糟糕?)但是我真的很想知道这是否可能在R中。

感谢您的帮助,非常感谢!

2 个答案:

答案 0 :(得分:4)

R的基本图形不允许在中线更改线条属性(类型/虚线图案,颜色等),因此您必须拆分数据并在片段上使用lines(),或{{ 1}}。

这不是一个完整的解决方案,但它是一个开始:

设置图形参数(不必要,但我喜欢):

segments()

生成用于拆分的变量(我们希望每个段区分):

par(las=1,bty="l")

拆分数据:

dat <- transform(dat,k2=c(0,cumsum(diff(kanzler)!=0)))

设置一个空图:

s <- split(dat,dat$k2)

为每件作品添加行:

plot(ger.90.10.ratio~year,data=dat,type="n")

enter image description here

您可以在invisible(lapply(s, function(x) with(x,lines(year,ger.90.10.ratio,col=kanzler)))) 中稍微更紧凑(照常)这样做,但我们设置的ggplot2变量仍然有用:

k2

enter image description here

答案 1 :(得分:1)

这是一个使用lattice包来显示它与基本图形图类似的解决方案。我基本上使用@Ben分裂数据的想法。我使用lattice面板提供了更多compact解决方案。

enter image description here

library(lattice)
dat <- transform(dat,k2=c(0,cumsum(diff(kanzler)!=0)))
s <- split(dat,dat$k2)
xyplot(ger.90.10.ratio~year,data=dat,type=c('p'),groups=kanzler,
       main = 'THE PARTISAL POLITICAL ECONOMY',
       auto.key=list(columns=2,cex=2,text=c('Democrats','Republicans')),
       panel=function(x,y,...) {
         panel.xyplot(x,y,...)
         lapply(s,function(x) 
          with(x,panel.lines(year,ger.90.10.ratio,col=kanzler)))
         panel.grid()
       })