Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

X axis does not match barplot

Tags:

plot

r

I used barplot() function to create a stacked chart from matrix.

Matrix looks like this:

1 0.989013 0.010987
2 0.999990 0.000010
3 0.999990 0.000010
4 0.999990 0.000010

code to create a stacked chart looks like this:

barplot(t(as.matrix(x)), col=c("cyan", "black"))

The problem is that I want to create custom x axis with ticks and labels at certain points. I used following to create x axis:

axis(1, at=keyindexes, labels=unique(t$V4), tck=-0.01)

where keyindexes is vector of bar numbers where I need to have ticks and unique(t$V4) is vector containing unique name for each tick.

Now the problem is that x axis does not match with chart area and is significantly shorter. Can anyone advice on how to make x axis longer?

like image 872
YKY Avatar asked Mar 11 '13 04:03

YKY


1 Answers

The problem with axis labels is in fact that bars are not centered on whole numbers. For example, make some data with ten rows and plot them with barplot(). Then add axis() for x axis at numbers from 1 to 10.

set.seed(1)
x<-data.frame(v1=rnorm(10),v2=rnorm(10))
barplot(t(as.matrix(x)), col=c("cyan", "black"))
axis(1,at=1:10)

enter image description here

Now axis texts are not in right position.

To correct this problem, barplot() should be saved as object and this object should be used as at= values in axis.

m<-barplot(t(as.matrix(x)), col=c("cyan", "black"))
m
 [1]  0.7  1.9  3.1  4.3  5.5  6.7  7.9  9.1 10.3 11.5
axis(1, at=m,labels=1:10)

enter image description here

EDIT - plotting only some ticks

If only some of axis ticks texts should be plotted then you can subset m values that are needed and provided the same length of labels=. In this example only 1., 5. and 10. bars are annotated.

m<-barplot(t(as.matrix(x)), col=c("cyan", "black"))
lab<-c("A","B","C")
axis(1, at=m[c(1,5,10)],labels=lab)

enter image description here

like image 90
Didzis Elferts Avatar answered Sep 28 '22 09:09

Didzis Elferts