Nothing
massConvertToNumeric <- function(dat, byFactorLabel = FALSE,
ignoreCharacter = TRUE,
stringsAsFactors = FALSE) {
storedAttributes <- attributes(dat);
dat <- data.frame(lapply(dat, function(x) {
if (is.character(x) && ignoreCharacter) {
return(x);
}
else {
return(convertToNumeric(x, byFactorLabel = byFactorLabel));
}
}), stringsAsFactors=stringsAsFactors);
attributes(dat) <- storedAttributes;
return(dat);
}
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.