Skip to content

Commit b186024

Browse files
authored
Fix typos (#6765)
* Update setDT.Rd removed redundant full-stop. * Update cdt.Rd tweaks to cdt * Update dcast.data.table.Rd remove redundant space
1 parent 296a97b commit b186024

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

man/cdt.Rd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
\alias{cdatatable}
33
\title{ data.table exported C routines }
44
\description{
5-
Some of internally used C routines are now exported. This interface should be considered experimental. List of exported C routines and their signatures are provided below in the usage section.
5+
Some of the internally used C routines are now exported. This interface should be considered experimental. List of exported C routines and their signatures are provided below in the usage section.
66
}
77
\usage{
88
# SEXP DT_subsetDT(SEXP x, SEXP rows, SEXP cols);
99
# p_DT_subsetDT = R_GetCCallable("data.table", "DT_subsetDT");
1010
}
1111
\details{
12-
Details how to use those can be found in \emph{Writing R Extensions} manual \emph{Linking to native routines in other packages} section.
12+
Details on how to use these can be found in the \emph{Writing R Extensions} manual \emph{Linking to native routines in other packages} section.
1313
An example use with \code{Rcpp}:
1414
\preformatted{
1515
dt = data.table::as.data.table(iris)

man/dcast.data.table.Rd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
\alias{dcast}
44
\title{Fast dcast for data.table}
55
\description{
6-
\code{dcast.data.table} is \code{data.table}'s long-to-wide reshaping tool. In the spirit of \code{data.table}, it is very fast and memory efficient, making it well-suited to handling large data sets in RAM. More importantly, it is capable of handling very large data quite efficiently in terms of memory usage. \code{dcast.data.table} can also cast multiple \code{value.var} columns and accepts multiple functions to \code{fun.aggregate}. See Examples for more.
6+
\code{dcast.data.table} is \code{data.table}'s long-to-wide reshaping tool. In the spirit of \code{data.table}, it is very fast and memory efficient, making it well-suited to handling large data sets in RAM. More importantly, it is capable of handling very large data quite efficiently in terms of memory usage. \code{dcast.data.table} can also cast multiple \code{value.var} columns and accepts multiple functions to \code{fun.aggregate}. See Examples for more.
77
}
88
99
\usage{

man/setDT.Rd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
\alias{setDT}
33
\title{Coerce lists and data.frames to data.table by reference}
44
\description{
5-
In \code{data.table} parlance, all \code{set*} functions change their input \emph{by reference}. That is, no copy is made at all, other than temporary working memory, which is as large as one column.. The only other \code{data.table} operator that modifies input by reference is \code{\link{:=}}. Check out the \code{See Also} section below for other \code{set*} function \code{data.table} provides.
5+
In \code{data.table} parlance, all \code{set*} functions change their input \emph{by reference}. That is, no copy is made at all, other than temporary working memory, which is as large as one column. The only other \code{data.table} operator that modifies input by reference is \code{\link{:=}}. Check out the \code{See Also} section below for other \code{set*} function \code{data.table} provides.
66

77
\code{setDT} converts lists (both named and unnamed) and data.frames to data.tables \emph{by reference}. This feature was requested on \href{https://stackoverflow.com/questions/20345022/convert-a-data-frame-to-a-data-table-without-copy}{Stackoverflow}.
88

0 commit comments

Comments
 (0)