I would like to round off Pandas DataFrame and then add a title to it, but Pandas style.set_caption command ruins the rounding.
example:
pd.DataFrame(np.array([[0.555,0.444],[0.333,0.222]])).round(decimals = 2).style.set_caption("hello")
result:
hello
0 1
0 0.560000 0.440000
1 0.330000 0.220000
How can I add a title while maintaing rouding?
