Nothing
`phenoDataFrame` <-
function(PhenoData, variableClass) {
PhenoInfo=PhenoData
for(i in 1:length(variableClass)) {
if(variableClass[i] == "numeric") {PhenoInfo[,i] <- as.numeric(as.vector(PhenoData[,i]))
}
else
if(variableClass[i] == "character") {
PhenoInfo[,i] <- as.character(as.vector(PhenoData[,i]))
}
else
if(variableClass[i] == "factor") {
PhenoInfo[,i] <- factor(as.character(as.vector(PhenoData[,i])))
}
PhenoInfo = PhenoInfo
}
PhenoInfo
}
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.