Nothing
reorder <- function(LHS, RHS, attributes) {
# Sizes of the LHS + size of the RHS
# Remember: attributes are in rows, implications are
# in columns.
sizes <- Matrix::colSums(LHS) + Matrix::colSums(RHS)
# Reorder the sizes:
o <- order(sizes)
# Return the reordered implications
return(list(lhs = LHS[, o],
rhs = RHS[, o]))
}
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.