Nothing
dfConvertColumns <- function(x, from = "character", to = "factor") {
idx = sapply(x, is, from)
x[idx] = lapply(x[idx], as, to)
return(x)
}
setAs("character", "factor", function(from) {
return(as.factor(from))
})
showSome <- function(x, name, indent="") {
res <- sprintf("%s%s (%d): %s\n",
indent,
name,
length(x),
paste(selectSome(x), collapse=", ")
)
return(res)
}
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.