Skip to content

Commit e3f13bf

Browse files
committed
updated
1 parent 77f26c4 commit e3f13bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vignettes/datatable-fread-and-fwrite.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ This ensures:
138138

139139
**Out-of-Sample Type Exceptions**
140140

141-
If a type change occurs outside the sampled rows, `fread()` automatically detects it and rereads only the affected columns from the beginning. This ensures correct type assignment without requiring user intervention. For example, a column sampled as integer might later contain `00A` — triggering an automatic reread as character.
141+
If a type change occurs outside the sampled rows, `fread()` automatically detects it and rereads the file to ensure correct type assignment, without requiring user intervention. For example, a column sampled as integer might later contain `00A` — triggering an automatic reread as character.
142142

143143
All detection logic and any rereads are detailed when `verbose=TRUE` is enabled.
144144

@@ -198,7 +198,7 @@ The integer64 argument (and corresponding option) accepts the following values:
198198

199199
- `"integer64"` (default): Reads large integers as `bit64::integer64` with full precision.
200200

201-
- `"double"` or `"numeric"`: Reads large integers as double-precision numbers, potentially losing precision silently (similar to base R).
201+
- `"double"` or `"numeric"`: Reads large integers as double-precision numbers, potentially losing precision silently (similar to `utils::read.csv` in base R).
202202

203203
- `"character"`: Reads large integers as character strings.
204204

0 commit comments

Comments
 (0)