This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Expression data visualization

Hi,

I would like to know if there are any tools for the visualization of the expression based data in R and Python that includes all the plotting types or some of them as mentioned below since I am currently using individual graphics tools for plotting.

> PCA 
> Hierarchical clustering
> K-means clustering
> Scatter plot
> Box plot
> Correlation plot
> Volcano plot
> Matrix plot
> Profile plot

Thank you, Toufiq

rna-seq qrt-pcr plots r python

Have you searched google for some tutorials?

Yes, really, Toufiq, you should learn how to use a search engine. We cannot put ourselves at the behest of people who make minimal effort to search for answers prior to posting here.

R use a package strategy that allows you to import packages you want to use and not all existing packages.

For example if you want a PCA you have this

#install
install.packages(FactoMineR)
#load
library(FactoMineR)

Then you can use the PCA() function in your R script

If you want a volcano plot, search a package that trace it, install it, load it and use it

0 answers

No answers yet.

Log in to answer this question.