如何调整条形上的标签,使它们看起来完整?
预先感谢
ggplot(data=derivates, aes(x=reorder(EMPRESA, Derivates),
y=Derivates,
fill=EMPRESA,
width=0.5,
label=Derivates)) +
coord_flip() +
geom_bar(stat="identity", color="white", fill="blue") +
geom_text(aes(label =format(Derivates,
big.mark = "'", scientific = FALSE, digits = 0.5)),
hjust=-0.10,
size =3.0) +
xlab(NULL) + ylab (NULL)+
ggtitle("Derivates") +
theme(
axis.text.x=element_blank(),
axis.ticks.x=element_blank(),
plot.title = element_text(color="black", size=14, face="italic"))
答案 0 :(得分:0)
一个来自西班牙的网络人帮助了我。 我在代码的最后一行添加了+
coord_flip(ylim = c(0,max(derivates $ Derivates)* 1.1))
效果很好