This is a minimal example of using knitr to produce an HTML page from Markdown.
library(PsigA) plot(prcomp(t(data), scale = scale)$x, pch = 20, cex = .8)
rownames(gsea$pc1) <- gsub("\\(|\\)","", rownames(gsea$pc1)) kable(head(gsea$pc1, escape = TRUE, n = 10))
rownames(gsea$pc2) <- gsub("\\(|\\)","", rownames(gsea$pc2)) kable(head(gsea$pc2, escape = TRUE, n = 10))
topSignatures <- rownames(scores)[1:10] for (i in topSignatures){ print(sigBiplot(data, signatures[[i]], main = i)) }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.