pandas 1.4.2

NotesParametersBackRef
to_feather(self, path: 'FilePath | WriteBuffer[bytes]', **kwargs) -> 'None'

Notes

This function writes the dataframe as a :None:None:`feather file <https://arrow.apache.org/docs/python/feather.html>`. Requires a default index. For saving the DataFrame with your custom index use a method that supports custom indices e.g. to_parquet .

Parameters

path : str, path object, file-like object

String, path object (implementing os.PathLike[str] ), or file-like object implementing a binary write() function. If a string or a path, it will be used as Root Directory path when writing a partitioned dataset.

**kwargs :

Additional keywords passed to pyarrow.feather.write_feather . Starting with pyarrow 0.17, this includes the :None:None:`compression`, :None:None:`compression_level`, :None:None:`chunksize` and version keywords.

versionadded

Write a DataFrame to the binary Feather format.

Examples

See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

pandas.core.generic.NDFrame.to_hdf

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


File: /pandas/core/frame.py#2654
type: <class 'function'>
Commit: