flattenSchema =
function(x)
{
st = sapply(x, function(x) is(x, "SchemaTypes")
sc = sapply(x, function(x) is(x, "SchemaCollection")
isAgg = st | sc
if(!any(isAgg))
return(isAgg)
ans = new("SchemaCollection")
n = lapply(x, flattenSchema)
sapply(x, is, "SchemaCollection")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.