Nothing
#' Determine the basis of a knowledge space from a surmise relation
#'
#' \code{kmSR2basis} takes a surmise relation and returns the
#' corresponding basis.
#'
#' @param sr Surmise relation
#' @return Basis
#'
#' @family Different representations for knowledge spaces
#'
#' @export
kmSR2basis <- function(sr) {
mat <- unique(t(sr))
class(mat) <- unique(c("kmbasis", "kmfamset", class(mat)))
mat
}
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.