相关疑难解决方法(0)

调整连续变量的图例宽度

我在下面有一个脚本来说明我的问题:

temp.df <- data.frame(x=1:100,y=1:100,z=1:100,stringsAsFactors=FALSE)
chart <- ggplot(data=temp.df,aes(x=x,y=y))
chart <- chart + geom_line(aes(colour=z))
chart <- chart + scale_colour_continuous(low="blue",high="red")
chart <- chart + theme(legend.position="bottom")
# so far so good, but I think the legend positioned at bottom with such a small size is a waste of space, so I want to "widen" it using the line below...
chart <- chart + guides(colour=guide_legend(keywidth=5,label.position="bottom"))
# oops, it changed to legend for categorical variable
Run Code Online (Sandbox Code Playgroud)

如何加宽位于底部的"连续变量"图例?

r legend ggplot2

15
推荐指数
2
解决办法
6535
查看次数

标签 统计

ggplot2 ×1

legend ×1

r ×1