Re: [R] labelling points plotted in a 2D plan

2009-07-26 Thread Khaled OUANES
Hello Tal! Nothing showed up when I used those commands! The plot still shows dots with no labels! Thanks On Sun, Jul 26, 2009 at 7:28 AM, Tal Galili wrote: > Hi Khaled, > Did my answer help ? > > > > > On Sun, Jul 26, 2009 at 12:15 AM, Khaled OUANES wrote: > >

Re: [R] labelling points plotted in a 2D plan

2009-07-25 Thread Khaled OUANES
plot <- sample(c("A","B"), 100, replace = T) > > # set up the window, play them one by one to see what they do > plot.window(ylim = c(0,1), xlim = c(0,1)) > plot.new() > axis(1) > axis(2) > box() > > # plot the things you wished to plot, where you wanted

Re: [R] labelling points plotted in a 2D plan

2009-07-25 Thread Khaled OUANES
hey thanks for the answer but I couldn't achieve it? would you explain a bit more? I have like 300 points to label! thanks [[alternative HTML version deleted]] __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLE

[R] labelling points plotted in a 2D plan

2009-07-25 Thread Khaled OUANES
I created a 2 D plan: > plot(range(-2.5,0.95),range(0.00,1.00),type="n",axes=TRUE) I made a projection of points with their coordonates (X,Y) in that plan > fullpoints=read.csv2("fullpoints.csv",h=T) > plot(fullpoints) The points are listed in that .csv file it is organized this way: 0,4887

Re: [R] creating a 2d plan graphic and projecting points in it

2008-05-16 Thread Khaled OUANES
I want to project on this 2D plan. Thanks again. On Fri, May 16, 2008 at 1:59 PM, Jim Lemon <[EMAIL PROTECTED]> wrote: > Khaled OUANES wrote: > >> Hello; >> I want to create a 2 D plan with (123 values) for axis1 and 7 values for >> axis 2. >> I then want

[R] creating a 2d plan graphic and projecting points in it

2008-05-16 Thread Khaled OUANES
Hello; I want to create a 2 D plan with (123 values) for axis1 and 7 values for axis 2. I then want to make a projection of points with their coordonates in that plan! is that possible and how to proceed? Thanks [[alternative HTML version deleted]] ___