raise LinAlgError(“SVD did not converge”) LinAlgError: SVD did not converge in matplotlib pca determination

前端 未结 9 1242
后悔当初
后悔当初 2021-02-05 02:10

code :

import numpy
from matplotlib.mlab import PCA
file_name = \"store1_pca_matrix.txt\"
ori_data = numpy.loadtxt(file_name,dtype=\'float\', comments=\'#\', de         


        
9条回答
  •  旧巷少年郎
    2021-02-05 02:53

    This can happen when there are inf or nan values in the data.

    Use this to remove nan values:

    ori_data.dropna(inplace=True)
    

提交回复
热议问题