Nothing
# Demonstration of concise, contained model style
# - Both measurement and structural parts of the model are created within
# the estimate_pls() function
library(seminr)
mobi_pls <- estimate_pls(
data = mobi,
constructs(
composite("Image", multi_items("IMAG", 1:5)),
composite("Expectation", multi_items("CUEX", 1:3)),
composite("Value", multi_items("PERV", 1:2)),
composite("Satisfaction", multi_items("CUSA", 1:3)),
interaction_term("Image", "Expectation", method = orthogonal),
interaction_term("Image", "Value", method = orthogonal)
),
relationships(
paths(to = "Satisfaction",
from = c("Image", "Expectation", "Value",
"Image*Expectation", "Image*Value"))
)
)
summary(mobi_pls)
# Bootstrapping the model
boot_mobi_pls <- bootstrap_model(seminr_model = mobi_pls, nboot = 1000)
summary(boot_mobi_pls)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.