侯体宗的博客
  • 首页
  • 人生(杂谈)
  • 技术
  • 关于我
  • 更多分类
    • 文件下载
    • 文字修仙
    • 中国象棋ai
    • 群聊
    • 九宫格抽奖
    • 拼图
    • 消消乐
    • 相册

Python 中pandas.read_excel详细介绍

Python  /  管理员 发布于 7年前   295

Python 中pandas.read_excel详细介绍

#coding:utf-8import pandas as pdimport numpy as npfilefullpath = r"/home/geeklee/temp/all_gov_file/pol_gov_mon/downloads/1.xls"#filefullpath = r"/home/geeklee/temp/all_gov_file/pol_gov_mon/downloads/26368f3a-ea03-46b9-8033-73615ed07816.xls"df = pd.read_excel(filefullpath,skiprows=[0])#df = pd.read_excel(filefullpath, sheetname=[0,2],skiprows=[0])#sheetname指定为读取几个sheet,sheet数目从0开始#如果sheetname=[0,2],那代表读取第0页和第2页的sheet#skiprows=[0]代表读取跳过的行数第0行,不写代表不跳过标题#df = pd.read_excel(filefullpath, sheetname=None ,skiprows=[0])print dfprint type(df)#若果有多页,type(df)就为<type 'dict'>#如果就一页,type(df)就为<class 'pandas.core.frame.DataFrame'>#{0:dataframe,1:dataframe,2:dataframe}
pandas.read_excel(io, sheetname=0, header=0, skiprows=None, skip_footer=0, index_col=None, names=None, parse_cols=None, parse_dates=False, date_parser=None, na_values=None, thousands=None, convert_float=True, has_index_names=None, converters=None, engine=None, squeeze=False, **kwds)

Read an Excel table into a pandas DataFrame

参数解析:

io : string, path object (pathlib.Path or py._path.local.LocalPath),  file-like object, pandas ExcelFile, or xlrd workbook. The string could be a URL. Valid URL schemes include http, ftp, s3, and file. For file URLs, a host is expected. For instance, a local file could be file://localhost/path/to/workbook.xlsxsheetname : string, int, mixed list of strings/ints, or None, default 0  Strings are used for sheet names, Integers are used in zero-indexed sheet positions.  Lists of strings/integers are used to request multiple sheets.  Specify None to get all sheets.  str|int -> DataFrame is returned. list|None -> Dict of DataFrames is returned, with keys representing sheets.  Available Cases    Defaults to 0 -> 1st sheet as a DataFrame    1 -> 2nd sheet as a DataFrame    “Sheet1” -> 1st sheet as a DataFrame    [0,1,”Sheet5”] -> 1st, 2nd & 5th sheet as a dictionary of DataFrames    None -> All sheets as a dictionary of DataFramesheader : int, list of ints, default 0  Row (0-indexed) to use for the column labels of the parsed DataFrame. If a list of integers is passed those row positions will be combined into a MultiIndexskiprows : list-like  Rows to skip at the beginning (0-indexed)skip_footer : int, default 0  Rows at the end to skip (0-indexed)index_col : int, list of ints, default None  Column (0-indexed) to use as the row labels of the DataFrame. Pass None if there is no such column. If a list is passed, those columns will be combined into a MultiIndexnames : array-like, default None  List of column names to use. If file contains no header row, then you should explicitly pass header=Noneconverters : dict, default None  Dict of functions for converting values in certain columns. Keys can either be integers or column labels, values are functions that take one input argument, the Excel cell content, and return the transformed content.parse_cols : int or list, default None    If None then parse all columns,    If int then indicates last column to be parsed    If list of ints then indicates list of column numbers to be parsed    If string then indicates comma separated list of column names and column ranges (e.g. “A:E” or “A,C,E:F”)squeeze : boolean, default False  If the parsed data only contains one column then return a Seriesna_values : list-like, default None  List of additional strings to recognize as NA/NaNthousands : str, default None  Thousands separator for parsing string columns to numeric. Note that this parameter is only necessary for columns stored as TEXT in Excel, any numeric columns will automatically be parsed, regardless of display format.keep_default_na : bool, default True  If na_values are specified and keep_default_na is False the default NaN values are overridden, otherwise they're appended toverbose : boolean, default False  Indicate number of NA values placed in non-numeric columnsengine: string, default None  If io is not a buffer or path, this must be set to identify io. Acceptable values are None or xlrdconvert_float : boolean, default True  convert integral floats to int (i.e., 1.0 C> 1). If False, all numeric data will be read in as floats: Excel stores all numbers as floats internallyhas_index_names : boolean, default None  DEPRECATED: for version 0.17+ index names will be automatically inferred based on index_col. To read Excel output from 0.16.2 and prior that had saved index names, use True.

return返回的结果

parsed : DataFrame or Dict of DataFrames  DataFrame from the passed in Excel file. See notes in sheetname argument for more information on when a Dict of Dataframes is returned.

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!


  • 上一条:
    python3操作mysql数据库的方法
    下一条:
    python3.4用函数操作mysql5.7数据库
  • 昵称:

    邮箱:

    0条评论 (评论内容有缓存机制,请悉知!)
    最新最热
    • 分类目录
    • 人生(杂谈)
    • 技术
    • linux
    • Java
    • php
    • 框架(架构)
    • 前端
    • ThinkPHP
    • 数据库
    • 微信(小程序)
    • Laravel
    • Redis
    • Docker
    • Go
    • swoole
    • Windows
    • Python
    • 苹果(mac/ios)
    • 相关文章
    • 在python语言中Flask框架的学习及简单功能示例(0个评论)
    • 在Python语言中实现GUI全屏倒计时代码示例(0个评论)
    • Python + zipfile库实现zip文件解压自动化脚本示例(0个评论)
    • python爬虫BeautifulSoup快速抓取网站图片(1个评论)
    • vscode 配置 python3开发环境的方法(0个评论)
    • 近期文章
    • 在go语言中实现字符串可逆性压缩及解压缩功能(0个评论)
    • 使用go + gin + jwt + qrcode实现网站生成登录二维码在app中扫码登录功能(0个评论)
    • 在windows10中升级go版本至1.24后LiteIDE的Ctrl+左击无法跳转问题解决方案(0个评论)
    • 智能合约Solidity学习CryptoZombie第四课:僵尸作战系统(0个评论)
    • 智能合约Solidity学习CryptoZombie第三课:组建僵尸军队(高级Solidity理论)(0个评论)
    • 智能合约Solidity学习CryptoZombie第二课:让你的僵尸猎食(0个评论)
    • 智能合约Solidity学习CryptoZombie第一课:生成一只你的僵尸(0个评论)
    • 在go中实现一个常用的先进先出的缓存淘汰算法示例代码(0个评论)
    • 在go+gin中使用"github.com/skip2/go-qrcode"实现url转二维码功能(0个评论)
    • 在go语言中使用api.geonames.org接口实现根据国际邮政编码获取地址信息功能(1个评论)
    • 近期评论
    • 122 在

      学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..
    • 123 在

      Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..
    • 原梓番博客 在

      在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..
    • 博主 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..
    • 1111 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
    • 2016-10
    • 2016-11
    • 2018-04
    • 2020-03
    • 2020-04
    • 2020-05
    • 2020-06
    • 2022-01
    • 2023-07
    • 2023-10
    Top

    Copyright·© 2019 侯体宗版权所有· 粤ICP备20027696号 PHP交流群

    侯体宗的博客