Displaying 20 results from an estimated 10000 matches similar to: "Roadmap for selecting an approach to analyzing repeated measures data"
2006 Sep 23
1
variance-covariance structure of random effects in lme
Dear R users,
I have a question about the patterned variance-covariance structure for the random effects in linear mixed effect model.
I am reading section 4.2.2 of "Mixed-Effects Models in S and S-Plus" by Jose Pinheiro and Douglas Bates.
There is an example of defining a compound symmetry variance-covariance structure for the random effects in a
split-plot experiment on varieties of
2007 May 15
1
Re : Bootstrap sampling for repeated measures
Un texte encapsul? et encod? dans un jeu de caract?res inconnu a ?t? nettoy?...
Nom : non disponible
Url : https://stat.ethz.ch/pipermail/r-help/attachments/20070515/799f44ed/attachment.pl
2009 Jul 15
0
strategy to iterate over repeated measures/longitudinal data
Hi Group,
Create some example data.
set.seed(1)
wide_data <- data.frame(
id=c(1:10),
predictor1 = sample(c("a","b"),10,replace=TRUE),
predictor2 = sample(c("a","b"),10,replace=TRUE),
predictor3 = sample(c("a","b"),10,replace=TRUE),
measurement1=rnorm(10),
measurement2=rnorm(10))
head(wide_data)
id
2013 Nov 19
1
Repeated measures with categorical data
Hello,
I am working in a longitudinal study, with a categorical variable as a
dependent variable (alcohol consumption: no use, use, abuse and dependence)
with repeated measures (baseline, 1 year, 2 years). Besides I have another
variable with two groups: control and experimental.
I would like to analyze the evolution in each group, I have though in lme,
but I am not sure if I can do an lme with
2008 Mar 06
1
Repeated measures using lme
Dear list,
I am trying to do a repeated analysis using lme in R and a little bit unsure if I have set up the right statement. The problem is the IL6 (interleukin 6) was measured 5 times on each individual in each of 6 companies. The hypotheses are to see whether there is a relationship between IL6 and the total dust in each of the companies and if there is any change in IL6 across time
2005 Jun 28
1
nonparametric 2way repeated-measures anova
Dear useRs
is there any nonparametric test for the analysis of variance in a design
with two within-factors (repeated measures on both factors)? Friedman is not
appropriate here, therefore I am grateful for any alternative test.
thanks for any hint
cheers
christoph
--
2003 Dec 10
0
factorial experiments and repeated measures
Dear All,
I'm new to the list and relatively new to R (but not so to S-Plus) and I?ve
been asked to help study some experimental data.
In a factorial experiment (5 factors at 2 levels) the response-variable was
measured at various times (0, 2, 5, 7, ..., 30 days after start). There's just
one run for each factor combination! I intend to use the nlme library of
Pinheiro and Bates in a
2011 Nov 29
2
Non parametric, repeated-measures, factorial ANOVA
Hi
I have data from an experiment that used a repeated-measures factorial 2x2
design (i.e. each participant contributed data to both levels of both
factors). I need a non-parametric version of the repeated-measures factorial
ANOVA to analyse the data. SPSS only has non-parametric tests for one-way
ANOVAs but I have been told that the test I need can be implemented using
the R software.
2011 Dec 07
1
MIXED MODEL WITH REPEATED MEASURES
I am trying to specify a mixed model for my research, but I can't quite get
it to work. I've spent several weeks looking thru various online sources to
no avail. I can't find an example of someone trying to do precisely what I'm
trying to do. I'm hoping some smart member of this mailing list may be able
to help.
First off, full disclosure: (1) I'm an engineer by trade, so
2013 Feb 05
1
lmer - BLUP prediction intervals
Dear all
I have a model that looks like this:
m1 <- lmer(Difference ~ 1+ (1|Examiner) + (1|Item), data=englisho.data)
I know it is not possible to estimate random effects but one can
obtain BLUPs of the conditional modes with
re1 <- ranef(m1, postVar=T)
And then dotplot(re1) for the examiner and item levels gives me a nice
prediction interval. But I would like to have the prediction
2001 Mar 02
3
Post Hoc on repeated measures?
Hi all,
I'm a potential new user of R and have to know this before I start using it:
SPSS does not let you do a Post Hoc analysis on repeated measures data.
This is a problem for me, since that is what I will have to do.
Will R let me do this?
/Fredrik
--
-----------------------------------------------------------------
Fredrik Karlsson, Research Student
Department of Philosophy and
2010 Mar 22
1
how to analyze repeated measures count data?
Dear R community,
I've data-set with reaction times and count data (answers - yes, no)
of N subjects under conditions A, B.
For the analysis reaction time I used aov.
fit.rt = aov(rt ~ A * B + Error(subjects/(A*B)), data = m )
But how do I analyze the frequencies correctly?
example fable of frequencies from one subject:
, , = A1
B1 B2 B3
yes 31 36 19
no 22
2007 May 13
2
Some questions on repeated measures (M)ANOVA & mixed models with lme4
Dear R Masters,
I'm an anesthesiology resident trying to make his way through basic
statistics. Recently I have been confronted with longitudinal data in
a treatment vs. control analysis. My dataframe is in the form of:
subj | group | baseline | time | outcome (long)
or
subj | group | baseline | time1 |...| time6 | (wide)
The measured variable is a continuous one. The null hypothesis in
2006 Nov 14
2
Repeated measures by lme and aov give different results
I am analyzing data from an experiment with two factors: Carbon (+/-)
and O3 (+/-), with 4 replicates of each treatment, and 4 harvests over a
year. The treatments are assigned in a block design to individual
Rings.
I have approaches this as a repeated measures design. Fixed factors
are Carbon, O3 and Harvest, with Ring assigned as a random variable. I
have performed repeated measures analysis
2011 Oct 25
1
Unlist alternatives?
dfhfsdhf at ghghgr.com
I ran a simple lme model:
modelrandom=lmer(y~ (1|Test) + (1|strain), data=tempsub)
Extracted the BLUPs:
blups=ranef(modelrandom)[1]
Even wrote myself a nice .csv file....:
write.csv(ranef(modelrandom)[1],paste(x,"BLUPs.CSV"))
This all works great. I end up with a .csv file with the names of my strains
in the first column and the BLUP in the second
2010 Jun 16
4
Is there a non-parametric repeated-measures Anova in R ?
Hello Prof. Harrell and dear R-help mailing list,
I wish to perform a non-parametric repeated measures anova.
If what I read online is true, this could be achieved using a mixed Ordinal
Regression model (a.k.a: Proportional Odds Model).
I found two packages that seems relevant, but couldn't find any vignette on
the subject:
http://cran.r-project.org/web/packages/repolr/
2010 May 31
1
Post-hoc tests for repeated measures in balanced experimental design
Hi,
I am performing experiments in the field of visual perception where
we often apply balanced designs. Within a group of normal subjects,
we vary different stimulus conditions (like contrast, luminance,
temporal frequency of stimulation) and derive some psychophysical or
electrophysiological results from our subjects. Often, the main
question is to test the effect of these parameters
2013 Nov 16
1
repeated-measures multiple regression/ANCOVA/MANCOVA
Dear List,
I am trying to analyze a dataset where I have 1 continuous
between-item variable (C), and 2 factorial within-item variables (3-
and 2-level: F3, F2). I'm interested in whether slope of C is
different from 0 at different combinations of F3 and F2, and whether
it varies between these combinations.
And unfortunately I need a decent anova-like table with p-values. The
reason is that
2006 Apr 13
3
Penalized Splines as BLUPs using lmer?
Dear R-list,
I?m trying to use the lmer of the lme4 package to fit a linear mixed model
of the form
Y = Xb + Zu + e
and I can?t figure out how to control the covariance structure of u. I want
u ~ N(0,sigma^2*I).
More precisely I?m trying to smooth a curve through data using the
"Penalized Splines as BLUPs" method as described in Ruppert, Wand &
Carroll (2003).
So I have Z = [Z1
2006 Feb 15
2
Pairwise comparison after repeated measures ANOVA
I am analyzing some data obtained after measuring some parameters at
different times in samples obtained from many subjects. The model is
quite simple: aov(parameter ~ Time + Error(Subject/Time))
Now I want to make a pairwise comparison between the levels of Time.
However, I have not find how to do such a thing. I cannot use TukeyHSD
or pairwise.t.test, I supposse. Maybe using contrasts?
Could