Re: [Rd] readRDS and saveRDS

2011-10-19 Thread Simon Urbanek
On Oct 18, 2011, at 8:32 PM, Hervé Pagès wrote: On 11-10-18 04:00 PM, Kevin Wright wrote: Hadley, Any chance of changing fun.aggregate to FUN and value_var to value.var? aggregate(.., FUN, ...) acast(..., fun.aggregate, ...) cast(..., value.var) acast(..., value_var) Side note:

Re: [Rd] readRDS and saveRDS

2011-10-19 Thread Joris Meys
2011/10/19 Simon Urbanek simon.urba...@r-project.org: I'd like to collect as many such ideas as possible so we don't forget something in unlikely case Aleph gets off the ground. :) Thanks, Simon Simon, From our department : Yes, You Can! Give us an A Give us an L Give us an E Give us a

Re: [Rd] readRDS and saveRDS

2011-10-19 Thread Kevin R. Coombes
I have no idea what aleph is now or is likely to become. If I follow your URL for the mailing list and click on the archives link, it tells me that there are no posts and the archive is empty, which makes it rather difficult to find out what aleph is (or why I should care). Perhaps there is

Re: [Rd] readRDS and saveRDS

2011-10-19 Thread Joris Meys
You find some (very brief) information here : http://www.rforge.net/mediawiki/index.php/Aleph Cheers Joris On Wed, Oct 19, 2011 at 4:08 PM, Kevin R. Coombes kevin.r.coom...@gmail.com wrote: I have no idea what aleph is now or is likely to become. If I follow your URL for the mailing list and

[Rd] readRDS and saveRDS

2011-10-18 Thread Hadley Wickham
Hi all, Is there any chance that readRDS and saveRDS might one day become read.rds and write.rds? That would make them more consistent with the other reading and writing functions. Hadley -- Assistant Professor / Dobelman Family Junior Chair Department of Statistics / Rice University

Re: [Rd] readRDS and saveRDS

2011-10-18 Thread Jeffrey Ryan
I'd second this. Though my thinking was to add writeRDS instead of saveRDS. Jeff On Tue, Oct 18, 2011 at 8:37 AM, Hadley Wickham had...@rice.edu wrote: Hi all, Is there any chance that readRDS and saveRDS might one day become read.rds and write.rds?  That would make them more consistent

Re: [Rd] readRDS and saveRDS

2011-10-18 Thread Duncan Murdoch
On 18/10/2011 9:37 AM, Hadley Wickham wrote: Hi all, Is there any chance that readRDS and saveRDS might one day become read.rds and write.rds? That would make them more consistent with the other reading and writing functions. Ending names in .foo is a bad idea because of the S3 naming

Re: [Rd] readRDS and saveRDS

2011-10-18 Thread Hadley Wickham
Is there any chance that readRDS and saveRDS might one day become read.rds and write.rds?  That would make them more consistent with the other reading and writing functions. Ending names in .foo is a bad idea because of the S3 naming conventions, so I think this is unlikely.  But you can

Re: [Rd] readRDS and saveRDS

2011-10-18 Thread Jeffrey Ryan
As load involves a side-effect, I would think that loadRDS is a bad idea. That said, read/write is far more consistent across all languages and internally with R than read/save is. My (worthless) vote is for writeRDS. Jeff On Tue, Oct 18, 2011 at 11:37 AM, Hadley Wickham had...@rice.edu wrote:

Re: [Rd] readRDS and saveRDS

2011-10-18 Thread Gavin Simpson
On Tue, 2011-10-18 at 08:37 -0500, Hadley Wickham wrote: Hi all, Is there any chance that readRDS and saveRDS might one day become read.rds and write.rds? That would make them more consistent with the other reading and writing functions. Hadley I would hope not. Those would then look

Re: [Rd] readRDS and saveRDS

2011-10-18 Thread Duncan Murdoch
On 18/10/2011 12:37 PM, Hadley Wickham wrote: Is there any chance that readRDS and saveRDS might one day become read.rds and write.rds? That would make them more consistent with the other reading and writing functions. Ending names in .foo is a bad idea because of the S3 naming

Re: [Rd] readRDS and saveRDS

2011-10-18 Thread Geoff Jentry
On Tue, 18 Oct 2011, Hadley Wickham wrote: * read.csv and write.csv * load and save * readRDS and saveRDS Even loadRDS/saveRDS or readRDS/writeRDS would be better than the current combo. You could change the CSV functions to readCSV and writeCSV :)

Re: [Rd] readRDS and saveRDS

2011-10-18 Thread Joshua Wiley
On Tue, Oct 18, 2011 at 9:34 AM, Duncan Murdoch murdoch.dun...@gmail.com wrote: On 18/10/2011 9:37 AM, Hadley Wickham wrote: Hi all, Is there any chance that readRDS and saveRDS might one day become read.rds and write.rds?  That would make them more consistent with the other reading and

Re: [Rd] readRDS and saveRDS

2011-10-18 Thread Hadley Wickham
Ending names in .foo is a bad idea because of the S3 naming conventions, so I think this is unlikely.  But you can always create an alias yourself... I always thought that S3 was part of the reason for read.ext write.ext. In: /path/file.ext the class of the file is ext.  I kind of like the

Re: [Rd] readRDS and saveRDS

2011-10-18 Thread Kevin Wright
Hadley, Any chance of changing fun.aggregate to FUN and value_var to value.var? aggregate(.., FUN, ...) acast(..., fun.aggregate, ...) cast(..., value.var) acast(..., value_var) Side note: My fantasy for R 3.0 would be to fix the obvious inconsistencies in function names/arguments, use Roxygen

Re: [Rd] readRDS and saveRDS

2011-10-18 Thread Hervé Pagès
On 11-10-18 04:00 PM, Kevin Wright wrote: Hadley, Any chance of changing fun.aggregate to FUN and value_var to value.var? aggregate(.., FUN, ...) acast(..., fun.aggregate, ...) cast(..., value.var) acast(..., value_var) Side note: My fantasy for R 3.0 would be to fix the obvious