Create and Read Pickle Files in Python

event 2019-12-26 visibility 6,231 comment 0 insights
more_vert
insights Stats
Raymond Raymond Code Snippets & Tips

Code snippets and tips for various programming languages/frameworks. All code examples are under MIT or Apache 2.0 license unless specified otherwise. 

Pickle files are commonly used Python data related projects. This article shows how to create and load pickle files using Pandas. 

Create pickle file

import pandas as pd 
import numpy as np

file_name="data/test.pkl"
data = np.random.randn(1000, 2)
# pd.set_option('display.max_rows', None)
df = pd.DataFrame(data=data, columns=['foo', 'bar'])
print(df)
df.to_pickle(file_name)

Read pickle file

import pandas as pd 
import numpy as np

file_name="data/test.pkl"
df2 = pd.read_pickle(file_name)
print(df2)
More from Kontext
comment Comments
No comments yet.

Please log in or register to comment.

account_circle Log in person_add Register

Log in with external accounts