当我尝试使用标题保存矩阵时,第一行会出现哈希标记和空格(#):
输入:
np.savetxt(filename,data, fmt='%i %i %i %i %s',delimiter='\t',header="a\tb\tc\td\te")
输出:
# a b c d e
0 0 0 0 bla
0 0 0 0 bla
1 1 1 1 bla
1 1 1 1 bla
任何暗示为什么?我怎么能把它删除?