write multiple dataframes to single excel worksheet pandas code example
Example 1: write multiple df to excel pandas
# Create a Pandas Excel writer using XlsxWriter as the engine.
with pd.ExcelWriter('pandas_multiple.xlsx', engine='xlsxwriter') as writer:
# Write each dataframe to a different worksheet.
final_df.to_excel(writer, sheet_name='Sheet1')
df_unigrams.to_excel(writer, sheet_name='Sheet2')
df_bigrams.to_excel(writer, sheet_name='Sheet3')
Example 2: how to read excel with multiple pages on pandas
pd.read_excel('filename.xlsx', sheet_name = 'sheetname')