0
在條形圖值顯示他們正在出現incorrectly.How糾正。
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..)))
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 ..)),size = 3,hjust = 0.5,position = position_stack(vjust = 0.5)) –
它是正確的。 –
@chandrapalpanwarplease接受它作爲答案或upvote,如果它值得。 –