Numpy:zero mean data and standardization

后端 未结 4 1280
既然无缘
既然无缘 2021-02-19 19:08

I saw in tutorial (there were no further explanation) that we can process data to zero mean with x -= np.mean(x, axis=0) and normalize data with x /= np.std(x

4条回答
  •  谎友^
    谎友^ (楼主)
    2021-02-19 20:00

    This is also called zscore.

    SciPy has a utility for it:

        >>> from scipy import stats
        >>> stats.zscore([ 0.7972,  0.0767,  0.4383,  0.7866,  0.8091,
        ...                0.1954,  0.6307,  0.6599,  0.1065,  0.0508])
        array([ 1.1273, -1.247 , -0.0552,  1.0923,  1.1664, -0.8559,  0.5786,
                0.6748, -1.1488, -1.3324])
    

提交回复
热议问题