“Python Pickle DataFrame” Code-Antworten

Pandas speichern die Datei in Pickle

import pandas as pd
df.to_pickle(file_name) # save
df = pd.read_pickle(file_name) # load
Vivacious Vendace

Python -Lastpandas von Gurke

>>> unpickled_df = pd.read_pickle("./dummy.pkl")
>>> unpickled_df
   foo  bar
0    0    5
1    1    6
2    2    7
3    3    8
4    4    9
macarrony00

Python Pickle DataFrame

# save and load of DataFrames
dateiTraining = "daten/Training.zip"
trainDataFrame.to_pickle( self.dateiTraining )
if ( os.path.exists( dateiTraining ) ):
	testDataFrame = panda.read_pickle( dateiTraining )
        
Marc Tolkmitt

Ähnliche Antworten wie “Python Pickle DataFrame”

Fragen ähnlich wie “Python Pickle DataFrame”

Weitere verwandte Antworten zu “Python Pickle DataFrame” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen