Closed williamlorder closed 2 years ago
Thanks. The latest update in GitHub (version 0.8.2-1) has fixed this bug.
Note that this bug was only related to models with some covariates but without "x-y"
in mod.path
(e.g., Model 7). Below are detailed changes for this bug fix.
Before (wrong if there is any covariate):
de=as.data.frame(coef(summary(model.y)))[2,]
After:
de=as.data.frame(coef(summary(model.y)))
de=de[which(row.names(de)==x),]
Since this bug has been fixed, I will close this issue.
Dear bruce, I am using PROCESS in bruceR for modelling, however I have found a problem with the display. When I run model 7, the values of the covariates are incorrectly substituting the values of the direct effects. You can see this in the code below,I have used the example dataset
data
from your help file for this exampleAs you can see in the section
Direct Effect: "parent_edu" (X) ==> "score" (Y)
it shows a coefficient of -0.444, which should be the coefficient of partjob. Not the coefficient of the direct effect, which is 3.581 instead.Hopeing this will help you.