Re: [R] XYZ data

2013-06-27 Thread John Kane
You're right. I was in a hurry and misread the question John Kane Kingston ON Canada > -Original Message- > From: cl...@ecy.wa.gov > Sent: Wed, 26 Jun 2013 09:16:21 -0700 (PDT) > To: jrkrid...@inbox.com > Subject: Re: [R] XYZ data > > John, > > That st

Re: [R] XYZ data

2013-06-26 Thread David Winsemius
300 Desmond Drive, Lacey, WA 98503-1274 >>> >>> On Wed, 26 Jun 2013, John Kane wrote: >>> >>> mm <- 1:10 >>>> nn <- mm + .001 >>>> >>>> John Kane >>>> Kingston ON Canada >>>> >>>&

Re: [R] XYZ data

2013-06-26 Thread Aaron Mackey
ox 47600, Olympia, WA 98504-7600 > > Parcels:300 Desmond Drive, Lacey, WA 98503-1274 > > > > On Wed, 26 Jun 2013, John Kane wrote: > > > > mm <- 1:10 > >> nn <- mm + .001 > >> > >> John Kane > >> Kingston ON

Re: [R] XYZ data

2013-06-26 Thread arun
Hi, Not sure whether there is any pattern in adding the small number. dat1<- read.table(text=" X  Y Z 15   20  30 15   20  40 ",sep="",header=TRUE) dat1[,1:2]<

Re: [R] XYZ data

2013-06-26 Thread Clint Bowman
:34 +0100 To: r-help@r-project.org Subject: [R] XYZ data I have x, y, z data. The x, y fields dont change but Z does. How do I add a very small number onto the end of each x, y data point. Fo

Re: [R] XYZ data

2013-06-26 Thread Shane Carey
gt; -Original Message----- >>> From: careys...@gmail.com >>> Sent: Wed, 26 Jun 2013 16:48:34 +0100 >>> To: r-help@r-project.org >>> Subject: [R] XYZ data >>> >>> I have x, y, z data. The x, y fields dont change but Z does. How do I

Re: [R] XYZ data

2013-06-26 Thread Clint Bowman
t;- mm + .001 John Kane Kingston ON Canada -Original Message- From: careys...@gmail.com Sent: Wed, 26 Jun 2013 16:48:34 +0100 To: r-help@r-project.org Subject: [R] XYZ data I have x, y, z data. The x, y fields dont change but Z does. How do I add a very small number onto the end of eac

Re: [R] XYZ data

2013-06-26 Thread John Kane
mm <- 1:10 nn <- mm + .001 John Kane Kingston ON Canada > -Original Message- > From: careys...@gmail.com > Sent: Wed, 26 Jun 2013 16:48:34 +0100 > To: r-help@r-project.org > Subject: [R] XYZ data > > I have x, y, z data. The x, y fields dont change b

[R] XYZ data

2013-06-26 Thread Shane Carey
I have x, y, z data. The x, y fields dont change but Z does. How do I add a very small number onto the end of each x, y data point. For example: Original (X) Original (Y) Original (Z) 15 20 30 15