-
Notifications
You must be signed in to change notification settings - Fork 79
/
DESCRIPTION
167 lines (167 loc) · 5.01 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
Package: skimr
Title: Compact and Flexible Summaries of Data
Version: 2.1.5
Authors@R:
c(person(given = "Elin",
family = "Waring",
role = c("cre", "aut"),
email = "elin.waring@gmail.com"),
person(given = "Michael",
family = "Quinn",
role = "aut",
email = "msquinn@google.com"),
person(given = "Amelia",
family = "McNamara",
role = "aut",
email = "amcnamara@smith.edu"),
person(given = "Eduardo",
family = "Arino de la Rubia",
role = "aut",
email = "earino@gmail.com"),
person(given = "Hao",
family = "Zhu",
role = "aut",
email = "haozhu233@gmail.com"),
person(given = "Julia",
family = "Lowndes",
role = "ctb",
email = "lowndes@nceas.ucsb.edu"),
person(given = "Shannon",
family = "Ellis",
role = "aut",
email = "sellis18@jhmi.edu"),
person(given = "Hope",
family = "McLeod",
role = "ctb",
email = "hmgit2@gmail.com"),
person(given = "Hadley",
family = "Wickham",
role = "ctb",
email = "hadley@rstudio.com"),
person(given = "Kirill",
family = "Müller",
role = "ctb",
email = "krlmlr+r@mailbox.org"),
person(family = "RStudio, Inc.",
role = "cph",
comment = "Spark functions"),
person(given = "Connor",
family = "Kirkpatrick",
role = "ctb",
email = "hello@connorkirkpatrick.com"),
person(given = "Scott",
family = "Brenstuhl",
role = "ctb",
email = "brenstsr@miamioh.edu"),
person(given = "Patrick",
family = "Schratz",
role = "ctb",
email = "patrick.schratz@gmail.com"),
person(given = "lbusett",
role = "ctb",
email = "lbusett@gmail.com"),
person(given = "Mikko",
family = "Korpela",
role = "ctb",
email = "mvkorpel@iki.fi"),
person(given = "Jennifer",
family = "Thompson",
role = "ctb",
email = "thompson.jennifer@gmail.com"),
person(given = "Harris",
family = "McGehee",
role = "ctb",
email = "mcgehee.harris@gmail.com"),
person(given = "Mark",
family = "Roepke",
role = "ctb",
email = "mroepke5@gmail.com"),
person(given = "Patrick",
family = "Kennedy",
role = "ctb",
email = "pkqstr@protonmail.com"),
person(given = "Daniel",
family = "Possenriede",
role = "ctb",
email = "possenriede@gmail.com"),
person(given = "David",
family = "Zimmermann",
role = "ctb",
email = "david_j_zimmermann@hotmail.com"),
person(given = "Kyle",
family = "Butts",
role ="ctb",
email = "buttskyle96@gmail.com"),
person(given = "Bastian",
family = "Torges",
role ="ctb",
email = "bastian.torges@gmail.com"),
person(given = "Rick",
family = "Saporta",
role = "ctb",
email = "Rick@TheFarmersDog.com"),
person(given = "Henry",
family = "Morgan Stewart",
role = "ctb",
email = "henry.morganstewart@gmail.com")
)
Description: A simple to use summary function that can be used with pipes
and displays nicely in the console. The default summary statistics may
be modified by the user as can the default formatting. Support for
data frames and vectors is included, and users can implement their own
skim methods for specific object types as described in a vignette.
Default summaries include support for inline spark graphs.
Instructions for managing these on specific operating systems are
given in the "Using skimr" vignette and the README.
License: GPL-3
URL: https://docs.ropensci.org/skimr/ (website),
https://github.com/ropensci/skimr/
BugReports: https://github.com/ropensci/skimr/issues
Depends:
R (>= 3.1.2)
Imports:
cli,
dplyr (>= 0.8.0),
knitr (>= 1.2),
magrittr (>= 1.5),
pillar (>= 1.6.4),
purrr,
repr,
rlang (>= 0.3.1),
stats,
stringr (>= 1.1),
tibble (>= 2.0.0),
tidyr (>= 1.0),
tidyselect (>= 1.0.0),
vctrs
Suggests:
covr,
crayon,
data.table,
dtplyr,
extrafont,
haven,
lubridate,
rmarkdown,
testthat (>= 2.0.0),
withr
VignetteBuilder:
knitr
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3
Collate:
'deprecated.R'
'dplyr.R'
'stats.R'
'skim_with.R'
'get_skimmers.R'
'reshape.R'
'sfl.R'
'skim.R'
'skim_obj.R'
'skim_print.R'
'skimr-package.R'
'summary.R'
'utils.R'
'vctrs.R'