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读取注册表中值的方法
Apr 08 Python
Python中MYSQLdb出现乱码的解决方法
Oct 11 Python
Python中获取网页状态码的两个方法
Nov 03 Python
使用Python实现一个简单的项目监控
Mar 31 Python
python脚本爬取字体文件的实现方法
Apr 29 Python
CentOS 6.5中安装Python 3.6.2的方法步骤
Dec 03 Python
Python设计模式之观察者模式简单示例
Jan 10 Python
python安装教程
Feb 28 Python
pip安装python库的方法总结
Aug 02 Python
详解Python中的format格式化函数的使用方法
Nov 20 Python
Python使用matplotlib绘制Logistic曲线操作示例
Nov 28 Python
解决Keras使用GPU资源耗尽的问题
Jun 22 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
实现php加速的eAccelerator dll支持文件打包下载
2007/09/30 PHP
详解WordPress中添加和执行动作的函数使用方法
2015/12/29 PHP
PHP常用操作类之通信数据封装类的实现
2017/07/16 PHP
php微信公众号开发之翻页查询
2018/10/20 PHP
javascript 尚未实现错误解决办法
2008/11/27 Javascript
JS实现日期加减的方法
2013/11/29 Javascript
jQuery实现带水平滑杆的焦点图动画插件
2016/03/08 Javascript
js解决movebox移动问题
2016/03/29 Javascript
值得分享的Bootstrap Table使用教程
2016/11/23 Javascript
JavaScript微信定位功能实现方法
2016/11/29 Javascript
vue组件实例解析
2017/01/10 Javascript
jQuery自定义图片上传插件实例代码
2017/04/04 jQuery
理解 javascript 中的函数表达式与函数声明
2017/07/07 Javascript
jQuery实现腾讯信用界面(自制刻度尺)样式
2017/08/15 jQuery
为jquery的ajax请求添加超时timeout时间的操作方法
2018/09/04 jQuery
JavaScript键盘事件常见用法实例分析
2019/01/03 Javascript
Vue使用watch监听一个对象中的属性的实现方法
2019/05/10 Javascript
基于layui轮播图满屏是高度自适应的解决方法
2019/09/16 Javascript
如何实现小程序与小程序之间的跳转
2020/11/04 Javascript
Python基于回溯法子集树模板解决旅行商问题(TSP)实例
2017/09/05 Python
基于Python pip用国内镜像下载的方法
2018/06/12 Python
Python图像处理实现两幅图像合成一幅图像的方法【测试可用】
2019/01/04 Python
python视频按帧截取图片工具
2019/07/23 Python
在VS2017中用C#调用python脚本的实现
2019/07/31 Python
PyTorch 普通卷积和空洞卷积实例
2020/01/07 Python
Python中的整除和取模实例
2020/06/03 Python
python爬虫智能翻页批量下载文件的实例详解
2021/02/02 Python
工程项目经理岗位职责
2013/12/15 职场文书
物流专员岗位职责
2014/02/17 职场文书
超市开店计划书
2014/09/15 职场文书
2015年销售人员工作总结
2015/04/07 职场文书
2016应届毕业生就业指导课心得体会
2016/01/15 职场文书
2016年全国助残日活动总结
2016/04/01 职场文书
浏览器常用基本操作之python3+selenium4自动化测试(基础篇3)
2021/05/21 Python
一篇文章看懂MySQL主从复制与读写分离
2021/11/07 MySQL
Golang获取List列表元素的四种方式
2022/04/20 Golang