ComeçarComece de graça

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.

Este exercício faz parte do curso

Machine Learning for Marketing Analytics in R

Ver curso

Instruções do exercício

  • Print the loadings, which are stored in the rotation element of the pcaNews 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).

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Print loadings of the first component
pcaNews$rotation[, 1] %>% round(2)

# Print loadings of the first six components
___[__,__] %>% round(2)
Editar e executar o código