Displaying 20 results from an estimated 3000 matches similar to: "repeated measurements ANOVA"
2011 Apr 27
2
multiple comparisons on a between factor
Dear list,
im facing an issue of statistical data analysis that I consider myself
unable to resolve in R so i hope to get some valuable insights from you. i
run an ANOVA with four factors; factor4 is an between factor (two different
groups measured), the others are withins (tested across /all/ subjects).
accordingly, my model looks as follows:
fm1
2005 Apr 05
1
extracting Proportion Var and Cumulative Var values from factanal
Hi R users,
I need some help in the followings:
I'm doing factor analysis and I need to extract the loading values and
the Proportion Var and Cumulative Var values one by one.
Here is what I am doing:
> fact <- factanal(na.omit(gnome_freq_r2),factors=5);
> fact$loadings
Loadings:
Factor1 Factor2 Factor3 Factor4 Factor5
b1freqr2 0.246 0.486 0.145
2007 Mar 30
2
ANOVA and confidence intervals plot
Dear *,
I would like to obtain for each factor of my anova model the
"response variable vs factor" plot with means and 95% Tukey HSD
intervals.
I would appreciate any information on how to do that.
Cheers
--------------------------------------------------------------------
Max MANFRIN Tel.: +32 (0)2 650 3168
IRIDIA - CoDE, CP 194/6
2010 Jun 09
1
ANOVA of a sort
Dear R Help,
I have a general question - I know this is the R list, but I hope
someone can help me out a little as I've always found the help here to
be absolutely fantastic.
I have run a psychological study where participants are given multiple
stimuli and their responses to those stimuli are measured on the same
numerical scale, i.e., the data is something like
Participant Stimulus
2008 Dec 26
3
lm() with same formula but different column/factor combinations in data frame
Hi,
I am trying to find an efficient way of applying a linear regression
model to different factor combinations in a data frame.
I want to obtain the output with minimal or no use of loops if
possible. Please let me know if this query is unclear.
Thanks,
Murtaza
2003 Mar 06
6
type III Sum Sq in ANOVA table - Howto?
Hello,
as far as I see, R reports type I sums of squares. I'd like to get R to
print out type III sums of squares.
e.g. I have the following model:
vardep~factor1*factor2
to get the type III sum of squares for factor1 I've tried
anova(lm(vardep~factor2+factor1:factor2),lm(vardep~factor1*factor2))
but that didn't yield the desired result.
Could anyone give me a hint how to proceed?
2010 Jun 06
1
Why did TukeyHSD not work when I used it for post-hoc for 2way within-subjects anova?
Dear R people,
I have a couple of questions about post-doc analyses for 2 by 2 within
subjects ANOVA. I conducted a psycholinguistic study that combined a 2 by 2
design and a latin square design. Specifically, I had 32 items each of which
generated 4 conditions. Participants saw each of the 32 items only once: 8
in Condition A, 8 in B, 8 in C, and 8 in D. The table below serves as an
example.
2010 Apr 14
1
what is the intercept of a two-way anova model without interaction term?
Dear list,
I have a question regarding the meaning of intercept term in a two-way anova model without interaction term.
for example (let's assume there is no interaction between factor1 and factor2) :
> df
val factor1 factor2
1 48.61533 A t1
2 171.13535 B t1
3 65.96884 C t1
4 63.71222 A t2
5 80.22049 B t2
6
2008 Oct 27
2
Need help
Hi All,
I am new comer here and for Statistics R. I want to know how to use R
to calculate one way repeated measure ANOVA, for example, on three
groups of data.
I appreciate if someone can help me solve this problem.
John
2005 Nov 23
1
Find main effect in 2-way ANOVA
Hi,
I use anova() to find interaction effect and then I need to find data with
main effect from those data with interaction effect. How to do that?
I used : anova(lm(data~factor1*factor2)), then select data with interaction
effect. Then I need to select those data also with main effect of factor1
or factor2, from previous selected data. How to do that? Many thanks for
your time on my
2004 Aug 05
1
ANOVA with repeated measurements (Dan Rajdl)
Dear R-users,
I have some human serum lipid concentrations (cholesterol, apoB ...),
each lipid was measured (in the same person) for 6 times in different
time points (start, 3 months, 6 months, 12 months, 18 months, 24
months). There were 2 groups of participants: one with a nutritional
intervention and the other without it. I would like to know, whether
lipid concentrations differ among different
2010 Oct 17
1
unbalanced repeated measurements Anova with mixed effects
Dear R-list members,
I've been struggling with the proper setup for analysing my data. I've
performed a route choice experiment, in which participants had to make a
choice at each junction for the next road. During the experiment they
received traffic information, but also encountered two different
accidents. They also made trips without accidents.
What I'm interested in is to
2007 May 17
2
How to analyse simple study: Placebo-controlled (2 groups) repeated measurements (ANOVA, ANCOA???)
Hallo!
I have two groups (placebo/verum), every subject is measured at 5 times, the first time t0 is the baseline measurement, t1 to t4 are the measurements after applying the medication (placebo or verum). The question is, if there is a significant difference in the two groups and how large the differnce is (95% confidence intervals).
Let me give sample data
# Data
2013 Mar 06
6
Ggplot2: Moving legend, change fill and removal of space between plots when using grid.arrange() possible use of facet_grid?
Hi,
# For publications, I am not allowed to repeat the axes. I have tried to
remove the axes using:
# yaxt="n", but it did not work. I have not understood how to do this in
ggplot2. Can you help me?
# I also do not want loads of space between the graphs (see below script
with Dummy Data).
# If I could make it look like the examples on the (nice) examples page:
#
2013 Mar 07
3
ggpliot2: reordering of factors in facets facet.grid(). Reordering of factor on x-axis no problem.
Hi everyone (again),
before you all start screaming that the reordering of factors has been
discusse on several threads and is not particular to ggplot2, hear me out.
I can easily reorder my x-axis factor in facet.grid() in ggplot2. What I
cannot reorder are the factors represented on the strips. I can see that the
graphs are changing, so I am afraid of what it is I am doing. Why is ggplot2
2009 Dec 11
3
Correcting for missing data combinations
I can think of many brute-force ways to do this outside of R, but was
wondering if there was a simple/elegant solution within R instead.
I have a table that looks something like the following:
Factor1 Factor2 Value
A 11/11/2009 5
A 11/12/2009 4
B 11/11/2009 7
B 11/13/2009 8
>From that I need to generate all permutations of Factor1 and Factor2 and
force a 0 for any combination that doesn?t
2004 Oct 22
2
grouping for lme with nested repeated measurements
I am using lme to handle repeated measurements.
So far i can follow the examples from the book from pinheiro and bates.
Now i get the problem , that i have "nested" repeated measuremnts, and i cant find out how to do the grouping part of the lme formula.
1.The simple problem ist that i have different Samples , from which i make repeated measurements (each sample is measured 6 times) and
2005 Oct 13
1
Problem whit a piece of program
Hi friends, I'm beginning in R and I have simple question.
I have this piece of my program and how you see, that's ok (whit > num<-
0.002)
num<-0.002 # ok, but not when I change whit num<-0... ?
factor1<-1;
while(1)
{
if (num*factor1<1)
factor1<-factor1*10
else
{
print("out ok!!");
break;
}
}
[1] "out ok!!"
but when I change (whit >
2002 Nov 29
2
Obtaining the variable names of a glm object
Is names(model1$coef) what you're looking for?
-----Original Message-----
From: Kenneth Cabrera [mailto:krcabrer at epm.net.co]
Sent: 29 November 2002 10:36
Cc: R-help at stat.math.ethz.ch
Subject: [R] Obtaining the variable names of a glm object
Hi, R users!
Suppose I make a model like this:
2004 Jul 29
2
aov for unbalanced design (PR#7144)
Full_Name: Tanya Logvinenko
Version: 1.7.0
OS: Windows 2000
Submission from: (NULL) (132.183.156.125)
For unbalanced design, I ran into problem with ANOVA (aov function). The sum of
squares for only for the second factor and total are computed correctly, but sum
of squares for the first factor is computed incorreclty. Changing order of
factors in the formula changes the ANOVA table. For the