-
Notifications
You must be signed in to change notification settings - Fork 26
Open
Labels
Description
The following code throws an error:
mm <- constructs(
composite("x_sub1",c("x1","x2","x3"), weights = mode_A),
composite("x_sub2",c("x4","x5","x6"), weights = mode_A),
composite("y",c("y1","y2","y3"), weights = mode_A),
higher_composite('x',c('x_sub1','x_sub2'), weights = mode_A))
sm <- relationships(
paths(from = "x",to = "y"))
pls <- estimate_pls(data = s,measurement_model = mm,structural_model = sm,inner_weights=path_weighting)
res<-summary(pls)
Error in [.data.frame(seminr_model$rawdata, , no_int_mmvars) : undefined columns selected
I tried changing construct names, it seems one of the calls in summary is trying to access either the raw data with hoc names or the reverse. This needs attention