summary.biplot {biplotEZ} | R Documentation |
Generic summary function for objects of class biplot
Description
This function is used to print summary output of the biplot. These summary outputs are related to measures of fit.
Usage
## S3 method for class 'biplot'
summary(
object,
adequacy = TRUE,
axis.predictivity = TRUE,
sample.predictivity = TRUE,
class.predictivity = TRUE,
within.class.axis.predictivity = TRUE,
within.class.sample.predictivity = TRUE,
...
)
Arguments
object |
an object of class |
adequacy |
a logical value indicating whether variable adequacies should be reported, with default |
axis.predictivity |
a logical value indicating whether axis predictivities should be reported, with default |
sample.predictivity |
a logical value indicating whether sample predictivities should be reported, with default |
class.predictivity |
a logical value indicating whether class predictivities should be reported, with default |
within.class.axis.predictivity |
a logical value indicating whether within class axis predictivity
should be reported, with default |
within.class.sample.predictivity |
a logical value indicating whether within class sample predictivity
should be reported, with default |
... |
additional arguments. |
Value
This function will not produce a return value, it is called for side effects.
Examples
out <- biplot (iris[,1:4]) |> PCA() |> fit.measures()
summary(out)