gpt4 book ai didi

python - sklearn.decomposition.PCA 特征向量的简单图

转载 作者:行者123 更新时间:2023-11-28 19:12:43 28 4
gpt4 key购买 nike

我正在尝试了解主成分分析 的工作原理,我正在sklearn.datasets.load_iris 数据集上对其进行测试。我了解每个步骤的工作原理(例如,标准化数据、协方差、特征分解、最高特征值排序、使用 K 选定维度将原始数据转换为新轴)。

下一步是可视化这些特征向量在数据集上的投影位置(在PC1 vs. PC2 plot 上,对吧?)。

有人可以解释如何在降维数据集的 3D 图上绘制 [PC1、PC2、PC3] 特征向量吗?

此外,我是否正确绘制了这个 2D 版本?我不确定为什么我的第一个特征向量的长度较短。我应该乘以特征值吗?


以下是我为实现这一目标所做的一些研究:

我遵循的 PCA 方法来自: https://plot.ly/ipython-notebooks/principal-component-analysis/#Shortcut---PCA-in-scikit-learn (虽然我不想使用 plotly。我想坚持使用 pandas、numpy、sklearn、matplotlib、scipy 和 seaborn)

我一直在按照本教程绘制特征向量,它看起来非常简单:Basic example for PCA with matplotlib但我似乎无法用我的数据复制结果。

我发现了这个,但对于我想做的事情来说它似乎过于复杂,我不想创建一个 FancyArrowPatch:plotting the eigenvector of covariance matrix using matplotlib and np.linalg


我已尝试使我的代码尽可能简单明了,以便遵循其他教程:

import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from sklearn.datasets import load_iris
from sklearn.preprocessing import StandardScaler
from sklearn import decomposition
import seaborn as sns; sns.set_style("whitegrid", {'axes.grid' : False})

%matplotlib inline
np.random.seed(0)

# Iris dataset
DF_data = pd.DataFrame(load_iris().data,
index = ["iris_%d" % i for i in range(load_iris().data.shape[0])],
columns = load_iris().feature_names)

Se_targets = pd.Series(load_iris().target,
index = ["iris_%d" % i for i in range(load_iris().data.shape[0])],
name = "Species")

# Scaling mean = 0, var = 1
DF_standard = pd.DataFrame(StandardScaler().fit_transform(DF_data),
index = DF_data.index,
columns = DF_data.columns)

# Sklearn for Principal Componenet Analysis

# Dims
m = DF_standard.shape[1]
K = 2

# PCA (How I tend to set it up)
M_PCA = decomposition.PCA(n_components=m)
DF_PCA = pd.DataFrame(M_PCA.fit_transform(DF_standard),
columns=["PC%d" % k for k in range(1,m + 1)]).iloc[:,:K]


# Plot the eigenvectors
#https://stackoverflow.com/questions/18299523/basic-example-for-pca-with-matplotlib

# This is where stuff gets weird...
data = DF_standard

mu = data.mean(axis=0)
eigenvectors, eigenvalues = M_PCA.components_, M_PCA.explained_variance_ #eigenvectors, eigenvalues, V = np.linalg.svd(data.T, full_matrices=False)
projected_data = DF_PCA #np.dot(data, eigenvectors)

sigma = projected_data.std(axis=0).mean()

fig, ax = plt.subplots(figsize=(10,10))
ax.scatter(projected_data["PC1"], projected_data["PC2"])
for axis, color in zip(eigenvectors[:K], ["red","green"]):
# start, end = mu, mu + sigma * axis ### leads to "ValueError: too many values to unpack (expected 2)"

# So I tried this but I don't think it's correct
start, end = (mu)[:K], (mu + sigma * axis)[:K]
ax.annotate('', xy=end,xytext=start, arrowprops=dict(facecolor=color, width=1.0))

ax.set_aspect('equal')
plt.show()

enter image description here

最佳答案

我觉得你问错了问题。特征向量是主要成分(PC1、PC2 等)。因此,在 [PC1、PC2、PC3] 3D 图中绘制特征向量就是简单地绘制该图的三个正交轴。

您可能想要可视化特征向量在原始坐标系中的样子。这是您的第二个链接中讨论的内容:Basic example for PCA with matplotlib .

关于python - sklearn.decomposition.PCA 特征向量的简单图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37976564/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com