boot_paths_df | R Documentation |
Return all path bootstraps as a long dataframe. Columns of the dataframes are specified paths and rows are the estimated coefficients for the paths at each bootstrap iteration.
boot_paths_df(pls_boot)
pls_boot |
bootstrapped PLS model |
data(mobi)
mobi_mm <- constructs(
composite("Image", multi_items("IMAG", 1:5)),
composite("Expectation", multi_items("CUEX", 1:3)),
composite("Satisfaction", multi_items("CUSA", 1:3))
)
mobi_sm <- relationships(
paths(from = c("Image", "Expectation"), to = "Satisfaction")
)
pls_model <- estimate_pls(data = mobi,
measurement_model = mobi_mm,
structural_model = mobi_sm)
pls_boot <- bootstrap_model(seminr_model = pls_model,
nboot = 50, cores = 2, seed = NULL)
boot_paths_df(pls_boot)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.