Re: [R-pkg-devel] Retrieving versioned csv datasets for use in an R package

2025-02-14 Thread John Clarke
> create releases, upload and download files. Kudos to them ! > https://docs.ropensci.org/piggyback/ > > Best, > > Rafael Pereira > > On Fri, Feb 14, 2025 at 11:55 AM John Clarke < > john.cla...@cornerstonenw.com> wrote: > >> Hi folks, >> >> I've look

[R-pkg-devel] Retrieving versioned csv datasets for use in an R package

2025-02-14 Thread John Clarke
ttps://r-universe.dev/ as an option as well. In any case, what is the proper mechanism for retrieving/caching the data? Thanks, -John John Clarke | Senior Technical Advisor | Cornerstone Systems Northwest | john.cla...@cornerstonenw.com [[alternative HTML version deleted]] _

Re: [R-pkg-devel] Is it possible to install a pre-compiled R package from Github?

2025-02-03 Thread John Clarke
Ivan Krylov wrote: > В Tue, 28 Jan 2025 14:25:23 +0100 > John Clarke пишет: > > > I'm wondering if there is a way to point an R package installer to a > > pre-compiled release on Github rather than rely on CRAN. > > From the point of view of install.packages(), a re

Re: [R-pkg-devel] Rcpp: how best to include source from another Github repository

2025-02-03 Thread John Clarke
Thanks Dirk and others -- I see the tradeoffs now. In my case, I think a simple copy of source (just a few files), plus maybe some sort of commit/tag reference to indicate where/when the source is coming from. -John On Thu, Jan 23, 2025 at 3:47 PM Dirk Eddelbuettel wrote: > > On 21 January 2025

[R-pkg-devel] Is it possible to install a pre-compiled R package from Github?

2025-01-28 Thread John Clarke
to a Rcpp project I'm working on (so compiling C++), but I think the question is general enough that it can be asked on this list. Thank you, -John John Clarke | Senior Technical Advisor | Cornerstone Systems Northwest | john.cla...@cornerstonenw.com [[alternative HTML

Re: [R-pkg-devel] Rcpp: how best to include source from another Github repository

2025-01-23 Thread John Clarke
to have that submodule > included 'git submodule update --remote'). You'll find good > documentation about submodules online. > > Maybe that helps. > > Best Regards, > > Jonathan / BerriJ > > > On 1/21/25 11:57, John Clarke wrote: > > Hi folks, &

Re: [R-pkg-devel] Rcpp: how best to include source from another Github repository

2025-01-23 Thread John Clarke
ripts or patches folders have to be excluded from being > put into the package via the .Rbuildignore. > > On Wed, Jan 22, 2025, 2:33 PM John Clarke > wrote: > >> Thanks Ivan, this is helpful. I'll do some more research. It would be nice >> to have an Rcpp standard/

Re: [R-pkg-devel] Rcpp: how best to include source from another Github repository

2025-01-22 Thread John Clarke
Maybe with some sort of synlinking I could achieve this 'custom' folder/file mapping. -John On Tue, Jan 21, 2025 at 1:05 PM Ivan Krylov wrote: > В Tue, 21 Jan 2025 11:57:46 +0100 > John Clarke пишет: > > > Ideally, it would be nice to be able to pull the files from the >

[R-pkg-devel] Rcpp: how best to include source from another Github repository

2025-01-21 Thread John Clarke
sting before making commits in the original CLI repo. Is this possible? Recommended? (we can assume dev is on MacOS or Linux) Thanks, -John John Clarke | Senior Technical Advisor | Cornerstone Systems Northwest | john.cla...@cornerstonenw.com [[alternative HTML version de

Re: [R-pkg-devel] R-extension requirement about third-party random number generators (RNG)

2024-09-27 Thread John Clarke
Hi Dirk, Thanks very much for your thoughtful reply. This is a relief for me as my 'solution' for replacing the existing RNG in my C++ was convoluted and I couldn't see the advantage in doing so. Thank you for the search tip -- that is really helpful and I did not know that there was this kind of

[R-pkg-devel] R-extension requirement about third-party random number generators (RNG)

2024-09-27 Thread John Clarke
Hi folks, Reference from the manual: - Nor should the C++11 random number library be used nor any other third-party random number generators such as those in GSL.” I am working at wrapping an existing statistical model with RCPP so it can be used in R. The model is written in C++ and