Nothing
is_scalarlist_r <- function(x) {
if (!is.list(x)) return(FALSE)
for (i in x) {
if (!is.atomic(i) || length(i) > 1) return(FALSE)
}
return(TRUE)
}
#' @useDynLib jsonlite C_is_scalarlist
is_scalarlist_c <- function(x) {
.Call(C_is_scalarlist, x)
}
is.scalarlist <- is_scalarlist_c
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.