堆积的条形图值重叠。如何正确显示它们

时间:2017-10-08 07:01:37

标签: r ggplot2

enter image description here

条形图中的值显示不正确。如何更正。

class Foo:
    def to_dict(self):
        return {'this': 'is', 'more': 'clear'}

print( Foo().to_dict() )  # -> {'this': 'is', 'more': 'clear'}

1 个答案:

答案 0 :(得分:0)

您可以使用vjust和hjust控制它。

请尝试以下操作:

ggplot(data=df, aes(x=Demand_Supply,fill=time_slot),position = 'stack')+ geom_bar() + facet_wrap(~Pickup.point)+
geom_text(stat='count',aes(label=abs(..count..)), , vjust = -0.5)

你可以尝试不同的排列和与hjust和vjust的结合。