Nothing
# common check for first two arguments in all these functions
check_qd_class <- function(discharge, dates) {
if (!is.numeric(discharge)) {
stop("discharge must be 'numeric' class")
}
if (!(class(dates)[1] %in% c("Date", "POSIXlt", "POSIXct"))) {
stop("dates must be a 'Date', 'POSIXct', or 'POSIClt' class")
}
NULL
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.