Re: [Rd] base::format adds extraneous whitespace for some inputs

2019-06-20 Thread Sarah Goslee
1" and " 9.99" with an extraneous whitespace. > > My expected output for the second command is "9.99". > > I have not found anything explaining the whitespace in the help files. > Therefore, I am writing to report this behavior as a possible bug. > > Best w

Re: [Rd] a question about optim.R and optim.c in R

2014-07-07 Thread Sarah Goslee
#x27;args' parameter. I am not sure what is going on...Am I > missing something? > > Thanks much!!! > > Best, > > Zhiyuan > -- Sarah Goslee http://www.functionaldiversity.org __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel

Re: [Rd] ASCII art in function documentation?

2013-09-05 Thread Sarah Goslee
|' > | > | '+--+--+--+' > | > | '| 1/16 | 1/16 | 1/16 |' > | > | '+--+--+--+' > ` > > and when no empty lines were included obviously put everything behind > each other. > > My

Re: [Rd] ASCII art in function documentation?

2013-09-05 Thread Sarah Goslee
Now that I'm at the computer with my R code, I've used both \preformatted{} and \cr to force line breaks. Some combination of those may work for you. Sarah On Thu, Sep 5, 2013 at 11:10 AM, Rainer M Krug wrote: > Sarah Goslee writes: > >> Untested, but did you try wrapp

Re: [Rd] large dataset - confused

2012-07-23 Thread Sarah Goslee
rhaps) and so on. Also, what do you mean by "crash"? R stops working? You get an error message? Sarah -- Sarah Goslee http://www.functionaldiversity.org __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel

Re: [Rd] How to create arbitrary number of loops

2012-03-29 Thread Sarah Goslee
or" loops will be: > n<-10 > for (i in 1:(n-2)) > { > for (j in (i+1):(n-1)) > { > for (k in (j+1):n) > { > icc(cbind(DATA[,i],DATA[,j],DATA[,k])) > } > } > } > But how can I write a code if I need all m=2, 3, 4,... l

Re: [Rd] requesting a new SIG mailing list

2012-02-16 Thread Sarah Goslee
useful resource. Sarah On Thu, Feb 16, 2012 at 6:39 AM, Martin Maechler wrote: > Hi, > > I'm the "site maintainer" of the r-sig-...@r-project.org mailing > lists (and back from vacations). > >>>>>> Sarah Goslee >>>>>>     on Wed,

Re: [Rd] requesting a new SIG mailing list

2012-02-15 Thread Sarah Goslee
n alias option. I think ecology is a more inclusive term than environmental anyway, but then I'm an ecologist. Sarah -- Sarah Goslee http://www.functionaldiversity.org __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel

Re: [Rd] requesting a new SIG mailing list

2012-02-14 Thread Sarah Goslee
f 'R-sig-ecology' for the > year 2011, and I could only found one single mail related to hydrology: > > https://stat.ethz.ch/pipermail/r-sig-ecology/2011-July/002274.html > > (in the same search I couldn't find any single reference to hydrology in the > R

Re: [Rd] seq.Date bug?

2012-01-31 Thread Sarah Goslee
lt; en]) is given as an example, and it is not pointed out that this won't work for the 30th of the month. Normally one can extrapolate from patterns given in the examples, and here that isn't true. So perhaps the help should be modified slightly instead? Sarah -- Sarah Goslee http://

Re: [Rd] seq.Date bug?

2012-01-31 Thread Sarah Goslee
-01" "2011-03-29" "2011-04-29" "2011-05-29" [6] "2011-06-29" "2011-07-29" "2011-08-29" "2011-09-29" "2011-10-29" [11] "2011-11-29" "2011-12-29" > sessionInfo() R version 2.14.1 (2011-12-22) Platform: x86_64-redhat-linux-gnu (64-bit) locale: [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C [3] LC_TIME=en_US.UTF-8LC_COLLATE=en_US.UTF-8 [5] LC_MONETARY=en_US.UTF-8LC_MESSAGES=en_US.UTF-8 [7] LC_PAPER=C LC_NAME=C [9] LC_ADDRESS=C LC_TELEPHONE=C [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C attached base packages: [1] stats graphics grDevices utils datasets methods base loaded via a namespace (and not attached): [1] tools_2.14.1 -- Sarah Goslee http://www.functionaldiversity.org __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel

Re: [Rd] Undocumented functions

2011-12-15 Thread Sarah Goslee
the function preceding it by a dot. So, this > is not a real choice. > There are other way to reach my purpose? > > Thank you very much for help. > > Sincerely, > Nicola -- Sarah Goslee http://www.functionaldiversity.org __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel

Re: [Rd] broken save(..., compress="xy")

2011-09-23 Thread Sarah Goslee
    LC_TELEPHONE=C > [11] LC_MEASUREMENT=en_CA.UTF-8 LC_IDENTIFICATION=C > > attached base packages: > [1] stats     graphics  grDevices utils     datasets  methods   base > > > -- -- Sarah Goslee http://www.functionaldiversity.org __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel

Re: [Rd] nchar( NA )

2010-06-18 Thread Sarah Goslee
4:52 PM, Romain Francois wrote: > Hello, > > Is this expected ? > >> nchar( c( "", NA ) ) > [1] 0 2 > > Should not the second one be NA ? > > Romain > -- Sarah Goslee http://www.functionaldiversity.org