高次元泥団子
高次元泥団子
中央クラスタがどの程度高次元なのか
code:python
# PCAの実行と累積寄与率のカーブ
pca = PCA()
pca.fit(matrix2)
# 寄与率と累積寄与率の計算
explained_variance_ratio = pca.explained_variance_ratio_
cumulative_explained_variance = np.cumsum(explained_variance_ratio)
# 累積寄与率のカーブをプロット
plt.figure(figsize=(8, 6))
plt.plot(range(1, len(cumulative_explained_variance) + 1), cumulative_explained_variance, marker='o')
plt.xlabel("Number of Components")
plt.ylabel("Cumulative Explained Variance")
plt.title("Cumulative Explained Variance by Number of PCA Components")
plt.grid(True)
plt.show()
https://gyazo.com/48afd7a540737ef468ec2177d166a5fc
https://gyazo.com/94fdf5b4528bf42a73a96810abf76cdf
https://gyazo.com/8638a83416c1ad44632d1c36efd20256
https://gyazo.com/f65d4c300d1bee9d4f9413af574f0af1
これどういう現象だ?