Hello! We randomly assigned couples to one of three bank account conditions (IV = Joint, Separate, No-Guidance) and measured relationship quality (DV) across six data points. Our primary model is a dyadic growth curve model with distinguishable dyads (male vs. female partners). We observe significant differences in relationship trajectories as a function of bank account structure. I am trying to assess whether household income moderates these differences in trajectories. In other words, I'm interested in the three-way interaction terms between the two bank account dummy variables, time, and household income. The data is in a person period format where each couple has 12 lines of data (6 time points x 2 partners = 12 observations). For household income, I averaged each partner's estimates at Time 1 and used that value across all 12 rows of data per couple. I centered household income across the entire person period data set before creating interaction terms. Here are relevant variables, followed by syntax. ContrastS and ConstrastN are the two dummy codes comparing Joint couples to Separate couples (ContrastS) and No-Guidance couples (ContrastN). I then created male and female version of all parameters since this is a dual-intercept model. if BankManip = 1 then ConstrastS = 1;
if BankManip = 2 then ConstrastS = 0;
if BankManip = 3 then ConstrastS = 0;
if BankManip = 1 then ConstrastN = 0;
if BankManip = 2 then ConstrastN = 0;
if BankManip = 3 then ConstrastN = 1;
SepM = Male*ConstrastS;
SepF = Female*ConstrastS;
NoGdM = Male*ConstrastN;
NoGdF = Female*ConstrastN;
MonthsM = Male*MonthsE;
MonthsF = Female*MonthsE;
SepMnthM = Male*ConstrastS*MonthsE;
SepMnthF = Female*ConstrastS*MonthsE;
NoGMnthM = Male*ConstrastN*MonthsE;
NoGMnthF = Female*ConstrastN*MonthsE;
HHM = Male*AvgHHC;
HHF = Female*AvgHHC;
HHSepM = Male*ConstrastS*AvgHHC;
HHSepF = Female*ConstrastS*AvgHHC;
HHNoGdM = Male*ConstrastN*AvgHHC;
HHNoGdF = Female*ConstrastN*AvgHHC;
HHSepMnthM = Male*ConstrastS*MonthsE*AvgHHC;
HHSepMnthF = Female*ConstrastS*MonthsE*AvgHHC;
HHNoGMnthM = Male*ConstrastN*MonthsE*AvgHHC;
HHNoGMnthF = Female*ConstrastN*MonthsE*AvgHHC;
run;
PROC MIXED COVTEST METHOD=REML;
CLASS CoupID TimeC Gender;
MODEL ZRelationshipWB = Male Female SepM SepF NoGdM NoGdF MonthsM MonthsF SepMnthM SepMnthF NoGMnthM NoGMnthF
HHM HHF HHSepM HHSepF HHNoGdM HHNoGdF HHSepMnthM HHSepMnthF HHNoGMnthM HHNoGMnthF/ SOLUTION DDFM=SATTERTH NOINT;
RANDOM Male Female MonthsM MonthsF/ G GCORR SUBJECT=CoupID TYPE=UN;
REPEATED Gender / SUBJECT=CoupID*TimeC TYPE=csh;
WHERE StrictCompliance = 1;
ESTIMATE 'Intercept ' Male .5 Female .5;
ESTIMATE 'Separate' SepM .5 SepF .5;
ESTIMATE 'NoGuide' NoGdM .5 NoGdF .5;
ESTIMATE 'Months' MonthsM .5 MonthsF .5;
ESTIMATE 'SepXMonth' SepMnthM .5 SepMnthF .5;
ESTIMATE 'NoGdXMonth' NoGMnthM .5 NoGMnthF .5;
ESTIMATE 'HH' HHM .5 HHF .5;
ESTIMATE 'HHXSeparate' HHSepM .5 HHSepF .5;
ESTIMATE 'HHXNoGuide' HHNoGdM .5 HHNoGdF .5;
ESTIMATE 'HHXSepXMonth' HHSepMnthM .5 HHSepMnthF .5;
ESTIMATE 'HH*NoGdXMonth' HHNoGMnthM .5 HHNoGMnthF .5;
RUN; I observed no gender differences, so collapsed across male/female parameters. Here are the key results (note there is no HHxMonths term since I forced income to be constant across time within each couple): I don't know why the three-way terms are yielding infinity t-values and SEs of zero. I tried removing the random intercepts and then removing the random slopes, but I get similar results. I also tried using a different variable for household income. Rather than having it be the same value for both partners over time, I allowed it to vary for each partner over time. I grand-mean centered the variable before running the model. Here are those results. HHxMonths is "non-est" and the three-way terms are still "infinity." Any suggestions for what's happening? Thanks!
... View more