3

I used skimr package for descriptive table. On using View() function it is showing a very-very long table, 600 rows.

skimr console output

long table

session info

Elin
  • 6,507
  • 3
  • 25
  • 47
koliii
  • 109
  • 1
  • 8
  • does this helps ? options(tibble.print_max = Inf). Use longtable argument in xtable to produce a table spanning several pages. – Cedric Nov 19 '17 at 13:37

1 Answers1

1

Skimr was just released on CRAN and the new version has a functionskim_to_list and one skim_to_wide that give you the results in two different wide versions. Use these instead of skim() e.g. skim_to_wide(iris).

What you are seeing is the default skim object. Another option you have is to use dplyr or other approach to put the data into the format you want.

Elin
  • 6,507
  • 3
  • 25
  • 47
  • FYI, you apply the `skim_to_wide()` function directly to your dataset, not the object created by `skim()`. – Chernoff May 26 '18 at 01:43