Displaying 5 results from an estimated 5 matches for "wsfactor".
Did you mean:
isfactor
2011 Nov 26
4
SPSS -> R
I'm an SPSS user trying to make the transition to R.
Can someone help me translate the following SPSS code into R?:
GLM Total_tp1 Total_tp2 WITH Age Sex
/WSFACTOR=Time 2 Repeated
/METHOD=SSTYPE(3)
/CRITERIA=ALPHA(.05)
/WSDESIGN= Time
/DESIGN= Age Sex Age*Sex.
Also. can anyone recommend any resources to help SPSS users learn to things in R?
Thanks,
-kristi
[[alternative HTML version deleted]]
2005 Nov 20
1
use of the 'by' command & converting SPSS ANOVA/GLM syntax into R syntax
...se lm instead of glm, but
got lost.
UNIANOVA
avfreq BY sex WITH blik
/METHOD = SSTYPE(3)
/INTERCEPT = INCLUDE
/EMMEANS = TABLES(OVERALL)
/EMMEANS = TABLES(sex)
/PRINT = DESCRIPTIVE ETASQ OPOWER HOMOGENEITY
/CRITERIA = ALPHA(.05)
/DESIGN = blik sex blik*sex .
GLM
avmth3fq avfreq BY SEX
/WSFACTOR = timex 2 Polynomial
/METHOD = SSTYPE (3)
/PRINT = DESCRIPTIVE ETASQ TEST(MMATRIX) HOMOGENEITY
/CRITERIA = ALPHA (.05)
/WSDESIGN = timex
/DESIGN = sex .
Any assistance with either of these enquiries is most appreciated.
Bob
2007 Nov 04
4
Why can repeated measures anova with within & between subjects design not be done if group sizes are unbalanced?
...would have something like, as anybody who does balanced
repeated measures anova's might know:
aov( RT ~ color * shape * MyGroup + Error( Subjects/( color*shape) )
In spss you would have something like this (of course with the data
organized slightly differently :
GLM
x1 x2 x3 x4 BY MyGroup
/WSFACTOR = color 2 Polynomial shape 2 Polynomial
/METHOD = SSTYPE(3)
/CRITERIA = ALPHA(.05)
/WSDESIGN = color shape color*shape
/DESIGN = VAR00001 .
Ok, the question is. If the group sizes are different (say 10 people
in one group and 12 people in the other group) R is going to give the
wrong answer....
2009 Mar 01
1
SPSS repeated interaction contrast in R
...CASESTOVARS
# /ID= Subjects
# /INDEX=TaskSwitch CongruenceNow CongruenceBefore
# /GROUPBY=VARIABLE.
#
# GLM RT.1.1.1 RT.1.1.2 RT.1.1.3 RT.1.2.1 RT.1.2.2 RT.1.2.3
RT.1.3.1 RT.1.3.2 RT.1.3.3 RT.2.1.1
# RT.2.1.2 RT.2.1.3 RT.2.2.1 RT.2.2.2 RT.2.2.3 RT.2.3.1 RT.2.3.2 RT.2.3.3
# /WSFACTOR=TaskSwitch 2 Repeated CongruenceNow 3 Repeated
CongruenceBefore 3 Repeated
# /METHOD=SSTYPE(3)
# /PRINT=DESCRIPTIVE OPOWER TEST(SSCP)
# /CRITERIA=ALPHA(.05)
# /WSDESIGN=TaskSwitch CongruenceNow CongruenceBefore
TaskSwitch*CongruenceNow
# TaskSwitch*CongruenceBefore CongruenceNo...
2007 Nov 06
0
Importing Data
...would have something like, as anybody who does balanced
repeated measures anova's might know:
aov( RT ~ color * shape * MyGroup + Error( Subjects/( color*shape) )
In spss you would have something like this (of course with the data
organized slightly differently :
GLM
x1 x2 x3 x4 BY MyGroup
/WSFACTOR = color 2 Polynomial shape 2 Polynomial
/METHOD = SSTYPE(3)
/CRITERIA = ALPHA(.05)
/WSDESIGN = color shape color*shape
/DESIGN = VAR00001 .
Ok, the question is. If the group sizes are different (say 10 people
in one group and 12 people in the other group) R is going to give the
wrong answer. Of co...