forked from tidyverse/readr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_pkgdown.yml
137 lines (123 loc) · 3.6 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
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
url: https://readr.tidyverse.org
template:
package: tidytemplate
authors:
"Jim Hester":
href: http://jimhester.com
development:
mode: auto
home:
strip_header: true
links:
- text: Learn more
href: http://r4ds.had.co.nz/data-import.html
navbar:
type: default
left:
- text: Home
href: index.html
- text: Overview
href: articles/readr.html
- text: Locales
href: articles/locales.html
- text: Reference
href: reference/index.html
- text: News
menu:
- text: "Release notes"
- text: "Version 1.4.0"
href: https://www.tidyverse.org/blog/2020/10/readr-1-4-0/
- text: "Version 1.3.1"
href: articles/2018/12/readr-1-3-1/
- text: "Version 1.0.0"
href: articles/releases/readr-1.0.0.html
- text: "Version 0.2.0"
href: articles/releases/readr-0.2.0.html
- text: "Version 0.1.0"
href: articles/releases/readr-0.1.0.html
- text: "------------------"
- text: "Change log"
href: news/index.html
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:
- read_delim
- read_fwf
- read_log
- read_table
- title: Read non-rectangular files
desc: >
These functions parse non-rectangular files (like csv or fixed-width format)
into long (so-called melted) format. They specify the overall structure of
the file, and how each line is divided up into fields.
contents:
- melt_delim
- melt_fwf
- melt_table
- title: Column specification
desc: >
The column specification describes how each column is parsed from a
character vector in to a more specific data type. readr does make
an educated guess about the type of each column, but you'll need override
those guesses when it gets them wrong.
contents:
- problems
- cols
- cols_condense
- spec_delim
- title: Column parsers
desc: >
Column parsers define how a single column is parsed, or how to parse a single
vector. Each parser comes in two forms: `parse_xxx()` which is used to parse
vectors that already exist in R and `col_xxx()` which is used to parse
vectors as they are loaded by a `read_xxx()` function.
contents:
- parse_character
- parse_datetime
- parse_factor
- parse_guess
- parse_number
- col_skip
- 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: Write rectangular files
desc: >
Despite its name, readr also provides a number of functions to __write__
data frames to disk, or to convert them to in-memory strings.
contents:
- format_csv
- write_csv
- title: Low-level IO and debugging tools
desc: >
These functions can be used with non-rectangular files, binary data,
and to help debug rectangular files that fail to parse.
contents:
- read_file
- read_lines
- count_fields
- guess_encoding
- type_convert
- readr_example
- clipboard
- show_progress
- title: Chunked API
desc: >
The chunked API allows you to read in files that are larger than memory,
processing a chunk at a time. The API experimental: please try it out but
be aware that it may change in the future.
contents:
- callback
- read_delim_chunked
- melt_delim_chunked
- read_lines_chunked