条形图中的值显示不正确。如何更正。
class Foo:
def to_dict(self):
return {'this': 'is', 'more': 'clear'}
print( Foo().to_dict() ) # -> {'this': 'is', 'more': 'clear'}
答案 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的结合。