R 3.2.3中的ggplot2:层坏了吗?

时间:2016-01-06 22:45:51

标签: r macos plot ggplot2

今天早上我升级到R 3.2.3(OSX 10.11.1)。我的以下类型的ggplot2脚本突然停止工作:

df <- data.frame(ind = c(20,35,45,55,70), dep = c(6,17,26,37,44))

语法1

ggplot()+ layer(data=df, mapping=aes(x=ind, y=dep), geom="point")

"Error: Attempted to create layer with no stat."

ggplot2本身没有破坏

语法2:

ggplot(df, aes(x=ind, y=dep)) + geom_point()

产生预期的情节。语法1仍然在旧机器上生成预期的绘图(R 2.15.3 OSX 10.5.8)。此外,我在R升级前的今天早上才使用它。我删除并重新加载了R3.2.3,ggplot2和dependents,但问题仍然存在。我喜欢Syntax 1,因为我喜欢从不同的数据集中添加图层。我很感激你的想法。

1 个答案:

答案 0 :(得分:0)

当我们在功能层应用stat =&#34; identity&#34;,position_dodge(width = 3)

时,它大部分工作正常
ggplot()+ layer(data=df, mapping=aes(x=ind, y=dep), geom="point",stat="identity",position_dodge(width=3))

#data

df <- data.frame(ind = c(20,35,45,55,70), dep = c(6,17,26,37,44))

enter image description here