I am facing problem on how to set another 2 rows be my header.
In a dataframe I have one header, and now I want take my first row and second row become header. Below is my dataframe code:
pvm=pd.DataFrame(pvm)
How can I add header=[0,1] into above code?
Or need start from the table style?
tableyy = final.style.set_table_attributes('border="" clas= "dataframe table table-hover table-bordered"').set_precision(10).render()
pvmisDataFrame?