79363159

Date: 2025-01-16 22:03:46
Score: 0.5
Natty:
Report link

I suggest creating a new field from your date time then group and summarise by date:

df2 <- df %>%
  mutate(Date=as.Date(Date_Time_Variable)) %>%
    group_by(Date) %>%
      summarise(Mean_Temp=mean(TemP_Variable, na.rm=T))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: BEVAN