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

后端 未结 5 829
刺人心
刺人心 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:55

    A messy option, but you could always export it into excel to view it with excels convenience.

    library(xlsReadWrite)
    write.xls(mydata, "c:/mydata.xls")
    

提交回复
热议问题