Re: [R-pkg-devel] Add reference in Description

2019-09-09 Thread Juhee Lee
Hi. Thank you for your reply. The question was solved. I received another message from CRAN. I think I can modify it. Thank you, Juhee Lee 2019년 9월 9일 (월) 오후 10:13, Uwe Ligges 님이 작성: > > > On 09.09.2019 14:54, Helmut Schütz wrote: > > Hi Juhee, > > > > Juhee Lee wrote on 2019-09-09 12:53: >

Re: [R-pkg-devel] Problems installing dependences of my package

2019-09-09 Thread Travers Ching
Hi Andrea, If your code is highly dependent on a specific version, another option is to include their code directly in your package. The forecast package is under GPL-3 license, meaning you can use their code. You would just need include the authors as a contributor ([ctb] tag) and make note of

Re: [R-pkg-devel] Problems installing dependences of my package

2019-09-09 Thread William Dunlap
> And now, I have another problem because the versions are usually indicated using “>=”, for example: > forecast (>=8.7) but I need to use exactly the versión 8.7 because sometimes when packages are updated, > they lost some functions. But if I use <= or == and the package is update to versión

Re: [R-pkg-devel] Problems installing dependences of my package

2019-09-09 Thread Michael Dewey
Dear Andrea Comments in-line On 09/09/2019 15:47, Andrea Vilar Alvarez wrote: Hi, I am writting because I am doing a package in R and I have some problems installing dependences which appear at DESCRIPTION file. First of all, I am not sure about the difference between Depends and Imports,

Re: [R-pkg-devel] Problems installing dependences of my package

2019-09-09 Thread Iñaki Ucar
On Mon, 9 Sep 2019 at 16:58, Andrea Vilar Alvarez wrote: > > First of all, I am not sure about the difference between Depends and Imports, > but I only use Depends. Common advice goes the other way around: you should avoid Depends as much as possible, so that your users' search path doesn't get

[R-pkg-devel] Problems installing dependences of my package

2019-09-09 Thread Andrea Vilar Alvarez
Hi, I am writting because I am doing a package in R and I have some problems installing dependences which appear at DESCRIPTION file. First of all, I am not sure about the difference between Depends and Imports, but I only use Depends. My problem is that my package is going to be used at

Re: [R-pkg-devel] Add reference in Description

2019-09-09 Thread Uwe Ligges
On 09.09.2019 14:54, Helmut Schütz wrote: Hi Juhee, Juhee Lee wrote on 2019-09-09 12:53: […] please add these in the Description field So I added it in the Description field of my DESCRIPTION file like this: Description: […] Berrington de Gonzalez A, et al.(2012) , National

Re: [R-pkg-devel] Add reference in Description

2019-09-09 Thread Helmut Schütz
Hi Juhee, Juhee Lee wrote on 2019-09-09 12:53: […] please add these in the Description field So I added it in the Description field of my DESCRIPTION file like this: Description: […] Berrington de Gonzalez A, et al.(2012) , National Research Council(2006, ISBN:978-0-309-09156-5). I

[R-pkg-devel] Add reference in Description

2019-09-09 Thread Juhee Lee
Hello, I submitted my package to CRAN and received this mail. On 03.09.2019 23:33, CRAN submission wrote: > [This was generated from CRAN.R-project.org/submit.html ] > > The following package was uploaded to CRAN: >

Re: [R-pkg-devel] Linking with OpenBLAS complains lapacke not found

2019-09-09 Thread Tomas Kalibera
Please refer to BLAS_LIBS, LAPACK_LIBS in Writing R Extensions. For an example package that uses BLAS/LAPACK, see e.g. "stats" or "Matrix". The package will then use the BLAS/LAPACK implementation as chosen by the user/system administrator at dynamic linking time (see R Installation and