Re: [Rd] Multiple Assignment built into the R Interpreter?

2023-03-13 Thread Duncan Murdoch
Yes, this is really a problem with the checks, not with the language. A simpler approach than your alternativeAssignment function would be simply to allow globalVariables() to be limited to a single function as the note in its help page says. This might be tedious to write by hand, but could

Re: [Rd] Multiple Assignment built into the R Interpreter?

2023-03-13 Thread Gabor Grothendieck
The gsubfn package can do that. library(gsubfn) # swap a and b without explicitly creating a temporary a <- 1; b <- 2 list[a,b] <- list(b,a) # get eigenvectors and eigenvalues list[eval, evec] <- eigen(cbind(1,1:3,3:1)) # get today's month, day, year

Re: [Rd] Adding support for S7 to base R

2023-03-13 Thread Ezra Tucker
I don't know if this is the right forum, but I'd like to ask an open-ended question about the goals of the S7 OOP system, which is, where do we see the ultimate future of object-oriented programming in R being? Do we see S7 eventually complementing S3 and S4 in "base" (in quotes because S4 is

Re: [Rd] scan(..., skip=1e11): infinite loop; cannot interrupt

2023-03-13 Thread Suharto Anggono Suharto Anggono via R-devel
With  if (!j--) {  R_CheckUserInterrupt();  j = 1;  } as in current R devel (r83976), j goes negative (-1) and interrupt is checked every 10001 instead of 1. I prefer  if (!--j) {  R_CheckUserInterrupt();  j = 1;  } . In current R devel (r83976), if EOF is 

Re: [Rd] Versioning Rtools ARP entries

2023-03-13 Thread Tomas Kalibera
On 3/13/23 17:31, Daniel Possenriede wrote: Hi, If I am not mistaken, all Rtools 4.2 (and 4.3) revisions have the same ARP [1] entries, i.e. all report version 4.2.0.1 (or 4.3.0.1). This makes it difficult to determine the installed version (is it possible to determine the installed

[Rd] Versioning Rtools ARP entries

2023-03-13 Thread Daniel Possenriede
Hi, If I am not mistaken, all Rtools 4.2 (and 4.3) revisions have the same ARP [1] entries, i.e. all report version 4.2.0.1 (or 4.3.0.1). This makes it difficult to determine the installed version (is it possible to determine the installed revision?) and impossible for tools like winget [2] to

[R-pkg-devel] OpenCL R packages on CRAN

2023-03-13 Thread quirin stier
Hi, I would like to ask what the current situation is regarding R packages for computations on the GPU. There are no more official CRAN packages using CUDA or OpenCL as foundation. There are only packages providing either access to OpenCL, tensorflow or similar and packages using directives in

Re: [R-pkg-devel] OpenCL R packages on CRAN

2023-03-13 Thread Uwe Ligges
On 13.03.2023 11:43, quirin stier wrote: Hi, I would like to ask what the current situation is regarding R packages for computations on the GPU. There are no more official CRAN packages using CUDA or OpenCL as foundation. There are only packages providing either access to OpenCL, tensorflow

Re: [R-pkg-devel] OpenCL R packages on CRAN

2023-03-13 Thread Erin Hodgess
Hello! What about using WSL on Windows, please? Would that help? Thank you, Sincerely, Erin On Mon, Mar 13, 2023 at 5:25 AM Uwe Ligges wrote: > > > On 13.03.2023 11:43, quirin stier wrote: > > Hi, > > > > I would like to ask what the current situation is regarding R packages > > for

Re: [R-pkg-devel] URL timeout in win-builder check: suggestions?

2023-03-13 Thread Ivan Krylov
В Mon, 13 Mar 2023 10:28:13 -0400 Ben Bolker пишет: > Found the following (possibly) invalid URLs: >URL: https://phdcomics.com/comics/archive.php?comicid=905 > From: man/pvalues.Rd > Status: Error > Message: Operation timed out after 60010 milliseconds with 0 > bytes received

Re: [R-pkg-devel] URL timeout in win-builder check: suggestions?

2023-03-13 Thread Uwe Ligges
On 13.03.2023 15:28, Ben Bolker wrote:   I have a URL in my documentation that got a timeout error from win-builder, possibly because of some kind of service provider filtering of bots (I think there was a previous issue with Cloudflare links?)   I can get to it fine interactively/in a

[R-pkg-devel] URL timeout in win-builder check: suggestions?

2023-03-13 Thread Ben Bolker
I have a URL in my documentation that got a timeout error from win-builder, possibly because of some kind of service provider filtering of bots (I think there was a previous issue with Cloudflare links?) I can get to it fine interactively/in a browser. This link is a harmless bit of

[Bioc-devel] Bioconductor 3.17 Release Schedule

2023-03-13 Thread Kern, Lori
The Bioconductor Release 3.17 Schedule has been posted and is tentatively scheduled for Wednesday April 26. This date is subject to change. Bioconductor 3.17 will use R-4.3 scheduled to be release Friday April 21. Important deadlines can be found on the website