View source: R/inventory_table.R
inventory_table | R Documentation |
Returns a table for each cell in a climatic data frame with an indicator to show whether the corresponding cell value is missing or observed.
inventory_table(
data,
date_time,
elements,
station = NULL,
year = NULL,
month = NULL,
day = NULL,
missing_indicator = "M",
observed_indicator = "X"
)
data |
|
date_time |
|
elements |
|
station |
|
year |
|
month |
|
day |
|
missing_indicator |
|
observed_indicator |
|
A data.frame indicating if the value is missing or observed.
# Create inventory table for maximum and minimum temperature
inventory_table(data = daily_niger, date_time = "date", elements = c("tmax", "tmin"),
station = "station_name")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.