Re: [R-pkg-devel] Undocumented code objects: '.__global__'

2023-07-21 Thread Johannes Ranke
Am Freitag, 21. Juli 2023, 09:47:52 CEST schrieb Ivan Krylov: > On Fri, 21 Jul 2023 09:43:49 +0200 > > Johannes Ranke wrote: > > * checking for missing documentation entries ... WARNING > > > > Undocumented code objects: > > '.__global__' > &g

[R-pkg-devel] Undocumented code objects: '.__global__'

2023-07-21 Thread Johannes Ranke
Dear all, while preparing a maintenance release of a dated package of mine, I was struck by this WARNING from the R-devel version of win-builder: * checking for missing documentation entries ... WARNING Undocumented code objects: '.__global__' I don't understand where this code object '__glob

[R-pkg-devel] Slow down in R 4.2.x

2022-07-01 Thread Johannes Ranke
Dear list, independent of the thread on this list about slow examples on R 4.2 on windows I have discovered over the last few days that some of my benchmarks (look for t4 and t9) run by a factor of 3 slower on R 4.2.x than on R 4.1.3 [1]. This is on Linux, using my own backported R packages for

Re: [R-pkg-devel] Avoid reprocessing Rmd vignette

2018-03-20 Thread Johannes Ranke
... > The idea exposed by Dirk is the same: requireNamespace will find the > package on CRAN and will set eval=TRUE. What you want though is to > avoid running a chunk on CRAN, even if the package is available. So > you need to set eval=FALSE *unconditionally*. Or conditional on the package versi

Re: [R-pkg-devel] R package test breakage catch 22

2017-05-01 Thread Johannes Ranke
> how does one solve this catch-22? I see these possibilities a) reduce the precision of the tests in A, so the test passes with both versions of B b) a submission of both packages at the same time, with a message in the comments, explaining to CRAN why it is necessary that both are published

[R-pkg-devel] NEWS.Rd and NEWS.md

2016-11-01 Thread Johannes Ranke
, NEWS.html on CRAN and a news file that can be displayed by the tools::news() function? Kind regards, Johannes -- PD Dr. Johannes Ranke Kronacher Str. 12 79639 Grenzach-Wyhlen __ R-package-devel@r-project.org mailing list https://stat.ethz.ch/mailman

Re: [R-pkg-devel] .gitkeep file to prevent folder from erasing when empty

2016-10-02 Thread Johannes Ranke
Hi, You can include the .gitkeep file in .Rbuildignore. This will prevent it from being present in the package you test or submit, but git willl still see it and keep the directory. Johannes Am Montag, 3. Oktober 2016, 00:03:33 schrieb Luck Buttered: > Hello everyone: > > I am working on a vi

Re: [R-pkg-devel] Absent variables and tibble

2016-06-27 Thread Johannes Ranke
t; > name_missing <- function(x, name) > !(name %in% names(x)) > > and use name_missing(x, "var") in your tests. (Pick your own name to > make your code understandable if you don't like my choice.) > > You could suggest to the tibble maintainers that they add a function > like this. This is also being discussed here: https://github.com/hadley/tibble/issues/91 Kind regards, Johannes Ranke __ R-package-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-package-devel

Re: [R-pkg-devel] Linking an R package to the Python library

2016-03-01 Thread Johannes Ranke
what > to do to fix the link error. > > Is there anyone on this list with experience linking an R package to a > static library built on Windows using Visual Studio? > > Any suggestions are appreciated! > > [[alternative HTML version deleted]] > > ___