Plotting options for aimsdf objects
# S3 method for aimsdf
plot(x, ..., ptype, pars)
An object of class ggplot
.
Currently plots cannot be customised. Summary datasets can only be represented by maps.
if (FALSE) {
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")
}