One can write data to a specific cell, using:
xlsworksheet.write('B5', 'Hello')
But if you try to write a whole dataframe, df2, starting in cell 'B5':
xlsworksheet.write('B5', df2)
TypeError: Unsupported type <class 'pandas.core.frame.DataFrame'> in write()
What should be the way to write a whole dataframe starting in a specific cell?
The reason I ask this is because I need to paste 2 different pandas dataframes in the same sheet in excel.