增加线图中线的最大宽度

时间:2016-03-17 15:13:17

标签: r ggplot2 data-visualization line-plot

我在ggplot2库中使用qplot来创建折线图。我试图改变线的颜色和宽度。但问题是,无论我给参数赋值的是什么,线的宽度似乎都受到约束。在qplot功能中,我也尝试使用" size"代替" lwd",但这没有什么区别。

例如,这些值导致第一个图:

line.x <- c(1,2,3,4,5)
line.y <- c(1,2,3,4,5) 
line.width <- c(1,2,3,4,5) 
line.color <- c(1,2,3,4,5)
qplot(line.x, line.y, geom = 'line', lwd = line.width, colour = line.color) + 
  scale_color_gradientn(colours=rainbow(50)) + 
  theme(legend.position="none")

enter image description here

如果我将line.width中的第4个值更改为40,则只会使其他部分相对较薄:

line.width <- c(1,2,3,40,5)

enter image description here

再次增加到400具有类似的效果,其中第4段只能扩展到最大宽度:

line.width <- c(1,2,3,400,5)

enter image description here

作为一个注释,我的实际数据集将有数百个值,看起来更像这样: enter image description here

有没有办法增加线的最大厚度?

2 个答案:

答案 0 :(得分:5)

您可以使用scale_size()

qplot(line.x, line.y, geom = 'line', lwd = line.width, colour = line.color  ) + 
  scale_size(range = c(1, 20)) +
  scale_color_gradientn(colours=rainbow(50)) + 
  theme(legend.position="none")

enter image description here

答案 1 :(得分:0)

我如何在kml中做同样的事情,因为我在kml中的样式标签中面临着相同的宽度增加问题,如下所示

<Style id="polystyle2">
 <LineStyle>
<width>500</width>
<color>ff00ffff</color>
</LineStyle>
<IconStyle>
<Icon></Icon>
 </IconStyle>
<LabelStyle>
<color>ff0000ff</color>
</LabelStyle>
</Style>
<Style id="polystyle3">
 <LineStyle>
<width>400</width>
<color>ff00FC7C</color>
</LineStyle>
<IconStyle>
<Icon></Icon>
 </IconStyle>
<LabelStyle>
<color>ff0000ff</color>
</LabelStyle>
</Style>