我正在使用变通方法从ggplot图例中移除对角线:https://groups.google.com/forum/?fromgroups=#!topic/ggplot2/vJnF9_HBqx4
使用以下数据,如何更改组的颜色?
# Create data #
a<-as.data.frame(c(1,1,1,2,2))
b<-as.data.frame(c("A","A","B","B","A"))
c<-as.data.frame(c(20,20,60,50,50))
a<-cbind(a,b,c)
colnames(a)<-c("X","Gp","Y")
# Plot #
ggplot(a, aes(x=X, y=Y,fill=Gp)) +
geom_bar(stat = "identity", aes(colour = "black")) +
scale_color_identity() +
theme(legend.key = element_rect(colour = "black", size = 1))
我尝试更改以下元素:
scale_color_identity(values=c("red","yellow"))
geom_bar(stat = "identity", aes(colour = c("red","yellow")))
geom_bar(stat = "identity", aes(colour = "black"), fill=c("red","yellow"))
但每个都会产生错误。
答案 0 :(得分:2)
试试这个。指南调用让您选择哪个比例没有图例。并且,您可以在没有aes()的情况下设置轮廓颜色。
关于传奇中对角线的评论后编辑
根据此问题remove diagonal line in legend,您可以添加指南(填写等号码以取消对角线。
ggplot(a, aes(x=X, y=Y,fill=Gp)) +
geom_bar(stat = "identity", colour = "black") +
scale_fill_manual(values = c("red","yellow")) +
guides(fill = guide_legend(override.aes = list(colour = NULL))) +
guides(colour = FALSE)
答案 1 :(得分:1)
您也可以拨打geom_bar
两次。一次为传奇,没有颜色参数,一次使用颜色参数但是压制传奇
ggplot(a, aes(x=X, y=Y,fill=Gp)) +
geom_bar(stat = "identity", color = 'black', show_guide = F) +
geom_bar(stat = 'identity') +
scale_fill_manual(values = c('red', 'yellow') )