Re: [R-pkg-devel] Citation in DESCRIPTION file

2021-02-24 Thread Knut Krueger
inally, again citing the list info: "Please note that while R-package-devel contributors will do their best to provide you accurate and authoritative information, the final arbiters of CRAN submission is the CRAN team." ;) Best regards, Sebastian Meyer Am 24.02.21 um 09:25 schr

Re: [R-pkg-devel] Citation in DESCRIPTION file

2021-02-24 Thread Knut Krueger
Am 22.02.21 um 14:58 schrieb Uwe Ligges: Write it inline as in: See Author 1 (2021) and Author 2 (2004) . I see at the downloaded package that the urls are not usable by clicking. means the doi has not been converted to https://doi.org/xyz/1234567 Any chance to fix this in the

[R-pkg-devel] Unfixed error on cran submission: r-oldrel-macos-x86_64 ERROR

2021-02-22 Thread Knut Krueger
I clicked yes that I have fixed all errors, because I have no idea to fix Mac errors: No protocol specified No protocol specified Warning in fun(libname, pkgname) : couldn't connect to display ":0" Error in structure(.External(.C_dotTclObjv, objv), class = "tclObj") :

Re: [R-pkg-devel] Citation in DESCRIPTION file

2021-02-22 Thread Knut Krueger
Am 22.02.21 um 12:07 schrieb Sebastian Meyer: Example: Einstein et al. (1935) . What is the syntax if I have multiple references f.e For function foo1: Autor1 (2000) >doi:23837454235r2354.45764> Autor2 (2003) >doi:d73234k458f83.38358235> For function foo2: Autor3 (2013) Regards Knut

[R-pkg-devel] Citation in DESCRIPTION file

2021-02-22 Thread Knut Krueger
I was suggested: "A citation in the Description file is typically a good idea because people can think whether your package is appropriate before reading all docs and installing the package, just from reading the CRAN overview page." but I do not find hints how to implement the doi and the

Re: [R-pkg-devel] How to manage using different packages if available (suggests - imports)

2021-02-18 Thread Knut Krueger
ges. Yes this is my major problem. Thank you for your help Knut Duncan Murdoch On 18/02/2021 10:36 a.m., Knut Krueger wrote: The following problem: there are three packages foo1, foo2 and foo3 to use with the update of a package. The availability depends on the configuration of the host system

[R-pkg-devel] How to manage using different packages if available (suggests - imports)

2021-02-18 Thread Knut Krueger
The following problem: there are three packages foo1, foo2 and foo3 to use with the update of a package. The availability depends on the configuration of the host system. f.e java version If I write in the Description ... Suggests: foo1, foo2, foo3 inside of functions if have:

Re: [R-pkg-devel] Used package not updated - needs java < V 11

2020-12-17 Thread Knut Krueger
Am 16.12.20 um 16:57 schrieb Duncan Murdoch: > No, you should drop the @importFrom comment completely, and in your R > code use those fully qualified forms. > > Duncan Murdoch Sorry I did not read carefully Knut __ R-package-devel@r-project.org

Re: [R-pkg-devel] Used package not updated - needs java < V 11

2020-12-17 Thread Knut Krueger
  Also, I received an email from CRAN maintainers months ago saying that "gdata" was being obsoleted.  It's still on CRAN with a date of 2017-06-06 and a huge number of reverse dependencies.  The CRAN maintainers may have gotten someone to agree to take it over who just hasn't

Re: [R-pkg-devel] Used package not updated - needs java < V 11

2020-12-16 Thread Knut Krueger
Am 15.12.20 um 14:37 schrieb Duncan Murdoch: thank you for your answer You should not have @importFrom XLConnect createSheet writeWorksheet saveWorkbook in your ROxygen comments; that results in an unconditional import. Instead, you should use fully qualified calls each time, i.e.

Re: [R-pkg-devel] Used package not updated - needs java < V 11

2020-12-16 Thread Knut Krueger
Thank you for your answer, I tested WriteXLS and openxlsx ... but it is perl based and most of the Windows user do not have perl installed. Therefore I would change the missing XlConnect with missing Perl library. And that is more complicated, because the user has to add something on

[R-pkg-devel] Used package not updated - needs java < V 11

2020-12-15 Thread Knut Krueger
I am using in my Package XlConnect. If the Computer is using Java < 11 all is working. But if not, the package can not be used. inside teh functions tehre is an ' @importFrom XLConnect createSheet writeWorksheet saveWorkbook but only used for additional comfort to use excel sheets The

Re: [R-pkg-devel] library dlstats -> cran_stats()

2018-03-16 Thread Knut Krueger
Am 16.03.2018 um 13:44 schrieb Spencer Graves: On 2018-03-16 06:53, Mark van der Loo wrote: Knut AFAIR the download statistics are limited to downloads from RStudio's cloud are there any other statistics from cran available? Kind regards Knut

[R-pkg-devel] library dlstats -> cran_stats()

2018-03-16 Thread Knut Krueger
Dear all, Does anybody know whether the statistics are counting also updates? And if yes is it possible to get only the count of new installations? Kind regards Knut I __ R-package-devel@r-project.org mailing list

[R-pkg-devel] Roxygen: function documentation to get \item{...} in .rd file

2018-03-12 Thread Knut Krueger
I am converting a package from creating the .rd files manually to roxygen. I do not know how to add the additional parameters to the function description, so that the \item{...}{ some parameters } will be created in the .rd file Kind regards Knut

[R-pkg-devel] Roxygen and Template

2016-06-14 Thread Knut Krueger
I found in packgae ply - file adply.r: #' @template ply #' @template a- #' @template -d but no documentation about the template functionality, especially how to create the template file. (I tried to find it with google - of course) Is there any complete documentation about roxgen? Knut