Skip to content

R-core post from jw1085@wildcats.unh.edu requires approval

5 messages · Jochen Wirsing, Mitchell Maltenfort, Thierry Onkelinx +2 more

#
Dear R Mixed Models SIG,

below you will find an email that I originally sent to the R core group,
who technically is the maintainer of the nlme package, with which I've
had some serious issues since the last update. Since this seems to keep
preventing me from using R for my project, I am reaching out to you,
hoping this problem can be fixed in a timely manner, as it probably
affects a lot of other people as well.


Thank you very much,

Jochen Wirsing

-------- Forwarded Message --------
Subject: 	Re: R-core post from jw1085 at wildcats.unh.edu requires approval
Date: 	Wed, 3 May 2017 15:11:09 +0530
From: 	Deepayan Sarkar <deepayan.sarkar at gmail.com>
To: 	r-core-owner at r-project.org, Jochen Wirsing <jw1085 at wildcats.unh.edu>



Dear Jochen Wirsing,

Although r-core is technically the maintainer of nlme, you should
write to one of the public R mailing lists get help regarding such
problems: see

https://www.r-project.org/mail.html

Either R-help or R-SIG-mixed-models should be appropriate.

Best,
-Deepayan

  
  
#
Can you use lme4 instead?

On Mon, May 8, 2017 at 1:35 PM Jochen Wirsing <jw1085 at wildcats.unh.edu>
wrote:
#
Dear Jochen,

It is unclear where the problem exactly occurs. Please try to code below in
a clean R session and report exactly after which line the error occurs

library(nlme)
uncmod <- lme(fixed = year_c~1, random = ~1|ID, data = data, method ="ML")
summary(uncmod)
varCorr(uncmod)

library(broom)
uncmod <- lme(fixed = year_c~1, random = ~1|ID, data = data, method ="ML")
tidy(uncmod)
summary(uncmod)
varCorr(uncmod)

also give us the output of sessionInfo() when the error occurs.

Best regards,
ir. Thierry Onkelinx
Instituut voor natuur- en bosonderzoek / Research Institute for Nature and
Forest
team Biometrie & Kwaliteitszorg / team Biometrics & Quality Assurance
Kliniekstraat 25
1070 Anderlecht
Belgium

To call in the statistician after the experiment is done may be no more
than asking him to perform a post-mortem examination: he may be able to say
what the experiment died of. ~ Sir Ronald Aylmer Fisher
The plural of anecdote is not data. ~ Roger Brinner
The combination of some data and an aching desire for an answer does not
ensure that a reasonable answer can be extracted from a given body of data.
~ John Tukey

2017-05-08 18:50 GMT+02:00 Jochen Wirsing <jw1085 at wildcats.unh.edu>:

  
  
#
Somebody might be able to look at your error message and figure out what is
wrong, but often that is not possible just by looking.  If you want people
to help you, then you need to help people understand your problem, perhaps
using simulated data.  See:
http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example

Kevin

On Mon, May 8, 2017 at 11:50 AM, Jochen Wirsing <jw1085 at wildcats.unh.edu>
wrote:

  
    
#
My only wild guess about this is that there are (still unresolved as
far as I know) issues with the latest version of Matrix on 32-bit
operating systems (unlikely unless you're using Linux, and even then
slightly rare).  If so (sessionInfo() will tell us this), reverting to
the previous version of Matrix (e.g. see ?devtools::install_version)
should help.
On Mon, May 8, 2017 at 2:42 PM, Kevin Wright <kw.stat at gmail.com> wrote: