np.set_printoptions()用法总结
·
概述
np.set_printoptions()用于控制Python中小数的显示精度。
用法
np.set_printoptions(precision=None, threshold=None, linewidth=None, suppress=None, formatter=None)
1.precision:控制输出结果的精度(即小数点后的位数),默认值为8
2.threshold:当数组元素总数过大时,设置显示的数字位数,其余用省略号代替(当数组元素总数大于设置值,控制输出值得个数为6个,当数组元素小于或者等于设置值得时候,全部显示),当设置值为sys.maxsize(需要导入sys库),则会输出所有元素
3.linewidth:每行字符的数目,其余的数值会换到下一行
4.suppress:小数是否需要以科学计数法的形式输出
5.formatter:自定义输出规则
例子
import numpy as np
np.set_printoptions(precision=4)
np.array([1.3434234234234])
OUT:
import numpy as np
np.set_printoptions(threshold=9)
np.array([1, 2, 3, 4, 5, 6, 7, 8, 9, 0])
OUT:
import numpy as np
import math
np.set_printoptions(suppress=True)
np.array([1e-10, -1e-10])
OUT:
import numpy as np
np.set_printoptions(linewidth=5)
np.array([20000, 100])
OUT:
`
import numpy as np
np.set_printoptions(formatter={'all':lambda x: 'label: '+str(x)})
x = np.arange(3)
x
OUT:
希望这篇文章对大家的学习有所帮助!
更多推荐
已为社区贡献4条内容
所有评论(0)