python的pandas工具包,保存.csv文件时不要表头的实例


Posted in Python onJune 14, 2018

用pandas处理.csv文件时,有时我们希望保存的.csv文件没有表头,于是我去看了DataFrame.to_csv的document。

发现只需要再添加header=None这个参数就行了(默认是True),

下面贴上document:

DataFrame.to_csv(path_or_buf=None, sep=', ', na_rep='', float_format=None, columns=None, header=True, index=True, index_label=None, mode='w', encoding=None, compression=None, quoting=None, quotechar='"', line_terminator='\n', chunksize=None, tupleize_cols=None, date_format=None, doublequote=True, escapechar=None, decimal='.')

Write DataFrame to a comma-separated values (csv) file
path_or_buf : string or file handle, default None
File path or object, if None is provided the result is returned as a string.
sep : character, default ‘,'
Field delimiter for the output file.
na_rep : string, default ‘'
Missing data representation
float_format : string, default None
Format string for floating point numbers
columns : sequence, optional
Columns to write
header : boolean or list of string, default True
Write out the column names. If a list of strings is given it is assumed to be aliases for the column names
index : boolean, default True
Write row names (index)
index_label : string or sequence, or False, default None
Column label for index column(s) if desired. If None is given, and header and index are True, then the index names are used. A sequence should be given if the DataFrame uses MultiIndex. If False do not print fields for index names. Use index_label=False for easier importing in R
mode : str
Python write mode, default ‘w'
encoding : string, optional
A string representing the encoding to use in the output file, defaults to ‘ascii' on Python 2 and ‘utf-8' on Python 3.
compression : string, optional
a string representing the compression to use in the output file, allowed values are ‘gzip', ‘bz2', ‘xz', only used when the first argument is a filename
line_terminator : string, default '\n'
The newline character or character sequence to use in the output file
quoting : optional constant from csv module
defaults to csv.QUOTE_MINIMAL. If you have set a float_format then floats are converted to strings and thus csv.QUOTE_NONNUMERIC will treat them as non-numeric
quotechar : string (length 1), default ‘”'
character used to quote fields
doublequote : boolean, default True
Control quoting of quotechar inside a field
escapechar : string (length 1), default None
character used to escape sep and quotechar when appropriate
chunksize : int or None
rows to write at a time
tupleize_cols : boolean, default False
Deprecated since version 0.21.0: This argument will be removed and will always write each row of the multi-index as a separate row in the CSV file.
Write MultiIndex columns as a list of tuples (if True) or in the new, expanded format, where each MultiIndex column is a row in the CSV (if False).
date_format : string, default None
Format string for datetime objects
decimal: string, default ‘.'
Character recognized as decimal separator. E.g. use ‘,' for European data

以上这篇python的pandas工具包,保存.csv文件时不要表头的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python中stdout输出不缓存的设置方法
May 29 Python
编写Python脚本来获取mp3文件tag信息的教程
May 04 Python
Python 的内置字符串方法小结
Mar 15 Python
Python操作Excel插入删除行的方法
Dec 10 Python
Python 普通最小二乘法(OLS)进行多项式拟合的方法
Dec 29 Python
python读取csv和txt数据转换成向量的实例
Feb 12 Python
Python3内置模块之json编解码方法小结【推荐】
Dec 09 Python
python Django的web开发实例(入门)
Jul 31 Python
Python实现代码统计工具
Sep 19 Python
详解Python中pyautogui库的最全使用方法
Apr 01 Python
解决python使用list()时总是报错的问题
May 05 Python
Python还能这么玩之只用30行代码从excel提取个人值班表
Jun 05 Python
使用python将大量数据导出到Excel中的小技巧分享
Jun 14 #Python
使用pandas将numpy中的数组数据保存到csv文件的方法
Jun 14 #Python
利用pandas将numpy数组导出生成excel的实例
Jun 14 #Python
详解Django 中是否使用时区的区别
Jun 14 #Python
python dataframe 输出结果整行显示的方法
Jun 14 #Python
Python3.6基于正则实现的计算器示例【无优化简单注释版】
Jun 14 #Python
Python3.6简单反射操作示例
Jun 14 #Python
You might like
JSON在PHP中的应用介绍
2012/09/08 PHP
PHP二分查找算法示例【递归与非递归方法】
2016/09/29 PHP
PHP中call_user_func_array回调函数的用法示例
2016/11/26 PHP
基于jquery的DIV随滚动条滚动而滚动的代码
2012/07/20 Javascript
Jquery实现视频播放页面的关灯开灯效果
2013/05/27 Javascript
在JS数组特定索引处指定位置插入元素的技巧
2014/08/24 Javascript
jQuery的图片滑块焦点图插件整理推荐
2014/12/07 Javascript
用队列模拟jquery的动画算法实例
2015/01/20 Javascript
javascript中scrollTop详解
2015/04/13 Javascript
javascript获取重复次数最多的字符
2015/07/08 Javascript
javascript正则表达式中分组详解
2016/07/17 Javascript
JS表单数据验证的正则表达式(常用)
2017/02/18 Javascript
jQuery使用正则验证15/18身份证的方法示例
2017/04/27 jQuery
React Js 微信禁止复制链接分享禁止隐藏右上角菜单功能
2017/05/26 Javascript
js 监控iframe URL的变化实例代码
2017/07/12 Javascript
微信小程序报错: thirdScriptError的错误问题
2020/06/19 Javascript
python进阶教程之函数参数的多种传递方法
2014/08/30 Python
详解Python中的相对导入和绝对导入
2017/01/06 Python
使用python和pygame绘制繁花曲线的方法
2018/02/24 Python
python读文件保存到字典,修改字典并写入新文件的实例
2018/04/23 Python
终端命令查看TensorFlow版本号及路径的方法
2018/06/13 Python
TensorFlow 滑动平均的示例代码
2018/06/19 Python
Pandas Shift函数的基础入门学习笔记
2018/11/16 Python
python调用c++返回带成员指针的类指针实例
2019/12/12 Python
在python里使用await关键字来等另外一个协程的实例
2020/05/04 Python
Farfetch美国:奢侈品牌时尚购物平台
2019/05/02 全球购物
SHEIN美国:购买时髦的女性服装
2020/12/02 全球购物
彪马香港官方网上商店:PUMA香港
2020/12/06 全球购物
给老婆的搞笑检讨书
2014/01/12 职场文书
保险公司年会主持词
2014/03/22 职场文书
四风问题班子对照检查材料
2014/09/27 职场文书
学校领导班子四风问题整改意见
2014/10/02 职场文书
群众路线教育实践活动调研报告
2014/11/03 职场文书
2015小学音乐教师个人工作总结
2015/07/21 职场文书
2015年安全生产月工作总结
2015/07/27 职场文书
初三数学教学反思
2016/02/17 职场文书