Re: [R-pkg-devel] How do I know if/when my package is fit for CRAN?

2018-06-07 Thread Rune Haubo
On 7 June 2018 at 13:00, Michael Dewey wrote: > > One thing which occurs to me though is whether the maintaner of lmerTest > would accept it into the package? If it has a different philosophy probably > not but perhaps worth asking? In the lmerTest-team we are always open to collaborations. A qui

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