excel的写入函数为pd.DataFrame.to_excel();必须是DataFrame写入excel, 即Write DataFrame to an excel sheet。
to_excel(self, excel_writer, sheet_name='Sheet1', na_rep='', float_format=None,columns=None,
header=True, index=True, index_label=None,startrow=0, startcol=0, engine=None,
merge_cells=True, encoding=None,inf_rep='inf', verbose=True, freeze_panes=None)
常用参数解析
In [16]: df = pd.read_csv('test.csv')
In [17]: df
Out[17]:
index a_name b_name
0 0 1 3
1 1 2 3
2 2 3 4
#excel_writer :'excel_output.xls'输出路径
In [18]: df.to_excel('excel_output.xls')
#得到的表名就是'biubiu'
In [20]: df.to_excel('excel_output.xls',sheet_name='biubiu')
In [25]: df = pd.read_excel('excel_output.xls')
In [26]: df
Out[26]:
index a_name b_name
0 0 1 3.0
1 1 2 3.0
2 2 3 NaN
#如果na_rep设置为bool值,则写入excel时改为0和1;也可以写入字符串或数字
In [27]: df.to_excel('excel_output.xls',na_rep=True)
In [28]: pd.read_excel('excel_output.xls')
Out[28]:
index a_name b_name
0 0 1 3
1 1 2 3
2 2 3 1
In [29]: df.to_excel('excel_output.xls',na_rep=False)
In [30]: pd.read_excel('excel_output.xls')
Out[30]:
index a_name b_name
0 0 1 3
1 1 2 3
2 2 3 0
In [31]: df.to_excel('excel_output.xls',na_rep=11)
In [32]: pd.read_excel('excel_output.xls')
Out[32]:
index a_name b_name
0 0 1 3
1 1 2 3
2 2 3 11
In [44]: df.to_excel('excel_output.xls',na_rep=11,columns=['index'])
In [45]: pd.read_excel('excel_output.xls')
Out[45]:
index
0 0
1 1
2 2
In [48]: df.to_excel('excel_output.xls',na_rep=11,index=False)
In [49]: pd.read_excel('excel_output.xls')
Out[49]:
index a_name b_name
0 0 1 3
1 1 2 3
2 2 3 11
In [50]: df.to_excel('excel_output.xls',na_rep=11,index=False,header=None)
In [51]: pd.read_excel('excel_output.xls')
Out[51]:
0 1 3
0 1 2 3
1 2 3 11