Re: [R-pkg-devel] Fwd: [CRAN-pretest-archived] CRAN submission Boom 0.8

2018-04-21 Thread Steven Scott
Thanks Uwe. On Sat, Apr 21, 2018 at 3:02 PM, Uwe Ligges wrote: > > > On 21.04.2018 20:06, Steven Scott wrote: > >> No word from the maintainers. >> > > Only one maintainer is reading this list. > > > I submitted a revised version of the package >> just now (with an updated date in DESCRIPTION).

Re: [R-pkg-devel] Fwd: [CRAN-pretest-archived] CRAN submission Boom 0.8

2018-04-21 Thread Uwe Ligges
On 21.04.2018 20:06, Steven Scott wrote: No word from the maintainers. Only one maintainer is reading this list. I submitted a revised version of the package just now (with an updated date in DESCRIPTION). Thanks. If someone could look at it in the next few days I'd appreciate it. Tha

Re: [R-pkg-devel] Fwd: [CRAN-pretest-archived] CRAN submission Boom 0.8

2018-04-21 Thread Steven Scott
No word from the maintainers. I submitted a revised version of the package just now (with an updated date in DESCRIPTION). If someone could look at it in the next few days I'd appreciate it. Thanks. On Wed, Apr 4, 2018 at 3:01 PM, Steven Scott wrote: > Thanks Dirk. IMO the package is in good

Re: [R-pkg-devel] NOTE regarding dependencies in R code: Missing or unexported object

2018-04-21 Thread David Hervás via R-package-devel
--- Begin Message --- My fault, just noticed I had downloaded the wrong version of lmerTest from github (lmerTest instead of lmerTestR). Fixed now. Thank you Regards, David En sábado, 21 de abril de 2018 16:27:45 CEST, Rune Haubo escribió: I don't think 'summary' is actually exported

Re: [R-pkg-devel] NOTE regarding dependencies in R code: Missing or unexported object

2018-04-21 Thread Duncan Murdoch
On 20/04/2018 3:53 PM, David Hervás via R-package-devel wrote: Hi, I have sent my package "clickR" to CRAN and was asked to fix the following NOTE: * checking dependencies in R code ... NOTE Missing or unexported object: 'lmerTest::summary' I'm not sure what's going on, here is the Imports sectio

Re: [R-pkg-devel] NOTE regarding dependencies in R code: Missing or unexported object

2018-04-21 Thread Rune Haubo
I don't think 'summary' is actually exported by lmerTest (version >= 3.0-0): library(lmerTest) fm <- lmer(Informed.liking ~ Gender + Information * Product + (1 | Consumer) + (1 | Consumer:Product), data=ham) lmerTest::summary(fm) # gives: Error: 'summary' is not an exported object fr

[R-pkg-devel] NOTE regarding dependencies in R code: Missing or unexported object

2018-04-21 Thread David Hervás via R-package-devel
--- Begin Message --- Hi, I have sent my package "clickR" to CRAN and was asked to fix the following NOTE: * checking dependencies in R code ... NOTE Missing or unexported object: 'lmerTest::summary' I'm not sure what's going on, here is the Imports section of my DESCRIPTION file: Imports: beeswar