Data in a .csv file looks like this:
But when I am using function describe it shows me numbers in scientific notation?
How can I format them within describe function?
You can try following as mentioned in similar issue:
pd.set_option('float_format',lambda x: "%.6f" % x)
From the document:
display.float_format : callable
The callable should accept a floating point number and return
a string with the desired format of the number. This is used
in some places like SeriesFormatter.
See formats.format.EngFormatter for an example.
[default: None] [currently: None]
pd.set_option('float_format',lambda x: "%.6f" % x)work? github.com/pandas-dev/pandas/issues/6842