search for: rpkg

Displaying 17 results from an estimated 17 matches for "rpkg".

Did you mean: pkg
2009 Oct 23
3
How to make R packages?
I found the following document on making R packages. But it is old. I'm wondering if there is more current ones and hopefully more complete ones. http://biosun1.harvard.edu/courses/individual/bio271/lectures/L6/Rpkg.pdf
2020 Oct 29
2
Something is wrong with the unserialize function
.... But I suppose we should be able to unserialize objects without preloading the library? This issue can be reproduced on Ubuntu with R version 4.0.2 (2020-06-22) and Windows with R Under development (unstable) (2020-09-03 r79126). Here is the link to simplemmap: https://github.com/ALTREP-examples/Rpkg-simplemmap Best, Jiefei [[alternative HTML version deleted]]
2019 Jul 30
2
Questions regarding ALTREP_SET_ELT APIs
Hi all, I'm wondering if there is any way to define a `SET_ELT` function for an ALTREP class? I see there are ` ALTINTEGER_SET_ELT` etc. functions exported in Rinternal.h, but there is no corresponding ALTREP APIs to define them. The only way to set the value of an ALTREP is through a pointer, which will require that the ALTREP data is in memory. Is it on purpose? Will there be any plan to
2017 Feb 06
0
Fwd: issue
Dear all, i contact you for an issue I encountered after a little time I didn't developed/checked packages at work. The issue I have is from R CMD check: > tools:::.check_packages() * using log directory ?/home/l/src/rpkg/lbmisc.Rcheck? * using R version 3.3.2 (2016-10-31) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using options ?--no-build-vignettes --as-cran? * checking for file ?lbmisc/DESCRIPTION? ... OK * this is package ?lbmisc? version ?0.3.0? * checking CRAN incoming feas...
2020 Oct 29
2
[External] Something is wrong with the unserialize function
...> without preloading the library? > > This issue can be reproduced on Ubuntu with R version 4.0.2 (2020-06-22) > and Windows with R Under development (unstable) (2020-09-03 r79126). > > Here is the link to simplemmap: > https://github.com/ALTREP-examples/Rpkg-simplemmap > > Best, > Jiefei > > [[alternative HTML version deleted]] > > ______________________________________________ > R-devel at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-devel > -- Luk...
2010 Nov 03
3
R package BibTex entries: looking for a more general solution
...ation(x) : no date field in DESCRIPTION file of package 'codetools' 2: In citation(x) : no date field in DESCRIPTION file of package 'gridBase' 3: In citation(x) : no date field in DESCRIPTION file of package 'iplots' > See: http://euclid.psych.yorku.ca/SCS/Private/Rbibs/Rpkg-test.pdf for the result of processing this .bib file with latex/bibtex using the jss.bst bibliography style I'm writing to R-Devel because the DESCRIPTION and inst/CITATION files in R packages provide the basic data used in citation() and any methods based on this, and yet the information i...
2019 Jul 30
0
[External] Questions regarding ALTREP_SET_ELT APIs
...for which MAYBE_REFERENCED is true, and the assumption in existing code is that duplicate returns an object that can safely be mutated. That places a lot of limitations on what can be done. You can see some notes on the issues in the README.md and the vignette in https://github.com/ALTREP-examples/Rpkg-mutable. Best, luke > Will there be > any plan to develop these ALTREP set element APIs? > > Best, > Jiefei > > [[alternative HTML version deleted]] > > ______________________________________________ > R-devel at r-project.org mailing list > https://stat.ethz.ch...
2020 Oct 29
0
[External] Something is wrong with the unserialize function
...to unserialize objects > without preloading the library? > > This issue can be reproduced on Ubuntu with R version 4.0.2 (2020-06-22) > and Windows with R Under development (unstable) (2020-09-03 r79126). > > Here is the link to simplemmap: > https://github.com/ALTREP-examples/Rpkg-simplemmap > > Best, > Jiefei > > [[alternative HTML version deleted]] > > ______________________________________________ > R-devel at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-devel > -- Luke Tierney Ralph E. Wareham Professor of Mathemat...
2009 Mar 01
0
R package.skeleton
...kage.skeleton("ohri") Creating directories ... Creating DESCRIPTION ... Creating Read-and-delete-me ... Saving functions and data ... Making help files ... Done. I am referring to this document for creating R packages now http://biosun1.harvard.edu/courses/individual/bio271/lectures/L6/Rpkg.pdf Could you please let me know how to create the package. Regards, Ajay On Sun, Mar 1, 2009 at 10:54 PM, Ajay ohri <ohri2007@gmail.com> wrote: > Dear List, > I am trying to create a R package and having some issues with setting the > path on a Windows XP . > > Could you...
2011 Jan 31
1
rj packages and eclipse
Hi everyone! Does anyone know how to install the rj package in Windows (7)? I am trying to set up eclipse, but I got [INFO] The R package 'rj' is not available, R-StatET tools cannot be initialized. Thank you in advance!
2020 Oct 29
0
[External] Something is wrong with the unserialize function
...the library? > > > > This issue can be reproduced on Ubuntu with R version 4.0.2 (2020-06-22) > > and Windows with R Under development (unstable) (2020-09-03 r79126). > > > > Here is the link to simplemmap: > > https://github.com/ALTREP-examples/Rpkg-simplemmap > > > > Best, > > Jiefei > > > > [[alternative HTML version deleted]] > > > > ______________________________________________ > > R-devel at r-project.org mailing list > > https://stat.ethz.ch/mailman/listin...
2016 Mar 04
3
vignette index
...t;a href="../../../library/bst/doc/mcl.Rnw">source</a></td> <td valign="top" style="white-space: nowrap"><a href="../../../library/bst/doc/mcl.R">R code</a></td></tr> </table> </body></html> ../../Rpkg/bst/inst/doc/index.html (END) **Connecticut Children's Confidentiality Notice** This e-mail message, including any attachments, is for t...{{dropped:8}}
2001 Dec 14
2
colSums in C
...)$z } void applysum(double *x, long *dx, long *mar, double *z) { long i, j; if (*mar==1) for(i=0; i<dx[0]; i++) for(j=0; j<dx[1]; j++) z[i] += x[i + dx[0]*j]; else for(j=0; j<dx[1]; j++) for(i=0; i<dx[0]; i++) z[j] += x[i + dx[0]*j]; } Possibly useful audit trail: agate|Rpkg> R SHLIB g.colSums/src/*.c /res/local/bin/gcc -I/res/local/lib/R/include -I/res/local/include -fPIC -g -O2 -c g.colSums/src/applyfilt.c -o g.colSums/src/applyfilt.o /res/local/bin/gcc -I/res/local/lib/R/include -I/res/local/include -fPIC -g -O2 -c g.colSums/src/applysum.c -o g.colSums/sr...
2018 Aug 09
4
SIGSEGV in R_RunWeakRefFinalizer, object allocated with Rcpp
On 9 August 2018 at 20:37, Tomas Kalibera wrote: | So to answer your original question, this could probably be handled in | Rcpp, Hm. Why do you say that / what did you have in mind? Recall that we do not alter SEXPs or introduce additional additional reference counters -- because we do not think that altering the basic R API for such calls would be a wise strategy. So we do more or less what
2019 May 16
3
ALTREP: Bug reports
Hello, I have encountered two bugs when using ALTREP APIs. 1. STDVEC_DATAPTR >From RInternal.h file it has a comment: /* ALTREP support */ > void *(STDVEC_DATAPTR)(SEXP x); However, this comment might not be true, the easiest way to verify it is to define a C++ function: void C_testFunc(SEXP a) > { > STDVEC_DATAPTR(a); > } and call it in R via > a=1:10 > >
2016 Aug 08
0
New package: ggghost 0.1.0 - Capture the spirit of your ggplot2 calls
Greetings, R users! I am pleased to announce the release of my first CRAN package: ggghost. https://cran.r-project.org/web/packages/ggghost https://github.com/jonocarroll/ggghost Features: - Minimal user-space overhead for implementation; p %g<% ggplot(dat, aes(x,y)) - ggplot2 components added to the plot object (p <- p + geom_point()) are stored in a list within p, and evaluation
2016 Aug 08
0
New package: ggghost 0.1.0 - Capture the spirit of your ggplot2 calls
Greetings, R users! I am pleased to announce the release of my first CRAN package: ggghost. https://cran.r-project.org/web/packages/ggghost https://github.com/jonocarroll/ggghost Features: - Minimal user-space overhead for implementation; p %g<% ggplot(dat, aes(x,y)) - ggplot2 components added to the plot object (p <- p + geom_point()) are stored in a list within p, and evaluation