Re: [R] "%d/%m/%Y" can not be displayed in a .rd file

2010-01-07 Thread Duncan Murdoch
On 07/01/2010 2:09 PM, rusers.sh wrote: Hi all, I found the date format (e.g."%d/%m/%Y") in the .rd file cannot be displayed after building the package. See below, ###.rd file \examples{ a<-"10/20/1999" DateConversion(a,DateIn="%m/%d/%Y",DateOut="%d/%m/%Y") } The result is Examples

Re: [R] "%d/%m/%Y" can not be displayed in a .rd file

2010-01-07 Thread rusers.sh
Solved. Thanks a lot. 2010/1/7 Duncan Murdoch > On 07/01/2010 2:09 PM, rusers.sh wrote: > >> Hi all, >> I found the date format (e.g."%d/%m/%Y") in the .rd file cannot be >> displayed after building the package. See below, >> ###.rd file >> \examples{ >> a<-"10/20/1999" >> DateConversion(a,

Re: [R] "%d/%m/%Y" can not be displayed in a .rd file

2010-01-07 Thread Nutter, Benjamin
roject.org [mailto:r-help-boun...@r-project.org] On Behalf Of rusers.sh Sent: Thursday, January 07, 2010 2:09 PM To: r-help@r-project.org Subject: [R] "%d/%m/%Y" can not be displayed in a .rd file Hi all, I found the date format (e.g."%d/%m/%Y") in the .rd file cannot be d

[R] "%d/%m/%Y" can not be displayed in a .rd file

2010-01-07 Thread rusers.sh
Hi all, I found the date format (e.g."%d/%m/%Y") in the .rd file cannot be displayed after building the package. See below, ###.rd file \examples{ a<-"10/20/1999" DateConversion(a,DateIn="%m/%d/%Y",DateOut="%d/%m/%Y") } The result is Examples: a<-"10-20-1999" DateConversion