-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
ENH: closing issues #395, #449, #570, #571 #576
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -491,34 +491,11 @@ def set_eng_float_format(precision=3, use_eng_prefix=False): | |||
_float_format = EngFormatter(precision, use_eng_prefix) | |||
_column_space = max(12, precision + 9) | |||
|
|||
_float_format = lambda x: '%.4g' % x | |||
_float_format = lambda x: '% .4f' % x |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will lead to very small numbers showing up as 0.0000
I think
This is great. You have some trailing whitespace problems-- is your editor configured to strip trailing whitespace? I think we can set git to do it automatically on commit. The new string formatting looks awesome. There's a tiny buglet with padding zeros on scientific notation:
Can fix it separately after merging this-- the rebase was somewhat terrifying but appears to have gone through cleanly |
OK I think I got that buglet licked here: and off to bed :) |
Fix column string formatting; index and header options to to_string; decorator for docstrings; floating point prettier printing. Also added to release notes & documentation. Address #395, #449, #570, #571