[R] really strange problem - has to be logic but i can't find it

2006-10-27 Thread Leeds, Mark \(IED\)
would someone be kind enough to paste the code below into an R session ( ir you can paste it into a file and just source it ) and take a look at it ? I must be doing something wrong but i can't find it. I start out with a zoo object that has 100 elements in it. then, i only want to keep the

Re: [R] really strange problem - has to be logic but i can't find it

2006-10-27 Thread Gabor Grothendieck
zoo objects must have unique index values but the last two in the head output below are the same: head(fxdata) bid ask 2006-04-03 03:30:00 27.21 27.26 2006-04-03 03:46:42 27.21 27.26 2006-04-03 03:46:54 27.25 27.26 2006-04-03 03:57:08 27.55 27.26 2006-04-03 04:00:00 27.50

Re: [R] really strange problem - has to be logic but i can't find it

2006-10-27 Thread Leeds, Mark \(IED\)
strange problem - has to be logic but i can't find it zoo objects must have unique index values but the last two in the head output below are the same: head(fxdata) bid ask 2006-04-03 03:30:00 27.21 27.26 2006-04-03 03:46:42 27.21 27.26 2006-04-03 03:46:54 27.25 27.26 2006-04

Re: [R] really strange problem - has to be logic but i can't find it

2006-10-27 Thread Gabor Grothendieck
problem - has to be logic but i can't find it zoo objects must have unique index values but the last two in the head output below are the same: head(fxdata) bid ask 2006-04-03 03:30:00 27.21 27.26 2006-04-03 03:46:42 27.21 27.26 2006-04-03 03:46:54 27.25 27.26 2006-04

Re: [R] really strange problem - has to be logic but i can't find it

2006-10-27 Thread Leeds, Mark \(IED\)
-Original Message- From: Gabor Grothendieck [mailto:[EMAIL PROTECTED] Sent: Friday, October 27, 2006 10:15 PM To: Leeds, Mark (IED) Cc: r-help@stat.math.ethz.ch Subject: Re: [R] really strange problem - has to be logic but i can't find it To make it unique one normally uses aggregate. Depending