GO analysis: p-value range
0
0
Entering edit mode
14 days ago
sooni ▴ 20

Hello.

I drew a bar-plot of GO analysis. I would like to modify the range of p-value from 0 to 0.05. How can I do this?

The following is an example of the p-value range of the bar-plot I drew.

enter image description here

GO R • 282 views
ADD COMMENT
0
Entering edit mode

Try adding: scale_y_continuous(breaks=seq(0, max_count, by=0.05))

ADD REPLY
0
Entering edit mode

When I run the code, the following message appears:

Scale for y is already present.
Adding another scale for y, which will replace the existing scale.

What does this mean?

ADD REPLY
0
Entering edit mode

If you write me the code you used I can help you more

ADD REPLY
0
Entering edit mode

It is just a warning that you add a new scale to a ggplot2 plot, that already has an existing one, which will get replaced. Nothing to worry about.

I recommend familiarizing yourself with the basic concepts of the ggplot2 package, since you seem to be creating multiple plots, e.g. for a paper, and that familiarity will help you tons. For example, you are showing here a continuous color scale, but since you mentioned that you actually want a bar plot, Marco had to infer that you are asking to modify the y-axis scale. (On a side note: I am not sure how informative a bar plot of significant GO categories actually is for your audience)

ADD REPLY

Login before adding your answer.

Traffic: 1158 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6