Nothing
context("SEMinR dot_graph can plot models that use HOC (not yet).\n")
test_that("higher order composits are plotted", {
set.seed(123)
mobi <- mobi
mobi_mm <- constructs(
composite("Image", multi_items("IMAG", 1:5), weights = unit_weights),
composite("Expectation", multi_items("CUEX", 1:3)),
composite("Quality", multi_items("PERQ", 1:5)),
composite("Loyalty", multi_items("CUSL", 1:3)),
composite("Value", multi_items("PERV", 1:2)),
higher_composite("Nick", dimensions = c("Quality","Loyalty"), method = two_stage, weights = mode_B),
composite("Satisfaction", multi_items("CUSA", 1:3)),
interaction_term(iv = "Image", moderator = "Expectation", method = two_stage, weights = mode_A)
)
# Creating structural model
# - note, multiple paths can be created in each line
mobi_sm <- relationships(
paths(to = "Satisfaction",
from = c("Image", "Expectation", "Value","Nick",
"Image*Expectation"))
)
# Estimate the model with the HOC
model <- estimate_pls(data = mobi,
measurement_model = mobi_mm,
structural_model = mobi_sm)
testthat::expect_error(dot_graph(model), NA)
testthat::expect_error(plot(model), NA)
plot <- plot(model)
#vdiffr::expect_doppelganger(title = "Plot HOC and Interaction", fig = plot, writer = write_test)
# Testing stuff
if (FALSE) {
summary(mobi_pls)
plot_model(mobi_mm)
plot_model(mobi_sm)
plot_model(mobi_pls)
#DiagrammeR::grViz(dot_graph(mobi_pls))
}
})
test_that("two higher order composits are plotted", {
set.seed(123)
mobi <- mobi
#seminr syntax for creating measurement model
mobi_mm <- constructs(
composite("Image", multi_items("IMAG", 1:5)),
composite("Expectation", multi_items("CUEX", 1:3)),
composite("Quality", multi_items("PERQ", 1:7)),
composite("Value", multi_items("PERV", 1:2)),
composite("Satisfaction", multi_items("CUSA", 1:3)),
composite("Complaints", single_item("CUSCO")),
composite("Loyalty", multi_items("CUSL", 1:3)),
higher_composite("Reputation", c("Image", "Expectation")),
higher_composite("Goodness", c("Quality", "Value"), weights = mode_B),
interaction_term("Complaints", "Satisfaction", method = two_stage)
)
#seminr syntax for creating structural model
mobi_sm <- relationships(
paths(from = "Reputation", to = c("Satisfaction", "Loyalty", "Goodness")),
paths(from = "Goodness", to = c("Satisfaction")),
paths(from = c("Satisfaction", "Complaints", "Complaints*Satisfaction"), to = "Loyalty")
)
mobi_pls <- estimate_pls(data = mobi,
measurement_model = mobi_mm,
structural_model = mobi_sm)
testthat::expect_error(dot_graph(mobi_pls), NA)
testthat::expect_error(plot(mobi_pls), NA)
mobi_boot <- bootstrap_model(mobi_pls, nboot = 100, cores = 1)
plot(mobi_boot)
plot <- plot(mobi_pls)
#vdiffr::expect_doppelganger(title = "Plot 2-levelHOC and Interaction", fig = plot, writer = write_test)
# Testing
if (FALSE) {
summary(mobi_pls)
plot(mobi_mm)
plot(mobi_sm)
plot(mobi_pls)
#DiagrammeR::grViz(dot_graph(mobi_pls))
}
})
# Cleanup
unlink("Rplots.pdf")
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.