Export Data to File
Pandas supports exporting data to multiple file formats. Let's see how that works.
We'll cover the following...
We'll cover the following...
In many cases, data needs to be exported to a local file for persistent storage. Let’s see how to export the data from memory to local files. It not only supports some common text-like format files, such as CSV
and JSON
, but also some binary format files, such as pickle
and hdf
. In this lesson, we only focus on CSV
and Excel
. The usage is similar to other file formats.
Export data to CSV file
Basically, the DataFrame could be viewed as ...