I wish to only round values in the DataFrame for display purposes, when I use head() or tail() but I want the DataFrame to retain the original values.
I tried using the round method but it changes the values in the original DataFrame. I don't wish to create a separate copy each time for this purpose.
Is there any other way than creating a separate copy?
I'm having trouble glancing at values because some columns have e^10 notations. I'd just like to have a look at two to three decimal places maximum and not keep glancing at exponent values.