Greetings to all, how can I make it to show all the content and not (... with 21 more rows)
I understand that you are talking about an object tibble
, according to the documentation of the same:
You can control the default appearance with options:
options (tibble.print_max = n, tibble.print_min = m): if there are more than n rows, print only the first m rows. Use options (tibble.print_max = Inf) to always show all rows.
options (tibble.width = Inf) will always print all columns, regardless of the width of the screen.
To show the complete content (it is not recommended) you should set before anything:
options(tibble.print_max = Inf)
If you simply want to increase the cutoff a bit:
options(tibble.print_max = 50, tibble.print_min = 10)