我在同一个图表中有两个图。我需要调整第一个图,以便y轴与案例数(低于第二个图)的函数相关。至于现在,第一个图很难读,因为它比第二个图小得多。我希望它成比例。
all.scores = rbind(UK_Together.scores, YesScotland.scores)
ggplot(data=all.scores) + # ggplot works on data.frames, always
geom_bar(mapping=aes(x=score, fill=Parti), binwidth=1) +
facet_grid(Parti~.) + # make a separate plot for each hashtag
theme_bw() + scale_fill_brewer() # plain display, nicer colors
任何人都可以提供帮助吗?