I have a dataframe that I'm gonna use some special latex symbol for its columns and indeces. Something like this :
pd.DataFrame({"a":[1,2,3],"b":[4,5,6]})
With a small difference that instead of a
and b
as the columns I want to have $\diamond$
and $\dagger$
symbols respectively.
Any kind of help would be appreciated.