Input/output¶
Pickling¶
|
Load pickled pandas object (or any object) from file. |
Flat file¶
|
Read general delimited file into DataFrame. |
|
Read a comma-separated values (csv) file into DataFrame. |
|
Read a table of fixed-width formatted lines into DataFrame. |
Clipboard¶
|
Read text from clipboard and pass to read_csv. |
Excel¶
|
Read an Excel file into a pandas DataFrame. |
|
Parse specified sheet(s) into a DataFrame. |
|
Class for writing DataFrame objects into excel sheets. |
JSON¶
|
Convert a JSON string to pandas object. |
|
Normalize semi-structured JSON data into a flat table. |
|
Create a Table schema from |
HDFStore: PyTables (HDF5)¶
|
Read from the store, close it if we opened it. |
|
Store object in HDFStore. |
|
Append to Table in file. |
|
Retrieve pandas object stored in file. |
|
Retrieve pandas object stored in file, optionally based on where criteria. |
Print detailed information on the store. |
|
|
Return a list of keys corresponding to objects stored in HDFStore. |
Return a list of all the top-level nodes. |
|
|
Walk the pytables group hierarchy for pandas objects. |
Feather¶
|
Load a feather-format object from the file path. |
Parquet¶
|
Load a parquet object from the file path, returning a DataFrame. |
SAS¶
|
Read SAS files stored as either XPORT or SAS7BDAT format files. |
SPSS¶
|
Load an SPSS file from the file path, returning a DataFrame. |
SQL¶
|
Read SQL database table into a DataFrame. |
|
Read SQL query into a DataFrame. |
|
Read SQL query or database table into a DataFrame. |
STATA¶
|
Read Stata file into DataFrame. |
Return data label of Stata file. |
|
Return a dict, associating each variable name a dict, associating each value its corresponding label. |
|
Return variable labels as a dict, associating each variable name with corresponding label. |
|