In our last exercise ‘3B: PCA’ we encountered the object pca_res <- prcomp(df, scale. = TRUE) (or what you have named it). Lets have a deeper look at its structure because this is a type of object you will encounter many times while using R.
This is means it has several elements inside it and they are named. You can investigate them by clicking on pca_res in the Environment which will show their name, type and some example values. Lists are great because their elements can have different data types while vectors cannot.
We can also list the elements of a named list (or any other named object such as dataframes/tibbles):
Importance of components:
PC1 PC2 PC3 PC4
Standard deviation 1.7084 0.9560 0.38309 0.14393
Proportion of Variance 0.7296 0.2285 0.03669 0.00518
Cumulative Proportion 0.7296 0.9581 0.99482 1.00000
Some named list objects also have a class attribute. Named lists with a class attribute are also referred to as S3 objects. Or the other way around: S3 objects are named lists that have a class.
class(pca_res)
[1] "prcomp"
R uses the class to figure out how to process the object, for example inside summary(). So class is about what the object is whereas Type (as in typeof()) is about the structure of an object and how you can interact with it.
Bonus info: A ggplot is also an S3 object. Bet you didn’t know that!