Displaying 1 result from an estimated 1 matches for "histbar".
Did you mean:
histbars
2007 Jun 14
3
problem with hist()
...[11] 1 1 1 1 1 1 1 1 2 2
...
[16881] 59 59 59 60 60 60 60 60 60 60
After this I make something like this
boxplot(cor ~ pic)
par(new = TRUE)
hist(y, nclass = 60)
But there is my problem. I have 60 pictures, so I get 60 different
boxplots, and I want the hist behind the boxes. But it makes only 59
histbars.
What can I do? I tried also
hist(y, 1:60) # same effect
and
hist(y, 1:61)
this give me 60 places, but only 59 bars. the last bar is 0.
I hope anyone can help me.
Regards Mario