-
Notifications
You must be signed in to change notification settings - Fork 37
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
row width is too large with multiple date time columns #366
Comments
Thanks, confirmed -- also for getOption("width")
#> [1] 80
tibble::tibble(a = paste(rep("x", 60), collapse = ""), b = Sys.time())
#> # A tibble: 1 × 2
#> a b
#> <chr> <dttm>
#> 1 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 2021-10-04 04:57:40
tibble::tibble(a = paste(rep("x", 70), collapse = ""), b = Sys.time())
#> # A tibble: 1 × 2
#> a b
#> <chr> <dttm>
#> 1 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 2021-10-04 04:57:40
tibble::tibble(a = paste(rep("x", 80), collapse = ""), b = Sys.time())
#> # A tibble: 1 × 2
#> a b
#> <chr> <dttm>
#> 1 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx… 2021-10-04 04:57:40 Created on 2021-10-04 by the reprex package (v2.0.1) |
krlmlr
added a commit
that referenced
this issue
Oct 17, 2021
- Fix printing for some tibbles where a fixed-width column is followed by a column with variable width (#366).
Thanks again for the great description and example! |
krlmlr
added a commit
that referenced
this issue
Oct 18, 2021
pillar 1.6.4 - Fix printing for some tibbles where a fixed-width column is followed by a column with variable width (#366). - Avoid nested backtick blocks in vignette. - `colonnade()` no longer exists, `squeeze()` and `extra_cols()` now raise an error (#272). - `num()` requires an integerish `digits` argument (#362). - Link to tibble vignettes and documentation pages.
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. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I'm seeing that when printing a
tibble
with multiple dttm columns the row width is too large and overflowing onto the next lines.This example sets the width option and returns the length of the rows. This occurs on multiple rows, but only using one here for simplicity.
Created on 2021-08-10 by the reprex package (v2.0.0)
Session info
The text was updated successfully, but these errors were encountered: