Hi together! I startet R today, and with my first problem, I will very much apreciate help: How can I set custom strings to by the x and y tick labels in a plot? Best regards, TIA, Felix. -- Mobile Internet - E-Mail und Internet immer und ?berall! GMX zum Mitnehmen: http://www.gmx.net/de/go/pocketweb
?axis For example: plot(runif(100), runif(100), axes=FALSE) axis(side=1, at=seq(0,1,.1), paste("my", seq(0,1,.1))) axis(side=2) box() Felix Bollenbeck wrote:> Hi together! > I startet R today, and with my first problem, I will very much apreciate > help: > > How can I set custom strings to by the x and y tick labels in a plot? > > Best regards, TIA, > > Felix. > > > > ------------------------------------------------------------------------ > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html-- Chuck Cleland, Ph.D. NDRI, Inc. 71 West 23rd Street, 8th floor New York, NY 10010 tel: (212) 845-4495 (Tu, Th) tel: (732) 512-0171 (M, W, F) fax: (917) 438-0894
>>>>> "Chuck" == Chuck Cleland <ccleland at optonline.net> >>>>> on Fri, 12 May 2006 08:12:31 -0400 writes:Chuck> ?axis Chuck> For example: plot(runif(100), runif(100), axes=FALSE) axis(side=1, at=seq(0,1,.1), paste("my", seq(0,1,.1))) axis(side=2) box() or slightly more easily: plot(runif(100), runif(100), xaxt = "n") axis(side=1, at=seq(0,1,.1), paste("my", seq(0,1,.1))) Chuck> Felix Bollenbeck wrote: >> Hi together! >> I startet R today, and with my first problem, I will very much apreciate >> help: >> >> How can I set custom strings to by the x and y tick labels in a plot? >> >> Best regards, TIA, >> >> Felix.