“Pandy piszą do programu Excel” Kod odpowiedzi

Eksportuj Pandy DataFrame jako Excel

df.to_excel(r'C:\Users\Ron\Desktop\File_Name.xlsx', index = False)

#if you omit the file path (must also omit 'r') and 
#enter only file_name.xlsx, it will save to your default file location,
# that is, where the file you're reading from is located.
Kwams

DF do Excel

import pandas as pd
df.to_excel("File_Name.xlsx', index = False)
Sachin

skrypt Pythona do pisania danych danych na Excel

df.to_excel('pandas_to_excel.xlsx', sheet_name='new_sheet_name')
Sounkalo traoré

Wyeksportuj ramkę danych do pand Excel

#Python, pandas
#To export a pandas dataframe into Excel

df.to_excel(r'Path where you want to store the exported excel file\File Name.xlsx', index = False)
Ahh the negotiatior

Pandy piszą do programu Excel

# Create a Pandas Excel writer using XlsxWriter as the engine.
writer = pd.ExcelWriter('LTD Report Data.xlsx', engine='xlsxwriter')

# Write each dataframe to a different worksheet.
seg_2019.to_excel(writer, sheet_name='Seg 2019', index = False)
seg_2020.to_excel(writer, sheet_name='Seg 2020', index = False)
seg_2021.to_excel(writer, sheet_name='Seg 2021', index = False)
seg_2022.to_excel(writer, sheet_name='Seg 2022', index = False)

# Close the Pandas Excel writer and output the Excel file.
writer.save()
Sumaia Parveen Shupti

Zapisz Plik danych jako plik Excel

In [6]: titanic.to_excel("titanic.xlsx", sheet_name="passengers", index=False)
Lazy Lion

Odpowiedzi podobne do “Pandy piszą do programu Excel”

Pytania podobne do “Pandy piszą do programu Excel”

Więcej pokrewnych odpowiedzi na “Pandy piszą do programu Excel” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu