We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
i.e. <tibble> is white but should be grey like the other ones?
<tibble>
library(tidymodels) tidymodels_prefer() data(ames) ex_data <- ames %>% nest(data1 = c(everything()), .by = Neighborhood) %>% mutate( data2 = data1, data3 = data1, data4 = data1, data5 = data1, ) options(width = 111) print(ex_data)
The text was updated successfully, but these errors were encountered:
Simpler reprex:
options(width = 40) pillar:::new_tbl(n = 1L, list( a = "name", b = list(data.frame()), c = list(data.frame()), d = list(data.frame()) )) #> # A data frame: 1 × 4 #> a b c d #> <chr> <list> <list> <list> #> 1 name <df [0 × 0]> <df [0 × 0]> <df>
Created on 2023-03-12 with reprex v2.0.2
Sorry, something went wrong.
Even simpler:
pillar::pillar(list(data.frame()), width = 11) #> <pillar> #> <list> #> <df> pillar::pillar(list(data.frame()), width = 12) #> <pillar> #> <list> #> <df [0 × 0]>
Successfully merging a pull request may close this issue.
i.e.
<tibble>
is white but should be grey like the other ones?The text was updated successfully, but these errors were encountered: