-
Notifications
You must be signed in to change notification settings - Fork 35
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
Compact printing in cut #381
Comments
I just hit a similar case hwere the many digits made plotting labels look ugly. What about supporting rounding in the |
This is tricky. Rounding could easily change radically the size of the groups if values are very close. AFAIK other packages don't do that. What R's At the very least we could add that |
I don't see the issue if it's just an option. Then the user can decide if the rounding is acceptable. |
If you want quantiles and rouding ends up creating classes with different sizes, you no longer get quantiles. ;-) So the printing |
The |
I added |
This is related to a discussion we had in 2020 at #245. @bkamins Do you have an opinion? I see several options:
|
Given the discussion - I think adding an argument is most flexible. |
Can you elaborate why you prefer an argument over a formatter? I find it hard to decide which is best. |
Ah - now I understand an issue. I understand that you want to predefine a function that you would pass to |
Currently we have:
which is not nice. It would be better to use compact printing.
Though we should make sure to correctly do this case:
The text was updated successfully, but these errors were encountered: