print_paths: Functions for reporting the Path Coefficients and R2 of...

Description Usage Arguments Details Examples

Description

print_paths generates an easy to read table reporting path coefficients and R2 values for endogenous constructs.plot_scores generates a scatterplot matrix of each factor's scores against every other factor's scores.

Usage

1
2
3
4
5
print_paths(model, na.print=".", digits=2)
## S3 method for class 'modelr'

plot_scores(fitted_model, factors=NULL)
## S3 method for class 'modelr'

Arguments

fitted_model

An object of class modelr. The estimated model returned by the modelr function.

na.print

A character substituting values not to be printed. If not specified, default = "."

digits

A numeric minimum number of significant digits. If not specified, default is "2".

factors

a list indicating which factors to report. If not specified, all factors are graphed and returned.

Details

These functions generate an easy to read table reporting path coefficients and R2 values for endogenous constructs or a scatterplot matrix of factor scores.

Examples

1
2
3
4
5
6
data("mobi", package = "semPLS")
mobi_pls <- modelr(data = mobi,
                   measurement_model = mobi_mm,
                   structural_model = mobi_sm)
print_paths(mobi_pls)
plot_scores(mobi_pls)

ISS-Analytics/modelr documentation built on May 7, 2019, 6:35 a.m.