This is a test version of Biostars. For the public version, visit https://www.biostars.org.
How to bubble in ggplot2 or other package

I have the data frame from indicspecise R package as below.

organisms indicator_value R_G1 p_G1 R_G2 p_G2 R_G3 p_G3 ..
A .98. 01 .05. .2. 05 .09. 02
B .98 .05 NA .1. 03 .09. 04
C .98 .02.. 02 .07 NA .2 0.02

I want to draw a bubble plot like this "https://ibb.co/Pt7CM7P". can anyone assist me. Thank you for your assistance

r ggplot2

try dotplot function in clusterprofiler package (R)

Please don't delete a question after someone spends the time to help you.

Apology! Follow in future. Thank you

1 answer

geom_point(aes(size = indicator_value)) will output the raw figure you want.

Log in to answer this question.