R GGplot - 找不到物体列车

时间:2018-02-09 10:39:50

标签: r ggplot2

我正在学习如何使用R,但似乎无法显示我的条形图。感觉就像我犯了一个非常新秀的错误。

以下是代码:

> library(ggplot2)
> ggplot(train, aes(Q2)) + geom_bar(fill = "red")+theme_bw()+
+     scale_x_continuous("Age Brackets", breaks = seq("Under 18","Prefer not to say")) + 
+     scale_y_continuous("Count", breaks = seq(0,200,5)) +
+     coord_flip()+ labs(title = "Q2 - Age Brackets") + theme_gray()

这是错误:

Error in ggplot(train, aes(Q2)) : object 'train' not found

SPSS文件:

enter image description here

RStudio中的Q2

enter image description here

RStudio环境中的数据和功能:

enter image description here

1 个答案:

答案 0 :(得分:2)

该函数期望您要绘制的数据名为train。您的环境中应该有一个名为data.frame的{​​{1}}。你呢?