8

我正在尝试使用以下命令创建 geom_bar:

<<boring-plots, fig.width=5, fig.height=5, out.width='.45\\linewidth',fig.show='hold', echo=FALSE, warning=FALSE>>=
ma_at_vs_t_duh + geom_bar(stat="bin", fill="white", colour="darkgreen", width=.4)     + ggtitle("Anzahl MA nach Vertragsart, \nMandant 10 und 50") + 
theme(plot.title = element_text(lineheight=.6, face="bold")) + 
xlab("Vertragsart") + 
ylab("Anzahl MA") + 
theme(axis.title.x = element_text(vjust=0.5, size=14), axis.text.x=element_text(size=10)) +
stat_bin(aes(label=..count..), geom="text", size=4, vjust=-0.5) 
@

编译 Rnw 文件后,我得到了 pdf 输出文件:

ymax not defined: adjusting position using y instead

我会很感激任何帮助。谢谢!

4

1 回答 1

23

如果有人对此仍然感兴趣,您可以ymax = max(value)在 ggplot 的 aes 中添加 , ,这将使“ymax 未定义”警告消失。

例如,由于 ymax 用于定义条形图的最大“高度”,因此我建议将其设置为比 y 轴上数据的最大值大一点。

像这样的东西:

ggplot(df,aes(x=bla,y=blu,ymax=max(blu)*1.05))+geom_bar() 

乘以 1.05 可为您提供 5% 的注释空间。

于 2014-09-14T14:29:41.240 回答