Re: [R] Asking about R "Security" ..

2023-05-17 Thread CALUM POLWART
Chris replied off list to say he hadn't directed the OP to NHS R Community so it seems prudent to point a link here for eternity -- because there will be another NHS Security Audit with questions that don't fit R properly and the guys in the community may be best placed to answer them Linky:

Re: [R] Recombining Mon and Year values

2023-05-17 Thread Eric Berger
An alternative that does not use the zoo package but uses the built-in constant month.abb df1 <- data.frame(Year = c(2021, 2021, 2021), Mon = c("Mar", "Jan", "Apr")) df1$mon_year <- df1$Year*100 + sapply(df1$Mon, \(x) match(x,month.abb)) sort(df1$mon_year) On Wed, May 17,

Re: [R] Asking about R "Security" ..

2023-05-17 Thread CALUM POLWART
Chris Presumably you've also pointed her to the NHS R community and in particular is slack group? There are so many variables in what was even being asked it's going to take some time to work through, did the mean R or R Studio or R Studio Cloud... Before any packages.. On Wed, 17 May 2023,

Re: [R] mclapply enters into an infinite loop....

2023-05-17 Thread akshay kulkarni
Dear Jeff, There was a problem in LYGH and lapply threw an error, but mclapply got stuck in an infinite loop. The doc for mclapply says that mclapply runs under try() with silent = TRUE. So that means mclapply should run properly, i.e output a try class object and exit. But it

Re: [R] R Tools Security Posture

2023-05-17 Thread Marc Schwartz via R-help
Hi, An additional resource that was not listed below is the R Software Development Life Cycle (SDLC) document that is available here:   https://www.r-project.org/certification.html which addresses a subset of the issues raised. Regards, Marc Schwartz On May 17, 2023 at 4:52:27 AM, Ivan

Re: [R] Asking about R "Security" ..

2023-05-17 Thread Chris Evans via R-help
Fortune nomination (if trimmed a little) ... thanks to Martin, Ivan and so many others who never cease to teach me things here! (As an ex-NHS person who has used R for countless centuries, slowly less awfully courtesy of this list and other angeles, I contacted Ms Majid off list to see if I

[R] Asking about R "Security" ..

2023-05-17 Thread Martin Maechler
> Ivan Krylov > on Wed, 17 May 2023 11:52:27 +0300 writes: > В Tue, 16 May 2023 13:47:19 + > "MAJID, Ayesha \(NHS ENGLAND - X26\) via R-help" [ . ] [ . ] [ .. helpful & useful answers / pointers to public information .. ] [ . ] [

Re: [R] R Tools Security Posture

2023-05-17 Thread Ivan Krylov
В Tue, 16 May 2023 13:47:19 + "MAJID, Ayesha \(NHS ENGLAND - X26\) via R-help" пишет: > * When was the application last updated? > * How often is it updated? This information is publicly available at by looking for "Release plans". You can reach

[R] R Tools Security Posture

2023-05-17 Thread MAJID, Ayesha (NHS ENGLAND - X26) via R-help
Hi Hope you are well. I work for NHS England and I have been asked to conduct a security review of R, I am unable to locate information around the security posture of R. Would someone please be able to direct me to the correct page or alternatively answer the questions below: * When