Re: [R-pkg-devel] Using data.table in a package

2021-03-05 Thread neonira Arinoem
Question one is a matter of personal preference. I personally stick to explicitly state a double column depency with data.table. Question two. Just replacing the dot by list is sufficient AFAIK. Hope this helps Le ven. 5 mars 2021 à 14:28, Martin Møller Skarbiniks Pedersen < traxpla...@gmail.c

Re: [R-pkg-devel] ggplot2 axis title with various size fonts

2020-12-08 Thread neonira Arinoem
; On Tue, Dec 8, 2020 at 9:25 AM neonira Arinoem wrote: > > > > Is it possible to compose a string to be used as axis title in ggplot2, > > with the main part being drawn using one given font and font size, and > the > > last part being drawn with another font and font s

[R-pkg-devel] ggplot2 axis title with various size fonts

2020-12-08 Thread neonira Arinoem
Is it possible to compose a string to be used as axis title in ggplot2, with the main part being drawn using one given font and font size, and the last part being drawn with another font and font size. See below for an example *my axis title **(units)* Currently struggling to achieve this. Thanks

[R-pkg-devel] Fwd: PDF generation issue from manual page

2020-02-11 Thread neonira Arinoem
Hi R gurus Got an issue risen by CRAN about using unknown characters from Latex. Here is the error message, in the context of PDF generated form manual pages *Check: PDF version of manual, Result: WARNING LaTeX errors when creating PDF version. This typically indicates Rd problems. L

Re: [R-pkg-devel] How to provide a finalized PDF file in a package?

2020-01-21 Thread neonira Arinoem
> > > > /Henrik > > (disclaim: I'm the author) > > > > On Tue, Jan 21, 2020 at 7:50 AM neonira Arinoem > wrote: > > > > > > I create a cheat sheet using MS-OFFICE and converted it at a PDF > format. > > > > > > I wonder in

[R-pkg-devel] How to provide a finalized PDF file in a package?

2020-01-21 Thread neonira Arinoem
I create a cheat sheet using MS-OFFICE and converted it at a PDF format. I wonder in which folder of my package I should place it to be installed with the package. I tried instinctively in vignettes, but it doesn't seem to work correctly, as I do not find it back in my package installation folde

[R-pkg-devel] Seeking for best way to manage package transitive dependencies

2019-10-10 Thread neonira Arinoem
Suppose package B imports package A and package A imports package C. Shall package B import package C, knowing that package B will use functions from package A that are using functions from package C ? Currently, package B imports package C. This leads to a note from CRAN stating Namespace in I

Re: [R-pkg-devel] What counts as an API change?

2019-09-26 Thread neonira Arinoem
Very interesting thread. Indeed just got one question in relationship with SEMVER and API. For a given package, does CRAN adapt the control and acceptance processes according to SEMVER, when submitting a new package version ? Any reference material about CRAN control and acceptance processes are

Re: [R-pkg-devel] [External] Re: Farming out methods to other packages

2019-08-11 Thread neonira Arinoem
What about turning your S3 class into a R6 class. That way, the methods you provide can be overridden easily by other developers by creating a class that inherits from yours. This is standard oop, as opposed to special R S3 oop. Neonira Le sam. 10 août 2019 à 21:11, Lenth, Russell V a écrit :