Nothing
## ===========================
## Methods for stsstatd objects
## ===========================
print.stslist.freq <- function(x, digits=2, ...) {
table <- attr(x,"freq")
print(table, digits=digits, ...)
}
"[.stslist.freq" <- function(x,i,j,drop=FALSE) {
## Column subscript are not allowed
if (!missing(j))
stop(" [!] Column subscripts are not allowed", call.=FALSE)
x <- NextMethod("[")
if (!missing(i)) {
attr(x,"weights") <- attr(x,"weights")[i]
attr(x,"freq") <- attr(x,"freq")[i,]
}
return(x)
}
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.