Re: [R] IGCI implemented in R package ?

2022-11-23 Thread Jeff Newmiller
Ahhh, but _using_ it... there's the rub. Gotta learn about virtual environments or you could break the base python install. On November 23, 2022 9:17:07 AM PST, Bert Gunter wrote: >Well, see the 'reticulate' package and various support/hints for using it >via an rseek.org search, e.g. on 'R pyth

Re: [R] IGCI implemented in R package ?

2022-11-23 Thread Bert Gunter
Well, see the 'reticulate' package and various support/hints for using it via an rseek.org search, e.g. on 'R python packages'. This *might* enable you to use the python code. Or not -- you may have already considered this and found it unworkable. I can say for sure that installing python is simple

Re: [R] IGCI implemented in R package ?

2022-11-23 Thread varin sacha via R-help
Eric, I really thank you a lot for your response. However, if I am not wrong, it is implemented in python. The implementation is available on github; I would need an R wrapper. Does it exist ? Best Sacha Envoyé de mon iPhone > Le 21 nov. 2022 à 20:36, Eric Berger a écrit : > >  > Hi Sacha

[R] .BaseNamespaceEnv locking in non-interactive mode

2022-11-23 Thread Benjamin Tyner
Greetings, Noticed that starting with R version 4.1.0, the base environment is locked by default. So for example in interactive mode, we have > .BaseNamespaceEnv$foo <- "bar" Error in .BaseNamespaceEnv$foo <- "bar" :   cannot add binding of 'foo' to the base environment However it appears tha