forked from tidyverse/vroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_pkgdown.yml
81 lines (72 loc) · 2.2 KB
/
_pkgdown.yml
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
url: https://vroom.r-lib.org
template:
package: tidytemplate
bootstrap: 5
includes:
in_header: |
<script defer data-domain="vroom.r-lib.org,all.tidyverse.org" src="https://plausible.io/js/plausible.js"></script>
development:
mode: auto
news:
releases:
- text: "vroom 1.1.0"
href: https://www.tidyverse.org/blog/2020/01/vroom-1-1-0/
- text: "vroom 1.0.0"
href: https://www.tidyverse.org/articles/2019/05/vroom-1-0-0/
reference:
- title: Read rectangular files
desc: >
These functions parse rectangular files (like csv or fixed-width format)
into tibbles. They specify the overall structure of the file, and how each
line is divided up into fields.
contents:
- vroom
- vroom_fwf
- problems
- title: Write rectangular files
desc: >
These functions write data frames to disk, or to convert them to in-memory strings.
contents:
- vroom_write
- vroom_write_lines
- vroom_format
- output_column
- title: Column specification
desc: >
The column specification describes how each column is parsed from a
character vector in to a more specific data type. vroom does make
an educated guess about the type of each column, but you'll need override
those guesses when it gets them wrong.
contents:
- as.col_spec
- cols
- cols_condense
- guess_type
- title: Locale controls
desc: >
The "locale" controls all options that vary from country-to-country or
language-to-language. This includes things like the character used as
the decimal mark, the names of days of the week, and the encoding. See
`vignette("locales")` for more details.
contents:
- locale
- date_names
- title: Data generation
desc: >
vroom provides a number of functions to generate datasets based on a column
specification. These are mainly used for development and benchmarking, but
can also be useful for reproducing bugs without requiring the original
dataset.
contents:
- gen_tbl
- generators
- title: Misc tools
desc: >
These functions are used as helpers for other functions, or to inspect objects.
contents:
- vroom_lines
- vroom_altrep_opts
- vroom_altrep
- vroom_example
- vroom_progress
- vroom_str