Hello
I have lists of pathways , number of genes and adj value as in bellow, How can I put all results of GO analysis (MF, BP, CC AND KEGG) pathways in a graph using ggplot2 or any package?
Please provide more information. What result are you trying to highlight with this data? Is there something in the literature that you've seen that you want to replicate?
Have you tried faceting it? Something like facet_wrap(.~Type). As an aside, you don't need to call the dataframe when you're assigning aesthetics, and for most use cases it's best practise to assign them in the main ggplot command:
ggplot(data = input_data, aes(colour = Type, x = Genes, y = Pathways) +
geom_point(size = 2) +
...
EDIT: Just reread the post and you want them in a single plot. But the other comment remains valid, so I'll just leave it.
Please provide more information. What result are you trying to highlight with this data? Is there something in the literature that you've seen that you want to replicate?
Post the data Saeed. Either attach a csv, upload to github, or include an example of the data.