Re: [Rd] SET_TYPEOF no longer allowed, how should I call R from within C?

2024-06-25 Thread Matthew Fidler
Thank yiou On Tue, Jun 25, 2024, 3:57 PM Duncan Murdoch wrote: > On 2024-06-25 5:25 a.m., Matthew Fidler wrote: > > Hi, > > > > I have adapted code to run R from within C from the writing R extensions > > here > > > > > https://colinfay.me/writing-r-extensions/system-and-foreign-language-interfa

Re: [Rd] [External] Non-API updates

2024-06-25 Thread Dirk Eddelbuettel
On 25 June 2024 at 12:25, Josiah Parry wrote: | Is there a link you can provide regarding the "Moving into C compliance?" It | cannot be found at https://cran.r-project.org/doc/manuals/R-exts.html. https://rstudio.github.io/r-manuals/r-exts/The-R-API.html#moving-into-c-api-compliance That's the

Re: [Rd] [External] Non-API updates

2024-06-25 Thread Tim Taylor
On 25/06/2024 17:25, Josiah Parry wrote: With respect to NOTES and WARN on CRAN, these do not result in any package maintainer notifications. The only notification that the developers receive is the threatening one that states that the packages will be removed from CRAN with a very short timeli

Re: [Rd] [External] Non-API updates

2024-06-25 Thread J C Nash
It is probably important to note that the WRE with the new section on C API compliance is in the R-Devel docs, not the current ones. JN On 2024-06-25 12:10, luke-tierney--- via R-devel wrote: On Tue, 25 Jun 2024, Josiah Parry wrote: Hey folks, I'm sure many of you all woke to the same messa

Re: [Rd] [External] Non-API updates

2024-06-25 Thread J C Nash
On 2024-06-25 12:25, Josiah Parry wrote: "Stop using them" is pithy advice but far easier said than done! With respect to NOTES and WARN on CRAN, these do not result in any package maintainer notifications. The only notification that the developers receive is the threatening one that states t

Re: [Rd] [External] Non-API updates

2024-06-25 Thread Tomas Kalibera
On 6/25/24 18:25, Josiah Parry wrote: "Stop using them" is pithy advice but far easier said than done! With respect to NOTES and WARN on CRAN, these do not result in any package maintainer notifications. The only notification that the developers receive is the threatening one that states that

Re: [Rd] [External] Non-API updates

2024-06-25 Thread Josiah Parry
"Stop using them" is pithy advice but far easier said than done! With respect to NOTES and WARN on CRAN, these do not result in any package maintainer notifications. The only notification that the developers receive is the threatening one that states that the packages will be removed from CRAN wit

Re: [Rd] [External] Non-API updates

2024-06-25 Thread luke-tierney--- via R-devel
On Tue, 25 Jun 2024, Josiah Parry wrote: Hey folks, I'm sure many of you all woke to the same message I did: "Please correct before 2024-07-09 to safely retain your package on CRAN" caused by Non-API changes to CRAN. This is quite unexpected as Luke Tierney's June 6th email writes (emphasis mi

Re: [Rd] SET_TYPEOF no longer allowed, how should I call R from within C?

2024-06-25 Thread Duncan Murdoch
On 2024-06-25 5:25 a.m., Matthew Fidler wrote: Hi, I have adapted code to run R from within C from the writing R extensions here https://colinfay.me/writing-r-extensions/system-and-foreign-language-interfaces.html That was written in 2017. You should use the one that came with R, or even be

[Rd] Non-API updates

2024-06-25 Thread Josiah Parry
Hey folks, I'm sure many of you all woke to the same message I did: "Please correct before 2024-07-09 to safely retain your package on CRAN" caused by Non-API changes to CRAN. This is quite unexpected as Luke Tierney's June 6th email writes (emphasis mine): "An *experimental* *effort* is underw

Re: [Rd] Creating a text-based device/output format

2024-06-25 Thread Ivan Krylov via R-devel
В Tue, 25 Jun 2024 09:42:59 + David McArthur пишет: > ggplot(data, aes(x=body_mass_g,fill = species)) + > geom _histogram() > > Could output something like: > > title "The body mass (g) of penguin species" > x-axis "Body mass (g)" 3000 --> 5550 > y-axis "Count" 0 --> 2 > histogram > Ade

Re: [Rd] SET_TYPEOF no longer allowed, how should I call R from within C?

2024-06-25 Thread Tomas Kalibera
On 6/25/24 11:25, Matthew Fidler wrote: Hi, I have adapted code to run R from within C from the writing R extensions here https://colinfay.me/writing-r-extensions/system-and-foreign-language-interfaces.html As a more comprehensive example of constructing an R call in C code and evaluating, c

[Rd] SET_TYPEOF no longer allowed, how should I call R from within C?

2024-06-25 Thread Matthew Fidler
Hi, I have adapted code to run R from within C from the writing R extensions here https://colinfay.me/writing-r-extensions/system-and-foreign-language-interfaces.html As a more comprehensive example of constructing an R call in C code and evaluating, consider the following fragment of printAttri