How you can change the Y-axis intervals in a graph? Use and ylim command but this command only changes the minimum and maximum values ??of the axis, I want to do is take the axis values ??from 10 to 10 for example How I can do? thanks -- View this message in context: http://r.789695.n4.nabble.com/Modify-Y-axis-tp4650329.html Sent from the R help mailing list archive at Nabble.com.
Modify Y axis
3 messages · Elli, jim holtman, David Winsemius
?axis
On Wed, Nov 21, 2012 at 12:44 PM, Elli <ellilti_017 at hotmail.com> wrote:
How you can change the Y-axis intervals in a graph? Use and ylim command but this command only changes the minimum and maximum values of the axis, I want to do is take the axis values from 10 to 10 for example How I can do? thanks -- View this message in context: http://r.789695.n4.nabble.com/Modify-Y-axis-tp4650329.html Sent from the R help mailing list archive at Nabble.com.
______________________________________________ R-help at r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.
Jim Holtman Data Munger Guru What is the problem that you are trying to solve? Tell me what you want to do, not how you want to do it.
On Nov 21, 2012, at 9:44 AM, Elli wrote:
How you can change the Y-axis intervals in a graph? Use and ylim command but this command only changes the minimum and maximum values ??of the axis, I want to do is take the axis values ?? from 10 to 10 for example How I can do?
?axis You will probably need to suppress the default axis annotation. In base graphics this is done with yaxt="n", which should be remembered as "y-axis type is 'none'". -- David Winsemius, MD Alameda, CA, USA