Re: [R] Converting date format

2010-03-24 Thread Muhammad Rahiz

The following functions may help;

strptime()
ISOdate()


Muhammad





Hosack, Michael wrote:

R community:

Hello, I would to like to convert a character date variable from %m/%d/%Y to 
%m/%d/%y. Any advice would be greatly appreciated. I have tried functions for 
changing the formatting and removing the unnecessary digits without success.

Mike

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.



__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


[R] Converting date format

2010-03-23 Thread Hosack, Michael
R community:

Hello, I would to like to convert a character date variable from %m/%d/%Y to 
%m/%d/%y. Any advice would be greatly appreciated. I have tried functions for 
changing the formatting and removing the unnecessary digits without success.

Mike

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Converting date format

2010-03-23 Thread Nutter, Benjamin
If x is your vector of character date variables:

orig.date - as.Date(x, format=c(%m/%d/%Y))
new.date - format(x, format=c(%m/%d/%y))

-Original Message-
From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org]
On Behalf Of Hosack, Michael
Sent: Tuesday, March 23, 2010 10:11 AM
To: R-help@r-project.org
Subject: [R] Converting date format

R community:

Hello, I would to like to convert a character date variable from
%m/%d/%Y to %m/%d/%y. Any advice would be greatly appreciated. I have
tried functions for changing the formatting and removing the unnecessary
digits without success.

Mike

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide
http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


===

P Please consider the environment before printing this e-mail

Cleveland Clinic is ranked one of the top hospitals
in America by U.S.News  World Report (2009).  
Visit us online at http://www.clevelandclinic.org for
a complete listing of our services, staff and
locations.


Confidentiality Note:  This message is intended for use\...{{dropped:13}}

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Converting date format

2010-03-23 Thread jim holtman
try this:

 x - c('1/1/1970','12/13/2010', '2/3/2001')
 gsub((\\d+/\\d+/)\\d\\d(\\d\\d file://d+///d+/)//d//d(//d//d), 
 \\1\\2file://0.0.0.1//2,
x)
[1] 1/1/70   12/13/10 2/3/01


On Tue, Mar 23, 2010 at 10:10 AM, Hosack, Michael mhos...@state.pa.uswrote:

 R community:

 Hello, I would to like to convert a character date variable from %m/%d/%Y
 to %m/%d/%y. Any advice would be greatly appreciated. I have tried functions
 for changing the formatting and removing the unnecessary digits without
 success.

 Mike

 __
 R-help@r-project.org mailing list
 https://stat.ethz.ch/mailman/listinfo/r-help
 PLEASE do read the posting guide
 http://www.R-project.org/posting-guide.htmlhttp://www.r-project.org/posting-guide.html
 and provide commented, minimal, self-contained, reproducible code.




-- 
Jim Holtman
Cincinnati, OH
+1 513 646 9390

What is the problem that you are trying to solve?

[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.