Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wanted to do something similar to this, but a little more complex.

Change colours of particular bars in a bar chart

Here is my data:

x <- c(3,-1.4,0.8,-0.3,-1.2,-2.5,1.5,-1.4)
breaks <- c(-Inf, -1, 1, Inf)
cols <- c("blue", "grey", "red")[findInterval(x, vec=breaks)]
barplot(x, col = cols, horiz=T)

so this is what it makes:

chart

What I want to do is then use the p-value of that change to color the bars that are not statistically significant grey as well.

pval<- c(0.01,0.03,0.04,0.89,0.45,0.01,0.03,0.02)

so the fourth bar would be grey too.

I tried using various combinations of ifelse to no avail.

share|improve this question

1 Answer

up vote 3 down vote accepted

Just replace the appropriate values in cols. This is done easily with [<- or you could use replace which is a wrapper for the same thing

Assuming you are using alpha = 0.05

myalpha <- 0.05
cols[pval > myalpha] <- 'grey' # could also be cols <- replace(cols, pvals > 0.05, 'grey')
barplot(x, col = cols, horiz=T)

enter image description here

share|improve this answer
1  
There should be a button for discard mine/upvote yours. – DWin Jan 10 at 23:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.