Programming problems related to the analysis of statistical models with random-effects terms, also variously: repeated measures, hierarchical, multilevel models

learn more… | top users | synonyms

0
votes
0answers
5 views

how to add variable in longitudinal data using spss or R?

I have a file with repeated measures data and another file with single observations for the same persons (e.g. in one file subjects have repeated assessments and the other file just says if subjects ...
2
votes
2answers
30 views

accessing random effects variance estimate in nlme's lme

Is there any way of obtaining the variance of a random term in a nlme package lme model? Random effects: Formula: ~t | UID Structure: General positive-definite, Log-Cholesky parametrization ...
3
votes
1answer
34 views

How to suppress correlation table in LME?

In the standard example of the lme() function in the nlme package of R: fm2 <- lme(distance ~ age + Sex, data = Orthodont, random = ~ 1) summary(fm2) there appears a correlation table: ...
0
votes
0answers
116 views

R - standard errors on predictions from nlme

This question builds on Extract prediction band from lme fit but with non-linear mixed models. I have a dataset of response values that are grouped by "entry." I used an AIC-model selection procedure ...
1
vote
1answer
23 views

Adding abline to augPred plot

apologies for what is likely to be a very basic question, I am very new to R. I am looking to read off my augPred plot in order to average out the values to provide a prediction between a time ...
4
votes
0answers
65 views

How do I perform a Mixed model analysis on my data in SPSS?

In my thesis I'm trying to discover which factors influence the CSR (corporate social responsibility, GSE_RAW) behavior of companies. Two groups of possible factors / variables have been identified: ...
-1
votes
0answers
20 views

How to proof that MANOVA is a special case of mixed-effect models? [closed]

I've tried to look over the internet (especially on google scholar) to find a paper/book about it, but so far i haven't found anything. If someone could link me something i'd be more than happy! ...
1
vote
0answers
47 views

Imposing a correlation structure in nlme terminates the R session out of the blue

I'm facing a problem when simulating with the function gls() in the R package nlme. I'd like to impose an AR(1) correlation structure on linear models fitted with gls(). When I do this in a simulation ...
-2
votes
1answer
147 views

How to generate a plot of residuals versus predictor variable for a mixed model? [closed]

My mixed model is as follows: model <- lme(Cost~1+Units, random=~1+Units|Factory, method="ML", data=A) I was told to apply the code below to plot residuals versus fitted values and it worked: ...
0
votes
0answers
54 views

How to make a list of lmer model obejcts to use in a for loop in R?

I'm trying to write a for loop in R (my first!) in order to produce and save diagnostic plots of several mixed effects models fitted using the function lmer in the package lme4. This is what I've done ...
1
vote
0answers
138 views

Evaluating the ikelihood function in linear mixed models (lme4)

I am currently writing a script to evaluate the (restricted) log-likelihood function for use in linear mixed models. I need it to calculate the likelihood of a model with some parameters fixed to ...
7
votes
1answer
682 views

Extract prediction band from lme fit

I have following model x<-rep(seq(0,100,by=1),10) y<-15+2*rnorm(1010,10,4)*x+rnorm(1010,20,100) id<-NULL for (i in 1:10){ id<-c(id, rep(i,101))} dtfr<-data.frame(x=x,y=y, id=id) ...
1
vote
1answer
277 views

mixed effect model with repeated measures

I am trying to develop a mixed effects model on a data set with repeated measures. Met is measured on a series of randomly selected days on 24 samples submitted to 3 treatments (Treat, with levels ...
0
votes
0answers
115 views

Lmmfit package for r-squared with mixed model using nlme [closed]

I am fitting my data using nlme package. The syntax is as follow: model<-lme(Energy efficiency ~ADF + CP + DE, random =~1|Study, data=phuong). Can someone tell me how to find the R-squared for this ...
2
votes
0answers
137 views

parameters CI linear mixed model: profile function using lme4 or lme4a

I am trying to calculate the 95% confidence intervals of a linear mixed model calculated with lmer() function from lme4 package. Reading Baker (2010) there is a way to calcuilate the cononfidence ...
0
votes
0answers
18 views

Fitting mixed model with p>>n + considering G*E

i have 800 wheat lines grown in 7 locations (one Rep/location) the lines were genotyped using 5000 markers. i need to estimate the markers effect simultaneously. the model will be something like ...
2
votes
2answers
1k views

Converting Repeated Measures mixed model formula from SAS to R

There are several questions and posts about mixed models for more complex experimental designs, so I thought this more simple model would help other beginners in this process as well as I. So, my ...
0
votes
0answers
114 views

Mixed model in R with paired design & covariates [closed]

I make habitat suitability models for animal species. The purpose of my research is to investigate the accuracy of different models. I clearly have a nested design: accuracy_measure -> response ...
0
votes
0answers
52 views

Why adding age as covariate make random slope variance larger?

I added age as covariate to the mixed model. The variance of random intercept decreased, but variance of random slope increased. Could anyone tell me why this happen? Thanks a lot!
4
votes
2answers
4k views

How to get coefficients and their confidence intervals in mixed effects models?

In lm and glm models, I use functions coef and confint to achieve the goal: m = lm(resp ~ 0 + var1 + var1:var2) # var1 categorical, var2 continuous coef(m) confint(m) Now I added random effect to ...