We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The wrong file as follows: #Generate PC1 eigenvectors evect = pca.eigenvectors PC1 = np.reshape(evect[0,:],(1300, 3)) np.savetxt("PC1_eigenVectors.dat", PC1, delimiter=" ", fmt="%8.5f") The wrong file has been changed as follows: #Generate PC1 eigenvectors file evect = pca.eigenvectors PC1 = np.reshape(evect[:,0],(1300, 3)) np.savetxt("PC1_eigenVectors.dat", PC1, delimiter=" ", fmt="%8.5f")
The main question: evect[0,:]
The text was updated successfully, but these errors were encountered:
Now the bug has been fixed.
Sorry, something went wrong.
No branches or pull requests
The wrong file as follows:
#Generate PC1 eigenvectors
evect = pca.eigenvectors
PC1 = np.reshape(evect[0,:],(1300, 3))
np.savetxt("PC1_eigenVectors.dat", PC1, delimiter=" ", fmt="%8.5f")
The wrong file has been changed as follows:
#Generate PC1 eigenvectors file
evect = pca.eigenvectors
PC1 = np.reshape(evect[:,0],(1300, 3))
np.savetxt("PC1_eigenVectors.dat", PC1, delimiter=" ", fmt="%8.5f")
The main question: evect[0,:]
The text was updated successfully, but these errors were encountered: