I used skimr package for descriptive table. On using View() function it is showing a very-very long table, 600 rows.
Asked
Active
Viewed 649 times
1 Answers
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