I'm using Hayes PROCESS in R to do a mediation model with a moderated direct effect (model 5). I'd like to specify values for my moderator, e.g. like you can with modx.values = c(-1,0,1)
for simple slopes.
I haven't been able to find any arguments to specify moderator values in PROCESS, does anyone know if there is one?
The code that I'm using is the usual PROCESS code, as follows:
process(data=Data2EC_BR),
y="Social_Distance",
x="Mean_Mor_Con2",
m="Feat_Sit_cen",
w = "Ag_Rec_Cen",
model=5,
total=1,
effsize=1,
normal=1,
conf = 95)
I'm having trouble pasting some sample data in here but I shouldn't think it's needed, the code works fine I'm just after an argument I can add that can change the mod values. Thanks!