Nothing
# Setting the CMH_C function output presentation
# setting class name and its representation as a list
setClass( "durbin_test", representation("list"))
# setting how the test will be presented
setMethod("show", "durbin_test", function(object) {
cat("\n",sep = "")
cat(" Durbin Rank Sum Test\n",sep = "")
cat("\n",sep = "")
cat("Groups information:\n")
print(signif(object$rank_info, object$sig_digits))
cat("\n",sep = "")
print(signif(object$results_table,object$sig_digits),sep = "")
cat("\n")
cat("\n")
})
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.