Re: [R-pkg-devel] Depreciate Function

2018-02-08 Thread Rami Krispin
gt; > >> > Is there a reason for still using the deprecated functions in your >> > examples? Because that's what's triggering the warnings. >> > >> > >> > Best, >> > >> > Max >> > -- >> > *From:* R-package-dev

Re: [R-pkg-devel] Depreciate Function

2018-02-07 Thread William Dunlap
for still using the deprecated functions in your > > examples? Because that's what's triggering the warnings. > > > > > > Best, > > > > Max > > -- > > *From:* R-package-devel on > behalf > > of Rami

Re: [R-pkg-devel] Depreciate Function

2018-02-07 Thread Maxime Turgeon
hat. Max From: Rami Krispin Sent: February 7, 2018 1:49:34 PM To: Maxime Turgeon Cc: Uwe Ligges; r-package-devel@r-project.org Subject: Re: [R-pkg-devel] Depreciate Function I follow the example of the R Packages book about depreciating a function which can be find here: http://r-pkgs

Re: [R-pkg-devel] Depreciate Function

2018-02-07 Thread Georgi Boshnakov
] Sent: 07 February 2018 18:49 To: Maxime Turgeon Cc: r-package-devel@r-project.org Subject: Re: [R-pkg-devel] Depreciate Function I follow the example of the R Packages book about depreciating a function which can be find here: http://r-pkgs.had.co.nz/release.html Is there another method to rename

Re: [R-pkg-devel] Depreciate Function

2018-02-07 Thread Rami Krispin
-package-devel on behalf > of Rami Krispin > *Sent:* February 7, 2018 1:32:37 PM > *To:* Uwe Ligges > *Cc:* r-package-devel@r-project.org > *Subject:* Re: [R-pkg-devel] Depreciate Function > > Yes, I am keeping the old version and passing the function parameters into > the

Re: [R-pkg-devel] Depreciate Function

2018-02-07 Thread Maxime Turgeon
r-package-devel@r-project.org Subject: Re: [R-pkg-devel] Depreciate Function Yes, I am keeping the old version and passing the function parameters into the new version. I forgot in my previous email to add the log: https://win-builder.r-project.org/incoming_pretest/180207_135041_TSstudio_011/00chec

Re: [R-pkg-devel] Depreciate Function

2018-02-07 Thread Rami Krispin
Yes, I am keeping the old version and passing the function parameters into the new version. I forgot in my previous email to add the log: https://win-builder.r-project.org/incoming_pretest/180207_135041_TSstudio_011/00check.log and here is an example of the function that triggers that warning ht

Re: [R-pkg-devel] Depreciate Function

2018-02-07 Thread Uwe Ligges
Not sure where you get the warning. I guess only at places where you still use the old variant? Best, Uwe Ligges On 07.02.2018 16:38, Rami Krispin wrote: Hello all, I am trying to depreciate functions and replace them with a different function in the new version of the package, using the

[R-pkg-devel] Depreciate Function

2018-02-07 Thread Rami Krispin
Hello all, I am trying to depreciate functions and replace them with a different function in the new version of the package, using the Depreciate function which triggers warnings during the package submission to CRAN. For example, I am replacing the function seasonal_ly with the function ts_seaso