Nothing
print.stratified.data.frame <- function(x,
...){
object <- x
cat("\n Stratified by: ", object$stratified.by,"\n")
cat("\n Strata information: \n\n")
df <-
data.frame(cbind(object$intervals,
as.numeric(table(object$stratum.index)),
round(as.numeric(table(object$stratum.index))/dim(object$data)[1],3)))
colnames(df) <- c(" Strata bounds"," n"," n (proportion)")
print(df)
}
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.