pandas write multiple dataframe to multiple excel sheet code example
Example 1: write multiple df to excel pandas
with pd.ExcelWriter('pandas_multiple.xlsx', engine='xlsxwriter') as writer:
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: merge multiple excel files with multiple worksheets into a single dataframe
import glob
all_data = pd.DataFrame()
path = 'd:/projects/chassis/data/*.xlsx'
for f in glob.glob(path):
df = pd.read_excel(f, sheet_name=None, ignore_index=True, skiprows=6, usecols=8)
cdf = pd.concat(df.values())
all_data = all_data.append(cdf,ignore_index=True)
print(all_data)