当前位置:   article > 正文

Python基础学习——Numpy包(6、输入输出)_skiprows=0

skiprows=0

1.numpy二进制文件(.npy,.npz)

save()保存

save(file, arr, allow_pickle=True, fix_imports=True):.npy格式将数组保存到二进制文件中。

load()读取

load(file, mmap_mode=None, allow_pickle=False, fix_imports=True, encoding='ASCII'):.npy.npz或 pickled文件加载数组或pickled对象。

【例】将一个数组保存到一个文件中并读取文件。

  1. import numpy as np
  2. outfile = r'.\test.npy'
  3. np.random.seed(20200619)
  4. x = np.random.uniform(low=0, high=1,size = [3, 5])
  5. np.save(outfile, x)
  6. y = np.load(outfile)
  7. print(y)
  8. # [[0.01123594 0.66790705 0.50212171 0.7230908 0.61668256]
  9. # [0.00668332 0.1234096 0.96092409 0.67925305 0.38596837]
  10. # [0.72342998 0.26258324 0.24318845 0.98795012 0.77370715]]

savez()压缩保存

savez(file, *args, **kwds):以未压缩的.npz格式将多个数组保存到单个文件中。

【例】将多个数组保存到一个文件。

  1. import numpy as np
  2. outfile = r'.\test.npz'
  3. x = np.linspace(0, np.pi, 5)
  4. y = np.sin(x)
  5. z = np.cos(x)
  6. np.savez(outfile, x, y, z_d=z)
  7. data = np.load(outfile)
  8. np.set_printoptions(suppress=True)
  9. print(data.files)
  10. # ['z_d', 'arr_0', 'arr_1']
  11. print(data['arr_0'])
  12. # [0. 0.78539816 1.57079633 2.35619449 3.14159265]
  13. print(data['arr_1'])
  14. # [0. 0.70710678 1. 0.70710678 0. ]
  15. print(data['z_d'])
  16. # [ 1. 0.70710678 0. -0.70710678 -1. ]

用解压软件打开 test.npz 文件,会发现其中有三个文件:arr_0.npy,arr_1.npy,z_d.npy,其中分别保存着数组x,y,z的内容。

2.文本文件

savetxt()保存

savetxt(fname, X, fmt='%.18e', delimiter=' ', newline='\n',header='', footer='', comments='# ', encoding=None)

fname:文件路径

X:存入文件的数组。

fmt='%.18e':写入文件中每个元素的字符串格式,默认'%.18e'(保留18位小数的浮点数形式)。

delimiter=' ':分割字符串,默认以空格分隔。

loadtxt()读取

loadtxt(fname, dtype=float, comments='#', delimiter=None,
            converters=None, skiprows=0, usecols=None, unpack=False,
            ndmin=0, encoding='bytes', max_rows=None)

fname:文件路径。

dtype=float:数据类型,默认为float。

comments='#': 字符串或字符串组成的列表,默认为'#',表示注释字符集开始的标志。

skiprows=0:跳过多少行,一般跳过第一行表头。

usecols=None:元组(元组内数据为列的数值索引), 用来指定要读取数据的列(第一列为0)。

unpack=False:当加载多列数据时是否需要将数据列进行解耦赋值给不同的变量。

【例】写入和读出TXT文件。

  1. import numpy as np
  2. outfile = r'.\test.txt'
  3. x = np.arange(0, 10).reshape(2, -1)
  4. np.savetxt(outfile, x)
  5. y = np.loadtxt(outfile)
  6. print(y)
  7. # [[0. 1. 2. 3. 4.]
  8. # [5. 6. 7. 8. 9.]]

 【例】写入和读出CSV文件。

  1. import numpy as np
  2. outfile = r'.\test.csv'
  3. x = np.arange(0, 10, 0.5).reshape(4, -1)
  4. np.savetxt(outfile, x, fmt='%.3f', delimiter=',')
  5. y = np.loadtxt(outfile, delimiter=',')
  6. print(y)
  7. # [[0. 0.5 1. 1.5 2. ]
  8. # [2.5 3. 3.5 4. 4.5]
  9. # [5. 5.5 6. 6.5 7. ]
  10. # [7.5 8. 8.5 9. 9.5]]

 genfromtxt():从文本文件加载数据,并按指定方式处理缺少的值(是面向结构数组和缺失数据处理的。)。

  1. genfromtxt(fname, dtype=float, comments='#', delimiter=None,
  2. skip_header=0, skip_footer=0, converters=None,
  3. missing_values=None, filling_values=None, usecols=None,
  4. names=None, excludelist=None,
  5. deletechars=''.join(sorted(NameValidator.defaultdeletechars)),
  6. replace_space='_', autostrip=False, case_sensitive=True,
  7. defaultfmt="f%i", unpack=None, usemask=False, loose=True,
  8. invalid_raise=True, max_rows=None, encoding='bytes'):

names=None:设置为True时,程序将把第一行作为列名称。

data.csv文件(不带缺失值)

  1. id,value1,value2,value3
  2. 1,123,1.4,23
  3. 2,110,0.5,18
  4. 3,164,2.1,19

【例】

  1. import numpy as np
  2. outfile = r'.\data.csv'
  3. x = np.loadtxt(outfile, delimiter=',', skiprows=1)
  4. print(x)
  5. # [[ 1. 123. 1.4 23. ]
  6. # [ 2. 110. 0.5 18. ]
  7. # [ 3. 164. 2.1 19. ]]
  8. x = np.loadtxt(outfile, delimiter=',', skiprows=1, usecols=(1, 2))
  9. print(x)
  10. # [[123. 1.4]
  11. # [110. 0.5]
  12. # [164. 2.1]]
  13. val1, val2 = np.loadtxt(outfile, delimiter=',', skiprows=1, usecols=(1, 2), unpack=True)
  14. print(val1) # [123. 110. 164.]
  15. print(val2) # [1.4 0.5 2.1]

【例】

  1. import numpy as np
  2. outfile = r'.\data.csv'
  3. x = np.genfromtxt(outfile, delimiter=',', names=True)
  4. print(x)
  5. # [(1., 123., 1.4, 23.) (2., 110., 0.5, 18.) (3., 164., 2.1, 19.)]
  6. print(type(x))
  7. # <class 'numpy.ndarray'>
  8. print(x.dtype)
  9. # [('id', '<f8'), ('value1', '<f8'), ('value2', '<f8'), ('value3', '<f8')]
  10. print(x['id']) # [1. 2. 3.]
  11. print(x['value1']) # [123. 110. 164.]
  12. print(x['value2']) # [1.4 0.5 2.1]
  13. print(x['value3']) # [23. 18. 19.]

data1.csv文件(带有缺失值)

  1. id,value1,value2,value3
  2. 1,123,1.4,23
  3. 2,110,,18
  4. 3,,2.1,19

【例】

  1. import numpy as np
  2. outfile = r'.\data1.csv'
  3. x = np.genfromtxt(outfile, delimiter=',', names=True)
  4. print(x)
  5. # [(1., 123., 1.4, 23.) (2., 110., nan, 18.) (3., nan, 2.1, 19.)]
  6. print(type(x))
  7. # <class 'numpy.ndarray'>
  8. print(x.dtype)
  9. # [('id', '<f8'), ('value1', '<f8'), ('value2', '<f8'), ('value3', '<f8')]
  10. print(x['id']) # [1. 2. 3.]
  11. print(x['value1']) # [123. 110. nan]
  12. print(x['value2']) # [1.4 nan 2.1]
  13. print(x['value3']) # [23. 18. 19.]

3.文本格式 

  1. set_printoptions(precision=None, threshold=None, edgeitems=None,
  2. linewidth=None, suppress=None, nanstr=None, infstr=None,
  3. formatter=None, sign=None, floatmode=None, **kwarg):
  • set_printoptions()函数:设置打印选项。这些选项决定浮点数、数组和其它NumPy对象的显示方式。
  • precision=8:设置浮点精度,控制输出的小数点个数,默认是8。
  • threshold=1000:概略显示,超过该值则以“…”的形式来表示,默认是1000。
  • linewidth=75:用于确定每行多少字符数后插入换行符,默认为75。
  • suppress=False:当suppress=True,表示小数不需要以科学计数法的形式输出,默认是False。
  • nanstr=nan:浮点非数字的字符串表示形式,默认nan
  • infstr=inf:浮点无穷大的字符串表示形式,默认inf
  • formatter:一个字典,自定义格式化用于显示的数组元素。键为需要格式化的类型,值为格式化的字符串。
    • 'bool'
    • 'int'
    • 'float'
    • 'str' : all other strings
    • 'all' : sets all types
    • ...

【例】

  1. import numpy as np
  2. np.set_printoptions(precision=4)
  3. x = np.array([1.123456789])
  4. print(x) # [1.1235]
  5. np.set_printoptions(threshold=20)
  6. x = np.arange(50)
  7. print(x) # [ 0 1 2 ... 47 48 49]
  8. np.set_printoptions(threshold=np.iinfo(np.int).max)
  9. print(x)
  10. # [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
  11. # 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
  12. # 48 49]
  13. eps = np.finfo(float).eps
  14. x = np.arange(4.)
  15. x = x ** 2 - (x + eps) ** 2
  16. print(x)
  17. # [-4.9304e-32 -4.4409e-16 0.0000e+00 0.0000e+00]
  18. np.set_printoptions(suppress=True)
  19. print(x) # [-0. -0. 0. 0.]
  20. x = np.linspace(0, 10, 10)
  21. print(x)
  22. # [ 0. 1.1111 2.2222 3.3333 4.4444 5.5556 6.6667 7.7778 8.8889
  23. # 10. ]
  24. np.set_printoptions(precision=2, suppress=True, threshold=5)
  25. print(x) # [ 0. 1.11 2.22 ... 7.78 8.89 10. ]
  26. np.set_printoptions(formatter={'all': lambda x: 'int: ' + str(-x)})
  27. x = np.arange(3)
  28. print(x) # [int: 0 int: -1 int: -2]
  29. np.set_printoptions() # formatter gets reset
  30. print(x) # [0 1 2]

【例】恢复默认选项

  1. np.set_printoptions(edgeitems=3, infstr='inf', linewidth=75,
  2. nanstr='nan', precision=8, suppress=False,
  3. threshold=1000, formatter=None)

【函数】

def get_printoptions():
  • get_printoptions()函数:获取当前打印选项。

【例】

  1. import numpy as np
  2. x = np.get_printoptions()
  3. print(x)
  4. # {
  5. # 'edgeitems': 3,
  6. # 'threshold': 1000,
  7. # 'floatmode': 'maxprec',
  8. # 'precision': 8,
  9. # 'suppress': False,
  10. # 'linewidth': 75,
  11. # 'nanstr': 'nan',
  12. # 'infstr': 'inf',
  13. # 'sign': '-',
  14. # 'formatter': None,
  15. # 'legacy': False
  16. # }

引用至Introduction to Numpy,学习笔记

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/142397
推荐阅读
相关标签
  

闽ICP备14008679号