Hello, I have a fairly simple SEM implementation and interpretation question as it relates to semi partial and partial correlations. TLDR: can anyone provide a worked example of using ppcor to calculate and interpret semipartial correlations in an SEM context?
Suppose a very simple model:
intent ~ attitude + socialNorms + perceivedBehavioralControl
summary(fitmodel) will give me the unstandardized regression coefficient for intent ~ attitudes the "Estimate" column, and these can be interpreted as the unit change in intent that results from one unit change.
summary(fitmodel, standardized=TRUE) will give me the standardized regression coefficient for intent ~ attitude in the "std.all" column, and these are equivalent to the partial correlation between attitude and intent, which this can be interpreted as the standard deviation unit change in intent that results from a one standard deviation unit change in attitudes. Right?
I can get the total R2 of the model fairly easily using the rsquare=T option in summary, but I could use some help on how to get semipartial correlations using ppcor and how to interpret them in context of SEM? Also, how would I get the proportion of variance in intent explained by each factor?