将日期作为标签添加到ggplot facet_grid

时间:2016-12-14 09:53:33

标签: r ggplot2

我有以下数据框:

people($userid)

数据框包含30个不同日期的数据。 我正在使用以下代码片段生成图表,每个日期一个,排列在网格中:

  Date K Row Col Downward_solar_radiation Solar_radiation_calc
1 2014-01-02 1   1   1                        0                    0
2 2014-01-02 2   1   1                        0                    0
3 2014-01-02 3   1   1                        0                    0
4 2014-01-02 4   1   1                        0                    0
5 2014-01-02 5   1   1                        0                    0
6 2014-01-02 6   1   1                        0                    0

制作的情节是:

enter image description here

我想在描绘相应日期的每个情节中添加一个文字,并删除标签1-6。

1 个答案:

答案 0 :(得分:1)

您可以使用facet_wrap(~ Date, nrow=5)代替facet_grid。这样,您就不需要手动col和行标签,ggplot会自动用相应的日期标记每个facet。 Documentation & examples