我有以下数据框:
Year Ocean O2_Conc
<dbl> <chr> <dbl>
1 2010. Reference 0.000237
2 2010. Pacific 0.000165
3 2010. Southern 0.000165
4 2012. Reference 0.000237
5 2012. Pacific 0.000165
6 2012. Southern 0.000165
7 2012. Reference 0.000237
8 2012. Pacific 0.000165
9 2012. Southern 0.000165
我想在 ggplot2 中绘制这些数据,以生成一个散点图,其中不同的海洋颜色不同。我尝试了以下代码,它适用于类似的数据:
ggplot(data=df, aes(x="Year", y="O2_Conc", color="Ocean")) + geom_point()
这给了我这个输出。有人可以解释为什么数字没有出现在图表的轴上吗? GGplot输出