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

I would like to display n beanplots in one graph next to each other. I receive vectors of respective values from a for-loop. In each iteration a new bean plot should be generated an put right next to the former bean plots. I tried several ways.

  1. Passing values as a list:

    allValues <- list()
    pdf("Values")
    for(f in files)
    {
      ...    
      ...
      values = getValues(f)
      allValues <- append(allValues, values)
    }
    beanplot(allvalues, what=c(1,1,1,0))
    dev.off()
    

This gives me strange results.

I also tried a data.frame I tried adding the parameter "add=T" to beanplot() command and putting beanplot() inside the for loop.

Any Help?

share|improve this question

1 Answer

up vote 1 down vote accepted

The append operates on vectors adding all the elements. It seems you want to add a new list to allValues. Try this:

for(f in files)
{
  ...    
  ...
  values = getValues(f)
  allValues <- append(allValues, list(values))
}
share|improve this answer
Thanks. I also got the same result using allValues <- c(list(values), allValues) – user1192748 Nov 5 '12 at 13:23

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.