I'm trying to learn the Keon-Woong Moon's processR package which you can install by simply:
install.packages("processR")
following some examples from the documentation, I have scraped an example together:
labels=list(X="frame",W="skeptic",Y="donate")
moderator=list(name='skeptic',site=list(c("c")))
model=tripleEquation(labels=labels,moderator=moderator,data=disaster,mode=1)
drawConcept(labels=labels, moderator=moderator, drawbox=TRUE)
semfit=sem(model=model,data=disaster,se="boot",bootstrap=200)
modSummary(semfit)
However the modSummary
functions returns NULL
. I would appreciate if you could help me understand where is my mistake and how I can solve it.