Nothing
find.balance.method <- function(method,
...)
{
if (is.character(method)){
if (!method == "classical" &
!method == "stand.diff"){
stop("Argument 'method' is no valid.")
}else{
if (method == "classical")
bal <- balance.classical(...)
if (method == "stand.diff")
bal <- balance.stand.diff(...)
}
}else{
stop("Argument 'method' must be a string.")
}
return(bal)
}
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.