Nothing
getNamedElement <- function(vector, name) {
if (name %in% names(vector))
return(vector[[name]])
else
return(as.character(NA))
}
isHomoList <- function(list, class) {
if(length(list) == 0 || !is.list(list)) return(FALSE)
isHomo <- sapply(list, is, class)
if(all(isHomo)) return(TRUE)
return(FALSE)
}
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.