> Thank you for your comments! But, what you wrote is known. What do you
> want to express with regard to my questions?
> 
> I wrote:
> > … there is no appropriate format ...,
> > although "weeks" is a legitimate unit of 'difftime':
> >
> >     > as.difftime("12 w", "%...")
> >
> >     > as.difftime("12 weeks")
> >     Time difference of 12 weeks
> >
> >     1. What do you think about making the behavior of 'as.difftime' more
> >   consistent by accepting also formats for "days" and "weeks"?

as.difftime calls strptime to apply the format argument.

If I  wanted to extend the range of formats as.difftime accepts, I'd leave 
as.difftime alone and look at how strptime could be extended to cover the 
formats you envisage.

But... I wouldn’t do that either. strptime is essentially a call to an 
.Internal function and very likely reliant on established  C code for the 
already very flexible standard C function strptime, which strptime clearly 
mirrors intentionally. That usually makes things dangerous to tinker with in 
the short term and hard to maintain in the long term.

So  if you want to do something that will readily convert all combinations of 
things like '12 w', '12W', '12wks', '3m 2d', 1wk 2d', '18d' etc, write that as 
a stand-alone routine that converts those 'simple' formats directly to difftime 
objects and call it something like 'strpdifftime', which would allow it to be 
added (if it's wanted a lot) with minimal impact to existing code.

S Ellison




*******************************************************************
This email and any attachments are confidential. Any use, copying or
disclosure other than by the intended recipient is unauthorised. If 
you have received this message in error, please notify the sender 
immediately via +44(0)20 8943 7000 or notify postmas...@lgcgroup.com 
and delete this message and any copies from your computer and network. 
LGC Limited. Registered in England 2991879. 
Registered office: Queens Road, Teddington, Middlesex, TW11 0LY, UK
______________________________________________
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel

Reply via email to