[R] Document Paths in R.app

2021-06-30 Thread Andrew Simmons
Hello, I've been writing a package that allows a script to know its path, and I've been struggling to get it working for 'R.app' on macOS. For 'Rgui' on Windows, I used 'utils::getWindowsHandles' to get the script's path [image: image.png] but it's only on Windows, and even if it wasn't, it seem

Re: [R] Finding the package providing funtion "%du%"

2021-06-30 Thread Federico Calboli
> On 30 Jun 2021, at 13:59, Eric Berger wrote: > > > ??'%du%' > > shows it is in the igraph package (disjoint union) damn, you are correct, I failed to load igraph itself before running the demo, hence why the demo did not find the function… At least I can feel stupid in public on the r-hel

Re: [R] Finding the package providing funtion "%du%"

2021-06-30 Thread Enrico Schumann
On Wed, 30 Jun 2021, Federico Calboli writes: > Hello All, > > I am playing with igraph (which seems to work for what I have used it). > Nevetheless: > > demo('community', package="igraph") > > > > demo(community) > ~ > > Type to start : > >> pause <- function

Re: [R] Finding the package providing funtion "%du%"

2021-06-30 Thread Eric Berger
> ??'%du%' shows it is in the igraph package (disjoint union) On Wed, Jun 30, 2021 at 1:03 PM Federico Calboli < federico.calb...@kuleuven.be> wrote: > Hello All, > > I am playing with igraph (which seems to work for what I have used it). > Nevetheless: > > demo('community', package="igraph")

[R] Finding the package providing funtion "%du%"

2021-06-30 Thread Federico Calboli
Hello All, I am playing with igraph (which seems to work for what I have used it). Nevetheless: demo('community', package="igraph") demo(community) ~ Type to start : > pause <- function() {} > ### A modular graph has dense subgraphs > mod <- make_full_gra