Re: [Rd] Fixed BLAS tests for external BLAS library

2018-01-04 Thread Tomas Kalibera
In practical terms, failing tests are not preventing anyone from using an optimized BLAS/LAPACK implementation they trust. Building R with dynamically linked BLAS on Unix is supported, documented and easy for anyone who builds R from source. It is also how Debian/Ubuntu R packages are built

Re: [Rd] R CMD check warning about compiler warning flags

2018-01-04 Thread Juan Telleria
I repeat it for all the reason I gave to Duncan on a personal E-mail, It is a lot of text, and I might be wrong, but I attach it in case it is useful: A) I feel Version Control (SVN) is great when there is a little group of people maintaining the code (RCore ~ 20); but Git could allow a bigger

Re: [Rd] Community Feedback: Git Repository for R-Devel

2018-01-04 Thread Juan Telleria
Thank you Mark, this is what I was looking for. On Sunday I will read again in detail previous discussion's facts, and attach the pros and cons here, so that they remain for the future, and the topic can be closed. Juan El 4 ene. 2018 11:06 a. m., "Mark van der Loo"

Re: [Rd] silent recycling in logical indexing

2018-01-04 Thread William Dunlap via R-devel
I have never used this construct. However, part of my job is seeing how well CRAN packages work in our reimplementation of the R language and I am continually surprised by the inventiveness of package writers. Bill Dunlap TIBCO Software wdunlap tibco.com On Thu, Jan 4, 2018 at 1:44 PM, Ben

Re: [Rd] silent recycling in logical indexing

2018-01-04 Thread Berry, Charles
> On Jan 4, 2018, at 1:44 PM, Ben Bolker wrote: > > Chuck: I don't see how this example represents > incomplete/incommensurate recycling. It doesn't. I took your subject line to be the theme of your posting and `incommensurate lengths' to be an instance used to emphasize

Re: [Rd] silent recycling in logical indexing

2018-01-04 Thread Ben Bolker
PS I'm tempted to insert a warning at this point and see how often it actually gets triggered ... On Thu, Jan 4, 2018 at 4:44 PM, Ben Bolker wrote: > Hmm. > > Chuck: I don't see how this example represents > incomplete/incommensurate recycling. Doesn't TRUE replicate from >

Re: [Rd] silent recycling in logical indexing

2018-01-04 Thread Ben Bolker
Hmm. Chuck: I don't see how this example represents incomplete/incommensurate recycling. Doesn't TRUE replicate from length-1 to length-3 in this case (mat[c(TRUE,FALSE),2] would be an example of incomplete recycling)? William: clever, but maybe too clever unless you really need the speed? (The

Re: [Rd] silent recycling in logical indexing

2018-01-04 Thread Berry, Charles
> On Jan 4, 2018, at 11:56 AM, Ben Bolker wrote: > > > Sorry if this has been covered here somewhere in the past, but ... > > Does anyone know why logical vectors are *silently* recycled, even > when they are incommensurate lengths, when doing logical indexing? It is

Re: [Rd] silent recycling in logical indexing

2018-01-04 Thread William Dunlap via R-devel
One use case is when you want to extract every third item, starting with the second, of an arbitrary vector with x[c(FALSE, TRUE, FALSE)] instead of x[seq_along(x) %% 3 == 2] Bill Dunlap TIBCO Software wdunlap tibco.com On Thu, Jan 4, 2018 at 11:56 AM, Ben Bolker

Re: [Rd] Fixed BLAS tests for external BLAS library

2018-01-04 Thread Simon Guest
Hi Tomas, Thanks for your reply. I find your response curious, however. Surely the identical() test is simply incorrect when catering for possibly different BLAS implementations? Or is it the case that conformant BLAS implementations all produce bit-identical results, which seems unlikely?

[Rd] silent recycling in logical indexing

2018-01-04 Thread Ben Bolker
Sorry if this has been covered here somewhere in the past, but ... Does anyone know why logical vectors are *silently* recycled, even when they are incommensurate lengths, when doing logical indexing? This is as documented: For ‘[’-indexing only: ‘i’, ‘j’, ‘...’ can be logical

Re: [Bioc-devel] Issue with dependencies on Windows (tokay2)

2018-01-04 Thread Obenchain, Valerie
The missing Windows binaries for devel are a known issue and have been discussed several times on the list: https://stat.ethz.ch/pipermail/bioc-devel/2017-November/012340.html https://stat.ethz.ch/pipermail/bioc-devel/2017-November/012418.html The binaries have just become available in the past

Re: [R-pkg-devel] Portable method of stripping debug symbols

2018-01-04 Thread Thibault Vatter
No, we're preparing a new release which we'll submit in the next few days. On Thu, Jan 4, 2018 at 7:06 PM, Dirk Eddelbuettel wrote: > > On 4 January 2018 at 00:27, Thibault Vatter wrote: > | We faced a problem when we tried Dirk's solution for our package > | rvinecopulib:

Re: [R-pkg-devel] Portable method of stripping debug symbols

2018-01-04 Thread Dirk Eddelbuettel
On 4 January 2018 at 00:27, Thibault Vatter wrote: | We faced a problem when we tried Dirk's solution for our package | rvinecopulib: there is a strip binary on OS X but it doesn't work as the | linux one. | | As such, to avoid calling OS X's strip which doesn't work, we use: | | strippedLib:

Re: [R-pkg-devel] checking re-building of vignette outputs ... ERROR

2018-01-04 Thread Uwe Ligges
Either provide precomputed results somewhere for the computaional intensive parts or, if the former is not feasible, ask the CRAN team to special case you package so that vignettes are not executed on CRAN. Best, Uwe Ligges On 04.01.2018 09:29, Jernej Jevšenak wrote: Hello all, I invested

Re: [Bioc-devel] git help

2018-01-04 Thread Turaga, Nitesh
Hi Kevin, I have your package reset to this commit e3a8d2122a65305c478276e538faace277ea9ed6. Please check. You will need to overlay all the commits including the new release on top of this (RELEASE_3_6). If you have any questions further on this, please ask before pushing to Bioconductor.

Re: [Rd] Coping with non-standard evaluation in R program analysis

2018-01-04 Thread jan Vitek
Hi Evan, You may find some parts of what we are doing with genthat useful. Genthat is a tool for creating unit tests by recording argument and return values of calls. This is done by instrumentation of the source code. The git repo with the code is here https://github.com/PRL-PRG/genthat We

Re: [Rd] Community Feedback: Git Repository for R-Devel

2018-01-04 Thread Mark van der Loo
This question has been discussed before on this list: http://r.789695.n4.nabble.com/Why-R-project-source-code-is-not-on-Github-td4695779.html See especially Jeroen's answer. Best, Mark Op do 4 jan. 2018 om 01:11 schreef Juan Telleria : > UNBIASED FACTS: > • Bugzilla &

[R-pkg-devel] checking re-building of vignette outputs ... ERROR

2018-01-04 Thread Jernej Jevšenak
Hello all, I invested quite some time to create vignette for my r package dendroTools . It takes around 30 – 40 minutes to build this vignette, therefore I get an error on winbuilder. win-builder.r-project.org … * checking