-
Notifications
You must be signed in to change notification settings - Fork 129
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
turn off tibble number printing enhancements #417
Comments
one known and advertise way to deactivate is to overide if you define this on top of your script or in your R session, you'll be good!
Some options can already be set to change some of the printing. See options page on pillar website. You may know that as you already try some of them. |
Hi @cderv, Thanks for your reply. I had a look at the links you provided. I didn't know the overide of Is there a way we can choose what is printed? I particularly like the printing of tibble 1.3, where we can see the secondary header with column type information without all the messy printing introduced in latest tibble If I have to chose between the current tibble printing and a flat, df printing, I definitely chose the latter. Thanks Kind regards |
I think you either override the printing or change what can be changed with the current options. I think you should choose the overide option with maybe a custom print with only the secondary header. |
Thanks Christophe for chiming in. Yes, it's currently all-or-nothing, we're working on a way to make the output configurable in #411. (Numbers can have very different meanings, it's difficult to come up with a setting that fits all use cases.) Coloring can be disabled with A more subtle way to change the formatting only for numbers is to override |
This old thread has been automatically locked. If you think you have found something related to this, please open a new issue and link to this old issue if necessary. |
Hi,
Is there a way to disable all printing "enhancements" from tibble? Probably look fantastic in RStudio, but there are still people who do not use it it just a pain to watch on a terminal R session
I have multiple issues with this:
disp
column and you'll see automatic rounding for no reason.I have been looking around for options (pillar.sigfig and pillar.subtle) but haven't found any to disable for example the automatic rounding on the
disp
column. I find these extremely confusing and difficult to read and heck, can't lead to wrong decisions as (depending on the situation) there can be a big difference between a rounded and not rounded result.I just don't want to add
as_data_frame()
at the end of each pipe to get rid of this...Thank you
Kind regards,
The text was updated successfully, but these errors were encountered: