Re: [R] Date seq question

2012-01-21 Thread jim holtman
Here is another way: > date <- + c("9/22/2011","9/23/2011","9/26/2011","9/27/2011","9/28/2011","9/29/2011","9/30/2011","10/17/2011", + "10/18/2011","10/19/2011","10/20/2011","10/21/2011","10/24/2011","10/25/2011","10/26/2011","11/17/2011","11/18/2011","11/21/2011","11/22/2011","11/23/2011","11/2

Re: [R] Date seq question

2012-01-21 Thread Gabor Grothendieck
On Sat, Jan 21, 2012 at 5:20 PM, Gabor Grothendieck wrote: > On Fri, Jan 20, 2012 at 12:12 PM, cameron wrote: >> Can anyone please help me with this? >> I have a list of business dates.  What I want is to have last day of last >> month and paste them on next month. >> >> What i have              

Re: [R] Date seq question

2012-01-21 Thread Gabor Grothendieck
On Fri, Jan 20, 2012 at 12:12 PM, cameron wrote: > Can anyone please help me with this? > I have a list of business dates.  What I want is to have last day of last > month and paste them on next month. > > What i have                        What i want > 5725 2011-09-22 > 5726 2011-09-23 > 5727 20

Re: [R] Date seq question

2012-01-20 Thread cameron
Thanks Michael and Brian Thanks for your time. -- View this message in context: http://r.789695.n4.nabble.com/Date-seq-question-tp4313861p4314793.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list https:

Re: [R] Date seq question

2012-01-20 Thread Brian Diggs
On 1/20/2012 9:12 AM, cameron wrote: Can anyone please help me with this? I have a list of business dates. What I want is to have last day of last month and paste them on next month. What i haveWhat i want 5725 2011-09-22 5726 2011-09-23 5727 2011-09-26 5728 2011-09-27 5

Re: [R] Date seq question

2012-01-20 Thread R. Michael Weylandt
Try this: date <- c("9/22/2011","9/23/2011","9/26/2011","9/27/2011","9/28/2011","9/29/2011","9/30/2011","10/17/2011", "10/18/2011","10/19/2011","10/20/2011","10/21/2011","10/24/2011","10/25/2011","10/26/2011","11/17/2011","11/18/2011","11/21/2011","11/22/2011","11/23/2011","11/25/2011","11/28/201

[R] Date seq question

2012-01-20 Thread cameron
Can anyone please help me with this? I have a list of business dates. What I want is to have last day of last month and paste them on next month. What i haveWhat i want 5725 2011-09-22 5726 2011-09-23 5727 2011-09-26 5728 2011-09-27 5729 2011-09-28 5730 2011-09-29 5731 201