Fix vs. e.g. i.e. punctuation (#1249)

This commit is contained in:
Zeki Akyol
2023-01-27 18:51:22 +03:00
committed by GitHub
parent bd67dc7a62
commit 96f4ad4b7c
9 changed files with 13 additions and 13 deletions

View File

@@ -262,7 +262,7 @@ Once you've mastered `read_csv()`, using readr's other functions is straightforw
## Controlling column types {#sec-col-types}
A CSV file doesn't contain any information about the type of each variable (i.e., whether it's a logical, number, string, etc.), so readr will try to guess the type.
A CSV file doesn't contain any information about the type of each variable (i.e. whether it's a logical, number, string, etc.), so readr will try to guess the type.
This section describes how the guessing process works, how to resolve some common problems that cause it to fail, and, if needed, how to supply the column types yourself.
Finally, we'll mention a few general strategies that are useful if readr is failing catastrophically and you need to get more insight into the structure of your file.