I would like to edit the display precision for a specific dataframe.
Now I saw people stating that you could use something like this:
pd.set_option('precision', 5)
However, how do you make sure that only one specific dataframe uses this precision, and the other remain as they were? Also, is it possible to alter this precision for specific columns only?