monitor_isTidy: Check if data is tidy-formatted ws_monitor data

Description Usage Arguments Value Examples

View source: R/monitor_isTidy.R

Description

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.

Usage

1

Arguments

data

Data to validate.

Value

True if the data is in a recognized 'Tidy' format, otherwise False.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
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)

PWFSLSmoke documentation built on Nov. 23, 2021, 5:06 p.m.