From dd7774c535b0b9b86159f0365475983bc20799a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20L=C3=B3pez-Ib=C3=A1=C3=B1ez?= <2620021+MLopez-Ibanez@users.noreply.github.com> Date: Thu, 4 May 2023 20:09:12 +0100 Subject: [PATCH 1/2] fread is similar to read.delim (#5634) --- man/fread.Rd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/fread.Rd b/man/fread.Rd index cc96062dec..a2b69b0091 100644 --- a/man/fread.Rd +++ b/man/fread.Rd @@ -2,7 +2,7 @@ \alias{fread} \title{ Fast and friendly file finagler } \description{ - Similar to \code{read.table} but faster and more convenient. All controls such as \code{sep}, \code{colClasses} and \code{nrows} are automatically detected. + Similar to \code{\link[utils:read.delim]{read.delim()}} but faster and more convenient. All controls such as \code{sep}, \code{colClasses} and \code{nrows} are automatically detected. \code{bit64::integer64}, \code{\link{IDate}}, and \code{\link{POSIXct}} types are also detected and read directly without needing to read as character before converting. From 90e4ba52c0455cb5a5f11ac02ff25c944756e818 Mon Sep 17 00:00:00 2001 From: Michael Chirico Date: Sat, 13 Jan 2024 06:03:57 -0800 Subject: [PATCH 2/2] Use ?read.csv / ?read.delim --- man/fread.Rd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/fread.Rd b/man/fread.Rd index a2b69b0091..2ad0bf8a2e 100644 --- a/man/fread.Rd +++ b/man/fread.Rd @@ -2,7 +2,7 @@ \alias{fread} \title{ Fast and friendly file finagler } \description{ - Similar to \code{\link[utils:read.delim]{read.delim()}} but faster and more convenient. All controls such as \code{sep}, \code{colClasses} and \code{nrows} are automatically detected. + Similar to \code{\link[utils:read.csv]{read.csv()}} and \code{\link[utils:read.delim]{read.delim()}} but faster and more convenient. All controls such as \code{sep}, \code{colClasses} and \code{nrows} are automatically detected. \code{bit64::integer64}, \code{\link{IDate}}, and \code{\link{POSIXct}} types are also detected and read directly without needing to read as character before converting.