Read printed numpy array

后端 未结 2 1797
借酒劲吻你
借酒劲吻你 2020-12-17 23:11

Sometimes the printed numpy array is provide to share the data such as this post. So far, I converted that manually. But the array in the post is too big to con

2条回答
  •  旧时难觅i
    2020-12-17 23:43

    The other reply works great, but some shortcuts can be taken if the values are numeric. Furthermore, you may have an array with many dimension and even many orders. Given npstr, your str(np.array):

    import re, json
    import numpy as np
    
    # 1. replace those spaces and newlines with commas.
    # the regex could be '\s+', but numpy does not add spaces.
    t1 = re.sub('\s',',',npstr)
    # 2. covert to list
    t2 = json.loads(t1)
    # 3. convert to array
    a = np.array(t2)
    

    In a single line (bad form sure, but good for copypasting):

    a = np.array(json.loads(re.sub('\s',',',npstr)))
    

提交回复
热议问题