Print number of predictors and principal components used.
     
    
    # S3 method for apd_pca
print(x, ...)
 
    
    Arguments
    - x
- A - apd_pcaobject.
 
- ...
- Not currently used, but required for extensibility. 
 
    
    
    Examples
    
model <- apd_pca(~ Sepal.Length + Sepal.Width, iris)
print(model)
#> # Predictors:
#>    2
#> # Principal Components:
#>    2 components were needed
#>    to capture at least 95% of the
#>    total variation in the predictors.