This is a test version of Biostars. For the public version, visit https://www.biostars.org.
R package for pearson's correlation plot

Which R package should I use to get a plot like this???

It's a Pearson's correlation analysis

enter image description here

package r pearson correlation

Try corrplot

I already use Corrplot, but it's not that specific package that I want

1 answer

You can get such a plot with ggplot, using geom_point(aes(size = correlation, colour = logP)).

Log in to answer this question.