Re: [R-pkg-devel] Macros in Rd files --- supplementary question ...

2017-11-10 Thread Ege Rubak
Hi Rolf, Another place to look for macros in Rd files would be in the spatstat package which I know you are quite familiary with ;-) However, I think our macros are plain LaTeX without calls to \Sexpr so it may behave differently than the case at hand. Cheers, Ege On 11/10/2017 02:00 AM, Rolf

Re: [R-pkg-devel] Macros in Rd files.

2017-11-10 Thread Georgi Boshnakov
>http://developer.r-project.org/parseRd.pdf I would add that it is best to think of "Rd markup" as a subset of TeX/LaTeX markup (with some extentions) defined in "Writing R Extensions" and Duncan's reference above. The "subset" is important - if a feature is not mentioned in these references,

[R-pkg-devel] Using another package's method that isn't exported

2017-11-10 Thread Stuart Lacy
Hi, Yesterday I released the initial submission of my package 'epitab' to CRAN https://cran.r-project.org/web/packages/epitab/index.html. On my PC and on win_builder it passed CMD CHECK without any notes, warnings, or submissions. However,  the built version has a note on some architectures,

Re: [R-pkg-devel] Using another package's method that isn't exported

2017-11-10 Thread Georgi Boshnakov
Hi, Presumably, you have imported 'confint' from 'stats'. Just import something from MASS, e.g 'ginv': importFrom(MASS,ginv) or choose something else by studying the output of ls(asNamespace("MASS")). Similarly import something from xml2. Note that "IMPORTS" in DESCRIPTION ensures that the p

Re: [R-pkg-devel] issues with SOfun - package upload

2017-11-10 Thread LUCA BELMONTE
Hi Dason, I wrote it from scratch. Thank you for the suggestion though, Luca 2017-11-09 17:17 GMT+01:00 Dason Kurkiewicz : > Did you write it from scratch or modify the function from the package > you were referencing? There may be some licensing issues you need to > consider either way. > >

[R-pkg-devel] R package with Java issue, out of mem heap error

2017-11-10 Thread Cho, In-Ho [CCE E]
Dear R developers: My group are facing a problem while using an R package of extream random trees. Using a slightly large data set (13000 rows×27 columns), the R package, specifically at the prediction task, aborts with error message like "Java outofmem .. heap...". I tested this on both Macpr

Re: [R-pkg-devel] R package with Java issue, out of mem heap error

2017-11-10 Thread MTurgeon
Hello, This sounds like a problem you should discuss with/report to the maintainer of the particular package you are using, and you can get their email address from the DESCRIPTION file. Cheers, Max On 2017-11-10 07:23 AM, Cho, In-Ho [CCE E] wrote: Dear R developers: My group are facing

Re: [R-pkg-devel] Macros in Rd files --- supplementary question.

2017-11-10 Thread Rolf Turner
On 10/11/17 09:29, Rolf Turner wrote: On 09/11/17 23:40, Duncan Murdoch wrote: On 09/11/2017 5:06 AM, Uwe Ligges wrote: Note the % may be a comment? Yes, and the body should be written in Rd markup, not R.  Working out the appropriate number of escapes is painful; I recommend trial and er