How to see all rows of a data frame in a Jupyter notebook with an R kernel?

后端 未结 1 1566
名媛妹妹
名媛妹妹 2020-12-10 06:03

When I put a data frame into a cell, it shows only some of the rows, with a \"...\" in the middle.

Edit: I\'m looking for R equivalents of these Pyt

相关标签:
1条回答
  • 2020-12-10 06:57

    Thomas Kluyver says:

    I think the options you want are repr.matrix.max.rows and repr.matrix.max.cols

    i.e. run

    options(repr.matrix.max.rows=600, repr.matrix.max.cols=200)
    

    The defaults are 60 and 20.

    0 讨论(0)
提交回复
热议问题