Re: [R] How to adjust the y-axis range in barplot properly

2011-09-23 Thread Jim Lemon
On 09/23/2011 01:49 AM, Benedikt Drosse wrote: Hello R-Users, it might be a rather simple problem I have, but I couldn't find any solution online. Thus, here is my problem: I would like to adjust the y-axis range in a barplot, since all my values are >70. Therefore I would like to only visualize

Re: [R] How to adjust the y-axis range in barplot properly

2011-09-22 Thread Luke Miller
This should do the trick: barplot(data, ylim=c(60,90), beside=TRUE, xpd = FALSE) As usual, check ?barplot first for clues on how to customize the plot to your specifications. On Thu, Sep 22, 2011 at 11:49 AM, Benedikt Drosse wrote: > > Hello R-Users, > it might be a rather simple problem I have

[R] How to adjust the y-axis range in barplot properly

2011-09-22 Thread Benedikt Drosse
Hello R-Users, it might be a rather simple problem I have, but I couldn't find any solution online. Thus, here is my problem: I would like to adjust the y-axis range in a barplot, since all my values are >70. Therefore I would like to only visualize the y-axis from 60-100 (example 1). The pro