Displaying 2 results from an estimated 2 matches for "groupba".
Did you mean:
group_a
2007 Jun 01
0
3.0.24 -- Office read only issue, bizarre EAs and disappearing ACLs
...ser::rwx
user:DOMAIN+UserB:rwx
group::rwx
group:DOMAIN+GroupA:rwx
group:DOMAIN+GroupB:rwx
mask::rwx
other::---
ACL on test.xls before UserA makes a change:
# file: test.xls
# owner: DOMAIN+UserB
# group: DOMAIN+GroupB
user::rwx
user:DOMAIN+UserB:rwx
group::rwx
group:DOMAIN+GroupA:rwx
group:DOMAIN+GroupBA:rwx
mask::rwx
other::---
ACL on test.xls after UserA makes a change:
# file: test.xls
# owner: DOMAIN+UserA
# group: DOMAIN+GroupB
user::r--
user:DOMAIN+UserB:rwx
group::---
group:DOMAIN+GroupA:rwx
group:DOMAIN+GroupBA:rwx
mask::rwx
other::---
Reopening the file at this point shows that it is re...
2012 Dec 02
1
Repeated-measures anova with a within-subject covariate (or varying slopes random-effects?)
...tch of
subjects that performed the task in the 6-run session but with the
order of conditions A and B reversed (A on even-numbered runs and B on
odd-numbered runs); now, if we wanted to analyze the data from the two
groups of subjects together, by including a between-subjects group
factor (groupAB, groupBA), would the model specification become
something like the following?
rt.aov <- aov(rt ~ run + group * stim * cond + Error(subj /(run +
stim * cond)), data=rt.df)
Perhaps should lme() be used instead (and with which formula?)?
Many thanks in advance to anybody who'd be so kind to offer...