Hi! How can I change the tickmarks on the x axis. I want to make a plot and on the x axis I ve got values from 0 to 360. I want have a tickmark like 0,10,20,... Thanks -- Frank Gerrit Zoellner -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
Frank Gerrit Zoellner wrote:> > Hi! > > How can I change the tickmarks on the x axis. I want to make a plot and on the x axis I ve got values from 0 to 360. I want have a tickmark like 0,10,20,...Try plot(0:360, xaxt="n") axis(1, at=seq(0,360,10)) or plot(0:360, xaxt="n") axis(1, at=seq(0,360,10), cex.axis=0.7, las=2) Uwe Ligges -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
I need help to understand what Iam doing wrong: Yesterday I found the averages of a matrix columns with apply(x, 2, mean) Today I did it again on the same matrix obtaining results a bit different. Why? I suspect it is a sort of rounding problem as today the numbers are plotted in scientific notation and yesterday they where not ... Luca -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._