Create and Read Pickle Files in Python
visibility 1,404
comment 0
Pickle files are commonly used Python data related projects. This article shows how to create and load pickle files using Pandas. 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 = ...
info Last modified by Administrator 8 months ago
thumb_up 0
comment Comments
No comments yet.
Forum discussions for column Code Snippets & Tips.
Want to contribute on Kontext to help others?
Learn more