“Pandas schreiben CSV” Code-Antworten

Code, wie Pandas CSV -Datei speichern

df.to_csv('out.csv')
Gifted Gerbil

Datenrahmen für CSV Python

import pandas as pd

# Dataframe example
df = pd.DataFrame({'col_A':[1,5,7,8],'col_B':[9,7,4,3]})

# Save dataframe as csv file in the current folder
df.to_csv('filename.csv', index = False, encoding='utf-8') # False: not include index
print(df)

#Note: to Save dataframe as csv file in other folder use instead:

''' 
df.to_csv('Path/filename.csv', index = False, encoding='utf-8') # Replace 'Path' by the wanted folder
''';

Gabriel Juri

Schreiben Sie DataFrame in CSV Python

df.to_csv (r'C:\Users\John\Desktop\export_dataframe.csv', index = None, header=True) 
Clear Copperhead

DF zu CSV

df.to_csv(file_name, encoding='utf-8', index=False)
Cheerful Constrictor

TO_CSV DROP INDEX

df.to_csv('file.csv', index=False)
nomjeeb

Pandas schreiben CSV

from pathlib import Path  
>>> filepath = Path('folder/subfolder/out.csv')  
>>> filepath.parent.mkdir(parents=True, exist_ok=True)  
>>> df.to_csv(filepath)
Anna Nguyen

Ähnliche Antworten wie “Pandas schreiben CSV”

Fragen ähnlich wie “Pandas schreiben CSV”

Weitere verwandte Antworten zu “Pandas schreiben CSV” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen