View source: R/monitor_isTidy.R
monitor_isTidy | R Documentation |
Verifies that the given data can be treated as tidy-formatted "ws_monitor" data. This is done by verifying that the data is a tibble data.frame object with columns for information in all 'ws_monitor' objects.
monitor_isTidy(data = NULL)
data |
Data to validate. |
True if the data is in a recognized 'Tidy' format, otherwise False.
ws_monitor <- monitor_subset(
Northwest_Megafires,
monitorIDs = c('530470009_01', '530470010_01')
)
ws_monTidy <- monitor_toTidy(ws_monitor)
monitor_isTidy(ws_monTidy)
## Not run:
monitor_isTidy(ws_monitor)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.