【发布时间】:2016-09-14 09:58:38
【问题描述】:
在:How to write numpy arrays to .txt file, starting at a certain line?
人们帮助我解决了我的问题 - 这适用于 numpy 版本 1.7 或更高版本。不幸的是,我必须使用 1.6 版-以下代码(谢谢@Praveen)
extra_text = 'Answer to life, the universe and everything = 42'
header = '# Filexy\n# time operation1 operation2\n' + extra_text
np.savetxt('example.txt', np.c_[time, operation1, operation2],
header=header, fmt='%d', delimiter='\t', comments=''
给我一个 numpy 1.6 的错误
numpy.savetxt() got an unexpected keyword argument 'header' · Issue ...
对于 1.6 版是否有产生相同结果的解决方法:
# Filexy
# time operation1 operation2
Answer to life, the universe and everything = 42
0 12 100
60 23 123
120 68 203
180 26 301
【问题讨论】:
-
为什么要使用已弃用的 numpy?如果是关于管理员权限,请查看 pyenv。