Nothing
### Various Helper Functions
### Check Basis
check.basis = function(x) {
if( ! x %in% c("xyz","abc"))
stop("'basis' must be equal to 'xyz' or 'abc'");
}
# id or Logical
check.idOrLogical = function(x, max, lbl) {
if(any(round(x) != x))
stop(paste0(lbl, " must be a logical or integer vector"));
if(any(x > max))
stop(paste0(lbl, " contains indices out of range"));
}
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.