美文网首页
python : array str to float

python : array str to float

作者: 夏天不热也不冷 | 来源:发表于2019-12-03 10:47 被阅读0次
    import numpy as np
    x = np.array(['1.1', '2.2', '3.3'])
    y = x.astype(np.float)
    

    如果遇到: ValueError: Can only create a chararray from string data.

    x=[float(n) for n in x]
    x=np.array(x)
    

    参考网址: https://stackoverflow.com/questions/3877209/how-to-convert-an-array-of-strings-to-an-array-of-floats-in-numpy

    相关文章

      网友评论

          本文标题:python : array str to float

          本文链接:https://www.haomeiwen.com/subject/mgqcgctx.html