Possible to print more than 100 rows of a data.table?

后端 未结 5 872
刺人心
刺人心 2021-02-01 01:34

The data.table has a nice feature that suppresses output to the head and tail of the table.

Is it possible to view / print more than 100 rows at once?

li         


        
5条回答
  •  独厮守ぢ
    2021-02-01 01:46

    View() (as in View(iris) or View(dtIris[1:120,])) doesn't truncate data.tables, and can often be nicer than printing/spewing out a data.* to the console.

提交回复
热议问题