我不認爲mlab.PCA
類是適合你想要做什麼。
a = self.center(a)
U, s, Vh = np.linalg.svd(a, full_matrices=False)
的center
方法除以sigma
:
def center(self, x):
'center the data using the mean and sigma from training set a'
return (x - self.mu)/self.sigma
這導致本徵向量,pca.Wt
,像這樣:
[[-0.70710678 -0.70710678]
[-0.70710678 0.70710678]]
特別地,
PCA
類找到特徵向量之前重新調整所述數據
它們是垂直的,但與原始數據的主軸不直接相關。它們是關於按摩數據的主要軸。
也許它可能是更容易的代碼,你直接想要什麼(不使用mlab.PCA
類):
import numpy as np
import matplotlib.pyplot as plt
N = 1000
xTrue = np.linspace(0, 1000, N)
yTrue = 3 * xTrue
xData = xTrue + np.random.normal(0, 100, N)
yData = yTrue + np.random.normal(0, 100, N)
xData = np.reshape(xData, (N, 1))
yData = np.reshape(yData, (N, 1))
data = np.hstack((xData, yData))
mu = data.mean(axis=0)
data = data - mu
# data = (data - mu)/data.std(axis=0) # Uncommenting this reproduces mlab.PCA results
eigenvectors, eigenvalues, V = np.linalg.svd(data.T, full_matrices=False)
projected_data = np.dot(data, eigenvectors)
sigma = projected_data.std(axis=0).mean()
print(eigenvectors)
fig, ax = plt.subplots()
ax.scatter(xData, yData)
for axis in eigenvectors:
start, end = mu, mu + sigma * axis
ax.annotate(
'', xy=end, xycoords='data',
xytext=start, textcoords='data',
arrowprops=dict(facecolor='red', width=2.0))
ax.set_aspect('equal')
plt.show()
很好,謝謝。這就是我一直在尋找的。 – Tyrax
1.618常數的含義是什麼?它來自哪裏? – joaquin
@joaquin:它近似於[黃金比例](http://en.wikipedia.org/wiki/Golden_ratio)。當然,你可以選擇你喜歡的任何常數,但它[通常看起來不錯](http://en.wikipedia.org/wiki/Golden_ratio#Painting)。 – unutbu