Nothing
# TODO: Add comment
#
# Author: gagneur
###############################################################################
## S4 implementation
setGeneric(
"test",
function( x, y, a=0 ){
standardGeneric("test")
}
)
#o, sets, population=NULL, alpha=NA, beta=NA, p=NA, steps=1e6
setMethod(
"test",
signature = c(x="numeric", y="numeric"),
function( x, y, a ) {
x+y+a
}
)
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.