有没有办法将方面的 ylim 增加一定百分比,以便我的标签很好地适应?目前,非常小的条将在其上方有一个半切掉的标签。当我使用 hjust 时,我在大条的顶部遇到了同样的问题。
到目前为止,这是我的代码:
ggplot(test, aes(x=YEAR, y=(value), fill=variable)) +
labs(title="Test", x=NULL, y="Total", fill=NULL) +
geom_bar(stat="identity"), position="stack") +
facet_grid(variable ~., scales="free") +
theme(legend.position = "none") +
geom_text(aes(x=YEAR, y=(value), label=value), size=3)