PCA variable contributionsΒΆ

This example will plot contributions to the principal components from the original variables.

  • plot 008 variable contributions
  • plot 008 variable contributions
  • plot 008 variable contributions
from matplotlib import pyplot as plt
import pandas as pd
from sklearn.datasets import load_diabetes
from sklearn.preprocessing import scale
from sklearn.decomposition import PCA
from psynlig import pca_loadings_map
plt.style.use('seaborn-talk')

data_set = load_diabetes()
data = pd.DataFrame(data_set['data'], columns=data_set['feature_names'])
data = scale(data)

pca = PCA()
pca.fit_transform(data)

kwargs = {
    'text': {
        'fontsize': 'large',
    },
    'heatmap': {
        'vmin': -1,
        'vmax': 1,
    },
}


# Plot the value of the coefficients:
pca_loadings_map(
    pca,
    data_set['feature_names'],
    textcolors=['white', 'black'],
    **kwargs
)

# Plot the absolute value of the coefficients:
kwargs['heatmap']['vmin'] = 0
pca_loadings_map(
    pca,
    data_set['feature_names'],
    textcolors=['white', 'black'],
    plot_style='absolute',
    **kwargs
)

# Plot the squared value of the coefficients:
pca_loadings_map(
    pca,
    data_set['feature_names'],
    textcolors=['white', 'black'],
    plot_style='squared',
    **kwargs
)

plt.show()

Total running time of the script: ( 0 minutes 2.634 seconds)

Gallery generated by Sphinx-Gallery