I'm finding that when I have a pandas DataFrame with float column headers, they don't honor the display.precision option (or display.float_format or set_eng_fload_format) in a jupyter notebook, while they do in an iPython console. The following is a snippet of code that illustrates the issue:
import pandas as pd import numpy as np pd.options.display.precision = 3 labels = np.random.rand(10) p = pd.DataFrame(np.random.randn(10,10),index=labels,columns=labels) p -- You received this message because you are subscribed to the Google Groups "Project Jupyter" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jupyter/61d0ece2-ce9b-4c20-a0a3-e572544ca7d7%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
