Interpretation of components
Now that you decided how many components you need to cover a sufficient amount of the structure in the data, you are probably curious about the meaning of these components. Which contents do they reflect? Which of the variables form a component?
The object pcaNews
, which is a list of several elements, is loaded in your workspace.
Diese Übung ist Teil des Kurses
Machine Learning for Marketing Analytics in R
Anleitung zur Übung
- Print the loadings, which are stored in the
rotation
element of thepcaNews
object, of component one to six, rounded to two decimals. You can choose the number of components by using the subsetting brackets[ , ]
. - As an example, we printed the loadings of the first component for you.
- Test yourself by interpreting the first two components (you are, of course, free to take a look at more than two).
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Print loadings of the first component
pcaNews$rotation[, 1] %>% round(2)
# Print loadings of the first six components
___[__,__] %>% round(2)