Learn R Programming

prinvars (version 1.0.0)

print.pla: Print Function for pla S3

Description

Prints the blocks, threshold, threshold_mode and the loadings.

Usage

# S3 method for pla
print(x, ...)

Value

A pla object which equals the input of x.

Arguments

x

a pla object.

...

further arguments passed to or from other methods.

Examples

Run this code
if(requireNamespace("AER")){
require(AER)
data("OECDGrowth")

pla_obj = pla(OECDGrowth, cor=TRUE, thresholds=0.5)
print(pla_obj)
}

Run the code above in your browser using DataLab