Yeah, I can get 24 hours of data points starting from 0 to 23, but if you look at the top image, Monday's 23:00 and Tuesday's 0:00 are overlapping on a line, so there is a sudden change at that point and I can't see the change for the hour in between. I guess it could be that the packet is designed that way, is there any way I can see the full change? Many thanks!
By the way, here's my code.
roomtemp<- fread("HFD_RoomTemp_2021_2022.csv",
header = F, sep = ",", skip=1,
na.strings = "NA",
col.names = c("date", "room.temp")
)
dev.new()
timeVariation(roomtemp,pollutant="room.temp", statistic = "median", col="firebrick")
And the data of date is from 2021-06-15 13:42:01 to 2022-06-20 00:10:00, one data every 30 seconds.
