Show complete information (... with 21 more rows)

0

Greetings to all, how can I make it to show all the content and not (... with 21 more rows)

    
asked by Aarón Alva Goicochea 04.10.2017 в 05:13
source

1 answer

0

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)
    
answered by 04.10.2017 / 06:16
source