missing_combinations | R Documentation |
Facebook mobility data is reported daily at 3 different hours (0, 8, 16). This function reads the data extracted from the current files and detects if any file for a particular day or hour is missing.
missing_combinations(data, hour_col = "hour", date_col = "day")
data |
A data.frame with one column for the raster's date
and another for the hour. If not explicitly specified
in the function's arguments, the column names are |
hour_col |
The name of the column with the hour information. |
date_col |
The name of the column with the date information. |
A data.frame with the missing days and hours, if any.
# Sample dataset
data <- data.frame(
country = c("US", "MX", "MX"),
day = c("2023-01-01", "2023-01-03", "2023-01-05"),
hour = c(0, 8, 16)
)
missing_combinations(data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.