Plotting options for aimsdf objects
Usage
# S3 method for class 'aimsdf'
plot(x, ..., ptype, pars)
Value
An object of class ggplot
.
Examples
if (FALSE) { # \dontrun{
library(dataaimsr)
wdf <- aims_data("weather", api_key = NULL,
filters = list(site = "Yongala",
from_date = "2018-01-01",
thru_date = "2018-01-02"))
plot(wdf, ptype = "map")
plot(wdf, ptype = "time_series")
# summary-by- datasets can only return maps
sdf <- aims_data("temp_loggers", api_key = NULL,
summary = "summary-by-deployment")
plot(sdf, ptype = "map")
} # }