我一直在 WEB 上搜索以删除下面 ggplot barplot 的图例中的横杆。但是,没有成功。你能帮我解决这个问题吗?请参阅下面的数据“temp”和我正在使用的代码。您能否也让我知道如何在条形图上使用模式?谢谢你。
temp:
type var value
A k1 20
A l1 30
B k1 10
B l1 15
ggplot(temp,aes(type, value)) + geom_bar(stat="identity", aes(group=var, fill=type, facets=var),colour="blue1", position="identity") + facet_grid(.~var) + theme_bw()