Nothing
## ----setup, include=FALSE-----------------------------------------------------
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
library(plssem)
library(modsem)
## ----interaction-syntax-------------------------------------------------------
m <- '
X =~ x1 + x2 + x3
Z =~ z1 + z2 + z3
Y =~ y1 + y2 + y3
Y ~ X + Z + X:Z
'
## ----interaction-continuous, message=FALSE, warning=FALSE---------------------
fit_cont <- pls(
m,
data = modsem::oneInt,
bootstrap = TRUE,
sample = 50
)
summary(fit_cont)
## ----interaction-ordered, message=FALSE, warning=FALSE------------------------
fit_ord <- pls(
m,
data = oneIntOrdered,
bootstrap = TRUE,
sample = 50,
ordered = colnames(oneIntOrdered) # explicitly specify variables as ordered
)
summary(fit_ord)
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.