Daily_mean<-Half_hourly%>%
  group_by(Date) %>%
  summarise_if(is.numeric, mean, na.rm=TRUE)
Is there a good way to average each column in terms of the day step size?
Daily_mean<-Half_hourly%>%
  group_by(Date) %>%
  summarise_if(is.numeric, mean, na.rm=TRUE)
Is there a good way to average each column in terms of the day step size?