I have the following data frame in R
df1 <- data.frame(id = c(12332, 231231, 123123, 1231231, 123123),
date_in = c("04/08/2019 04:00", "04/08/2019 06:00", "05/08/2019 04:00",
"08/08/2019 12:00", "12/08/2019 04:00"),
date_out = c("20/08/2019 04:00", "14/08/2019 13:00", "11/08/2019 04:00",
"30/08/2019 04:00"))
I would like to create another data frame which counts how many id where in in every day of the months
Any ideas?
Thank you!