Mercurial > repos > mingchen0919 > aurora_deseq2_site
view 04_pca_plot.Rmd @ 2:ab8d558ea6e6 draft default tip
planemo upload commit 841d8b22bf9f1aaed6bfe8344b60617f45b275b2-dirty
author | mingchen0919 |
---|---|
date | Sun, 30 Dec 2018 13:57:07 -0500 |
parents | 32210899a3dd |
children |
line wrap: on
line source
--- title: 'Principle component analysis plot' output: html_document: highlight: pygments --- ```{r setup, include=FALSE, warning=FALSE, message=FALSE} knitr::opts_chunk$set(error = TRUE, echo = FALSE) ``` ```{r} vsd <- vst(dds, blind=FALSE) p = plotPCA(vsd, intgroup=c(opt$X_D)) + scale_color_discrete(name = 'Group') + theme_classic() ggplotly(p) ```