Python DataFrame 设置输出不显示index(索引)值的方法

在输出代码行中,加入“index=False”如下:

m_pred_survived.to_csv("clasified.csv",index=False)

相关推荐