dplyr - arrange () according to two criteria per group

后端 未结 3 1064
名媛妹妹
名媛妹妹 2021-01-28 05:50

I have hourly weather collected for hundreds of farms for a period of five weeks before a sampling event. I want to determine the average Air_Temp for the three weeks prior to t

3条回答
  •  庸人自扰
    2021-01-28 06:10

    group_by shouldn't be necessary for this, it's typically used for when you are looking to perform some kind of aggregate on your data. The arrange will sort first by the File, then by the Date within each file, then by the Hour within each Date. This should get you the structure you're looking for.

    Weather1 <- Weather%>%
                arrange(File, Date, Hour)
    

提交回复
热议问题