Skip to Content
Python for Data Analysis, 3rd Edition
book

Python for Data Analysis, 3rd Edition

by Wes McKinney
August 2022
Beginner to intermediate content levelBeginner to intermediate
582 pages
13h 6m
English
O'Reilly Media, Inc.
Book available
Content preview from Python for Data Analysis, 3rd Edition

Chapter 6. Data Loading, Storage, and File Formats

Reading data and making it accessible (often called data loading) is a necessary first step for using most of the tools in this book. The term parsing is also sometimes used to describe loading text data and interpreting it as tables and different data types. I’m going to focus on data input and output using pandas, though there are numerous tools in other libraries to help with reading and writing data in various formats.

Input and output typically fall into a few main categories: reading text files and other more efficient on-disk formats, loading data from databases, and interacting with network sources like web APIs.

6.1 Reading and Writing Data in Text Format

pandas features a number of functions for reading tabular data as a DataFrame object. Table 6-1 summarizes some of them; pandas.read_csv is one of the most frequently used in this book. We will look at binary data formats later in Section 6.2, “Binary Data Formats,”.

Table 6-1. Text and binary data loading functions in pandas
FunctionDescription
read_csvLoad delimited data from a file, URL, or file-like object; use comma as default delimiter
read_fwfRead data in fixed-width column format (i.e., no delimiters)
read_clipboardVariation of read_csv that reads data from the clipboard; useful for converting tables from web pages
read_excelRead tabular data from an Excel XLS or XLSX file
read_hdfRead HDF5 files written by pandas
read_htmlRead all tables found in the given HTML document ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Python for Data Analysis: Step-By-Step with Projects

Python for Data Analysis: Step-By-Step with Projects

Just Into Data

Publisher Resources

ISBN: 9781098104023Errata PageSupplemental Content