Nothing
subClassNames = function(x) {
if (isClassDef(x))
classDef <- x
else if(is.character(x) )
classDef <- getClass(x)
else
stop("invalid argument")
ans = names(classDef@subclasses)
if( length(ans) == 0 )
character()
else
ans
}
superClassNames = function(x) {
if (isClassDef(x))
classDef <- x
else if(is.character(x) )
classDef <- getClass(x)
else
stop("invalid argument")
ans = names(classDef@contains)
if( length(ans) == 0 )
character()
else
ans
}
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.