Verifies that the given data can be treated as tidy-formatted data. This is done by verifying that the data is a tibble data.frame object with columns for information in all mts_monitor objects.

monitor_isTidy(data = NULL)

Arguments

data

Data object to validate.

Value

TRUE if the data is in a recognized 'Tidy' format, otherwise FALSE

Examples

library(AirMonitor) monitor <- NW_Megafires %>% AirMonitor::monitor_select( c('450d08fb5a3e4ea0_530470009', '40ffdacb421a5ee6_530470010') ) mts_tidy <- monitor_toTidy(monitor) monitor_isTidy(mts_tidy)
#> [1] TRUE
if (FALSE) { monitor_isTidy(monitor) }