我有一个对数y尺度的跟随图,我在 R 中使用 ggplot2 进行了绘制。
convergencePlot = ggplot(allCosts, aes(x=V2))
finalPlot = convergencePlot + stat_bin() + scal_y_log10()
当我绘制此图时,我收到以下警告:
Stacking not well defined when ymin != 0
答案 0 :(得分:2)
如果不了解实际数据中的内容,就很难回答这个问题,但这里至少有一个猜测:
请尝试+ stat_bin(drop = TRUE)
。