Nothing
# ============================================================================
# Wrapper to prob-zk functions
#
# Details:
# Checks if ch and cs are either matrices or data frames
# ============================================================================
check_matrix_or_dataframe <- function(x, name) {
if (!(is.data.frame(x) || is.matrix(x))) {
stop(paste("Error:", name, "must be either a data frame or a matrix."))
}
}
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.