Re: [Rd] R-intro: function 'stderr' and 'sd'

2016-09-13 Thread Martin Maechler
> William Dunlap > on Tue, 13 Sep 2016 09:06:00 -0700 writes: > While you are editing that, you might change its name from 'stderr' > to standardError (or standard_error, etc.) so as not to conflict with > base::stderr(). oh yes.. blush! .. Martin > Bill Dunlap >

Re: [Rd] R-intro: function 'stderr' and 'sd'

2016-09-13 Thread William Dunlap via R-devel
While you are editing that, you might change its name from 'stderr' to standardError (or standard_error, etc.) so as not to conflict with base::stderr(). Bill Dunlap TIBCO Software wdunlap tibco.com On Tue, Sep 13, 2016 at 8:55 AM, Martin Maechler wrote: > > Suharto Anggono Suharto Anggono

Re: [Rd] R-intro: function 'stderr' and 'sd'

2016-09-13 Thread Martin Maechler
> Suharto Anggono Suharto Anggono via R-devel > on Fri, 9 Sep 2016 16:52:01 + writes: > In "An Introduction to R" Version 3.3.1, in "4.2 The function tapply() and ragged arrays", after > stderr <- function(x) sqrt(var(x)/length(x)) , > there is a note in brackets:

[Rd] R-intro: function 'stderr' and 'sd'

2016-09-09 Thread Suharto Anggono Suharto Anggono via R-devel
In "An Introduction to R" Version 3.3.1, in "4.2 The function tapply() and ragged arrays", after stderr <- function(x) sqrt(var(x)/length(x)) , there is a note in brackets: Writing functions will be considered later in [Writing your own functions], and in this case was unnecessary as R also has