Basic #guix question:
If I do
$ guix install r r-dplyr
$ R
> library(dplyr)
That should work right? R should see the dplyr library.
I keep feeling I’m holding it wrong. I just want to be able to slap some ad hoc data analysis together in R
Basic #guix question:
If I do
$ guix install r r-dplyr
$ R
> library(dplyr)
That should work right? R should see the dplyr library.
I keep feeling I’m holding it wrong. I just want to be able to slap some ad hoc data analysis together in R
Surely guix shell isn't the only way to do it (I'm hoping to do some quick analysis in Emacs org-mode)
@otfrom if you're in emacs, there is ESS. In that, M-x R brings up an R command line.
@otfrom I have not a clue about what I’m doing, but
guix shell -C r r-dplyr -- R
opens an R shell, then
library(dplyr)
returns
> library(dplyr)
Attaching package: ‘dplyr’
The following objects are masked from ‘package:stats’:
filter, lag
The following objects are masked from ‘package:base’:
intersect, setdiff, setequal, union
Is that correct ?