When using tibble 1.4.1, a tibble printed on the console will often abbreviate column names.
For example, set your console width to about 400 px wide and print the dplyr::starwars data frame. Column names are shown as:
name height mass hair_c~ skin_c~ eye_c~ birth_~ gender home~ spec~ films vehi~ star~
I tried setting options(tibble.width = 6)
, thinking that would only print 6 columns, but it still prints all columns.
Is there a way to prevent tibble from abbreviating column names and return to the previous behavior where it only printed the columns it had room for?