ComenzarEmpieza gratis

Using the princomp function

In this exercise you will use the princomp() function to calculate the principal components (PCs) of a dataset. We will use the pca.state object created in this exercise throughout the rest of this chapter.

Este ejercicio forma parte del curso

Multivariate Probability Distributions in R

Ver curso

Instrucciones del ejercicio

  • Calculate the principal components, and the scores of the PCs, of the state.x77 dataset based on the correlation matrix and store it as pca.state.
  • Provide a plot and print the summary of the principal component object.

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Calculate PCs
pca.state <- princomp(___, cor = ___, scores = ___) 

# Plot the PCA object  
plot(___) 

# Print the summary of the PCs
summary(___) 
Editar y ejecutar código