upsetplot.enrichResult <- function(x, n=10, ...) {
    df <- summary(x)
    id <- df$ID[1:n]
    des <- df$Description[1:n]
    glist <- geneInCategory(x)[id]
    g <- unique(unlist(glist))
    dat <- matrix(0, nrow=length(g), ncol=length(id))
    rownames(dat) <- g
    for (i in 1:length(id)) {
        dat[glist[[i]], i] <- 1
    }
    colnames(dat) <- des
    ## cols <- ggtree:::color_scale("red", "blue")
    ## pv <- df$pvalue[1:n]
    ## idx <- sapply(pv, function(p) DOSE:::getIdx(p, min(pv), max(pv)))
    ## sets.bar.color = cols[idx],
    UpSetR <- "UpSetR"
    require(UpSetR, character.only = TRUE)
    upset <- eval(parse(text="upset"))
    
    upset(as.data.frame(dat), nsets=n, ...)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.