Re: [R] plot character

2003-07-22 Thread Duncan Murdoch
On Tue, 22 Jul 2003 17:59:24 +0100, "Luis Miguel Almeida da Silva" <[EMAIL PROTECTED]> wrote : >Dear helpers > >Is it possible to plot with a desired character? For example "tr" for training error >and "te" for test error. >I tried > >plot(x,y,pch="tr") > >but only appears "t" in the plot Us

Re: [R] plot character

2003-07-22 Thread Spencer Graves
Have you considered "?text"? hope this helps. spencer graves Luis Miguel Almeida da Silva wrote: Dear helpers Is it possible to plot with a desired character? For example "tr" for training error and "te" for test error. I tried plot(x,y,pch="tr") but only appears "t" in the plot

Re: [R] plot character

2003-07-22 Thread Marc Schwartz
On Tue, 2003-07-22 at 11:59, Luis Miguel Almeida da Silva wrote: > Dear helpers > > Is it possible to plot with a desired character? For example "tr" for training error > and "te" for test error. > I tried > > plot(x,y,pch="tr") > > but only appears "t" in the plot One option is to use te

Re: [R] plot character

2003-07-22 Thread Jerome Asselin
Use text(). x <- rnorm(10); y <- rnorm(10) plot(x,y,type="n") text(x,y,rep(c("te","tr"),each=5)) Cheers, Jerome On July 22, 2003 09:59 am, Luis Miguel Almeida da Silva wrote: > Dear helpers > > Is it possible to plot with a desired character? For example "tr" for > training error and "te" for t

Re: [R] plot character

2003-07-22 Thread Barry Rowlingson
Luis Miguel Almeida da Silva wrote: Dear helpers Is it possible to plot with a desired character? For example "tr" for training error and "te" for test error. I tried plot(x,y,pch="tr") but only appears "t" in the plot You probably want to use the 'text' function, but you have to set up t

[R] plot character

2003-07-22 Thread Luis Miguel Almeida da Silva
Dear helpers Is it possible to plot with a desired character? For example "tr" for training error and "te" for test error. I tried plot(x,y,pch="tr") but only appears "t" in the plot __ [EMAIL PROTECTED] mailing list https://www.stat.math.ethz.ch