Equal distance between groups in a barplot
2
0
Entering edit mode
5.8 years ago
c.chakraborty ▴ 170

I have a very simple question and I have been quite unable to find a suitable answer. I am making barplots for GO-enriched terms-

barplot(Fold.Enrichment,
        names.arg = Description,
        horiz = TRUE,
        cex.names = 0.5,
        cex.axis = 0.6,
        col = "blue",
        xlim = c(0, 3))

When I get the plot, not all the bars are equidistantly separated from each other. It looks clumsy. Is there a way by which, I can specify a distance between bars?

R • 1.8k views
ADD COMMENT
2
Entering edit mode
5.8 years ago
firatuyulur ▴ 320

I just read now that there is a parameter called "space" in barplot function. for each bar, you type the distance from the next bar.

ADD COMMENT
1
Entering edit mode
5.8 years ago
c.chakraborty ▴ 170

Problem solved:

barplot(david_go__ord_foldenr$Fold.Enrichment,
        names.arg = david_go__ord_foldenr$Description,
        horiz = TRUE,
        space = 0.1,
        cex.names = 0.5,
        cex.axis = 0.6,
        col = "blue",
        xlim = c(0,3))
ADD COMMENT

Login before adding your answer.

Traffic: 2253 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