If you are viewing this file on CRAN, please check latest news on GitHub where the formatting is also better.
Benchmarks are regularly updated: here
data.table v1.12.7 (in development)
data.table v1.12.6 (18 Oct 2019)
-
shift()
on ananotime
with the defaultfill=NA
now fills ananotime
missing value correctly, #3945. Thanks to @mschubmehl for reporting and fixing in PR #3942. -
Compilation failed on CRAN's MacOS due to an older version of
zlib.h/zconf.h
which did not havez_const
defined, #3939. Other open-source projects unrelated to R have experienced this problem on MacOS too. We have followed the common practice of removingz_const
to support the olderzlib
versions, and data.table's release procedures have gained agrep
to ensurez_const
isn't used again by accident in future. The libraryzlib
is used forfwrite
's new feature of multithreaded compression on-the-fly; see item 3 of 1.12.4 below. -
A runtime error in
fwrite
's compression, but only observed so far on Solaris 10 32bit with zlib 1.2.8 (Apr 2013), #3931:Error -2: one or more threads failed to allocate buffers or there was a compression error.
In case it happens again, this area has been made more robust and the error more detailed. As is often the case, investigating the Solaris problem revealed secondary issues in the same area of the code. In this case, some%d
in verbose output should have been%lld
. This obliquity that CRAN's Solaris provides is greatly appreciated. -
A leak could occur in the event of an unsupported column type error, or if working memory could only partially be allocated; #3940. Found thanks to
clang
's Leak Sanitizer (prompted by CRAN's diligent use of latest tools), and two tests in the test suite which tested the unsupported-type error.
- Many thanks to Kurt Hornik for fixing R's S3 dispatch of
rbind
andcbind
methods, #3948. WithR>=4.0.0
(current R-devel),data.table
now registers the S3 methodscbind.data.table
andrbind.data.table
, and no longer applies the workaround documented in FAQ 2.24.
data.table v1.12.4 (03 Oct 2019)
-
rleid()
functions now support long vectors (length > 2 billion). -
fread()
:- now skips embedded
NUL
(\0
), #3400. Thanks to Marcus Davy for reporting with examples, Roy Storey for the initial PR, and Bingjie Qian for testing this feature on a very complicated real-world file. colClasses
now supports'complex'
,'raw'
,'Date'
,'POSIXct'
, and user-defined classes (so long as anas.
method exists), #491 #1634 #2610. Any error during coercion results in a warning and the column is left as the default type (probably"character"
). Thanks to @hughparsonage for the PR.stringsAsFactors=0.10
will factorize any character column containing under0.10*nrow
unique strings, #2025. Thanks to @hughparsonage for the PR.colClasses=list(numeric=20:30, numeric="ID")
will apply thenumeric
type to column numbers20:30
as before and now also column name"ID"
; i.e. all duplicate class names are now respected rather than only the first. This need may arise when specifying some columns by name and others by number, as in this example. Thanks to @hughparsonage for the PR.- gains
yaml
(defaultFALSE
) and the ability to parse CSVY-formatted input files; i.e., csv files with metadata in a header formatted as YAML (http://csvy.org/), #1701. See?fread
and files in/inst/tests/csvy/
for sample formats. Please provide feedback if you find this feature useful and would like extended capabilities. For now, consider it experimental, meaning the API/arguments may change. Thanks to @leeper atrio
for the inspiration and @MichaelChirico for implementing. select
can now be used to specify types for just the columns selected, #1426. Just likecolClasses
it can be a named vector ofcolname=type
pairs, or a namedlist
oftype=col(s)
pairs. For example:
fread(file, select=c(colD="character", # returns 2 columns: colD,colA colA="integer64")) fread(file, select=list(character="colD", # returns 5 columns: colD,8,9,10,colA integer= 8:10, character="colA"))
- gains
tmpdir=
argument which is passed totempfile()
whenever a temporary file is needed. Thanks to @mschubmehl for the PR. As before, settingTMPDIR
(to/dev/shm
for example) before starting the R session still works too; see?base::tempdir
.
- now skips embedded
-
fwrite()
:- now writes compressed
.gz
files directly, #2016. Compression, likefwrite()
, is multithreaded and compresses each chunk on-the-fly (a full size intermediate file is not created). Use a ".gz" extension, or the newcompress=
option. Many thanks to Philippe Chataignon for the significant PR. For example:
DT = data.table(A=rep(1:2, 100e6), B=rep(1:4, 50e6)) fwrite(DT, "data.csv") # 763MB; 1.3s fwrite(DT, "data.csv.gz") # 2MB; 1.6s identical(fread("data.csv.gz"), DT)
Note that compression is handled using
zlib
library. In the unlikely event of missingzlib.h
, on a machine that is compilingdata.table
from sources, one may getfwrite.c
compilation errorzlib.h: No such file or directory
. As of now, the easiest solution is to install missing library usingsudo apt install zlib1g-dev
(Debian/Ubuntu). Installing R (r-base-dev
) depends onzlib1g-dev
so this should be rather uncommon. If it happens to you please upvote related issue #3872.-
Gains
yaml
argument matching that offread
, #3534. See the item infread
for a bit more detail; here, we'd like to reiterate that feedback is appreciated in the initial phase of rollout for this feature. -
Gains
bom
argument to add a byte order mark (BOM) at the beginning of the file to signal that the file is encoded in UTF-8, #3488. Thanks to Stefan Fleck for requesting and Philippe Chataignon for implementing. -
Now supports type
complex
, #3690. -
Gains
scipen
#2020, the number 1 most-requested feature #3189. The default isgetOption("scipen")
so thatfwrite
will now respect R's option in the same way asbase::write.csv
andbase::format
, as expected. The parameter and option name have been kept the same as base R'sscipen
for consistency and to aid online search. It stands for 'scientific penalty'; i.e., the number of characters to add to the width within which non-scientific number format is used if it will fit. A high penalty essentially turns off scientific format. We believe that common practice is to use a value of 999, however, if you do use 999, because your data might include very long numbers such as10^300
,fwrite
needs to account for the worst case field width in its buffer allocation per thread. This may impact space or time. If you experience slowdowns or unacceptable memory usage, please passverbose=TRUE
tofwrite
, inspect the output, and report the issue. A workaround, until we can determine the best strategy, may be to pass a smaller value toscipen
, such as 50. We have observed thatfwrite(DT, scipen=50)
appears to write10^50
accurately, unlike base R. However, this may be a happy accident and not apply generally. Further work may be needed in this area.
DT = data.table(a=0.0001, b=1000000) fwrite(DT) # a,b # 1e-04,1e+06 fwrite(DT,scipen=1) # a,b # 0.0001,1e+06 fwrite(DT,scipen=2) # a,b # 0.0001,1000000 10^50 # [1] 1e+50 options(scipen=50) 10^50 # [1] 100000000000000007629769841091887003294964970946560 fwrite(data.table(A=10^50)) # A # 100000000000000000000000000000000000000000000000000
- now writes compressed
-
Assigning to one item of a list column no longer requires the RHS to be wrapped with
list
or.()
, #950.> DT = data.table(A=1:3, B=list(1:2,"foo",3:5)) > DT A B <int> <list> 1: 1 1,2 2: 2 foo 3: 3 3,4,5 > # The following all accomplish the same assignment: > DT[2, B:=letters[9:13]] # was error, now works > DT[2, B:=.(letters[9:13])] # was error, now works > DT[2, B:=.(list(letters[9:13]))] # .(list()) was needed, still works > DT A B <int> <list> 1: 1 1,2 2: 2 i,j,k,l,m 3: 3 3,4,5
-
print.data.table()
gains an option to display the timezone ofPOSIXct
columns when available, #2842. Thanks to Michael Chirico for reporting and Felipe Parages for the PR. -
New functions
nafill
andsetnafill
, #854. Thanks to Matthieu Gomez for the request and Jan Gorecki for implementing.DT = setDT(lapply(1:100, function(i) sample(c(rnorm(9e6), rep(NA_real_, 1e6))))) format(object.size(DT), units="GB") ## 7.5 Gb zoo::na.locf(DT, na.rm=FALSE) ## zoo 53.518s setDTthreads(1L) nafill(DT, "locf") ## DT 1 thread 7.562s setDTthreads(0L) nafill(DT, "locf") ## DT 40 threads 0.605s setnafill(DT, "locf") ## DT in-place 0.367s
-
New variable
.Last.updated
(similar to R's.Last.value
) contains the number of rows affected by the most recent:=
orset()
, #1885. For details see?.Last.updated
. -
between()
and%between%
are faster forPOSIXct
, #3519, and now support the.()
alias, #2315. Thanks to @Henrik-P for the reports. There is now also support forbit64
'sinteger64
class and more robust coercion of types, #3517.between()
gainscheck=
which checksany(lower>upper)
; off by default for speed in particular for type character. -
New convenience functions
%ilike%
and%flike%
which map to newlike()
argumentsignore.case
andfixed
respectively, #3333.%ilike%
is for case-insensitive pattern matching.%flike%
is for more efficient matching of fixed strings. Thanks to @andreasLD for providing most of the core code. -
on=.NATURAL
(or alternativelyX[on=Y]
#3621) joins two tables on their common column names, so called natural join, #629. Thanks to David Kulp for request. As before, whenon=
is not provided,X
must have a key and the key columns are used to join (like rownames, but multi-column and multi-type). -
as.data.table
gainskey
argument mirroring its use insetDT
anddata.table
, #890. As a byproduct, the arguments ofas.data.table.array
have changed order, which could affect code relying on positional arguments to this method. Thanks @cooldome for the suggestion and @MichaelChirico for implementation. -
merge.data.table
is now exported, #2618. We realize that S3 methods should not ordinarily be exported. Rather, the method should be invoked via S3 dispatch. But users continue to request its export, perhaps because of intricacies relating to the fact that data.table inherits from data.frame, there are two arguments tomerge()
but S3 dispatch applies just to the first, and a desire to explicitly calldata.table::merge.data.table
from package code. Thanks to @AndreMikulec for the most recent request. -
New rolling function to calculate rolling sum has been implemented and exported, see
?frollsum
, #2778. -
setkey
to an existing index now uses the index, #2889. Thanks to @MichaelChirico for suggesting and @saraswatmks for the PR. -
DT[order(col)[1:5], ...]
(i.e. wherei
is a compound expression involvingorder()
) is now optimized to usedata.table
's multithreadedforder
, #1921. This example is not a fully optimal top-N query since the full ordering is still computed. The improvement is that the call toorder()
is computed faster for anyi
expression usingorder
. -
as.data.table
now unpacks columns in adata.frame
which are themselves adata.frame
ormatrix
. This need arises when parsing JSON, a corollary in #3369. Bug fix 19 in v1.12.2 (see below) added a helpful error (rather than segfault) to detect such invaliddata.table
, and promised thatas.data.table()
would unpack these columns in the next release (i.e. this release) so that the invaliddata.table
is not created in the first place. Further,setDT
now warns if it observes such columns and suggests usingas.data.table
instead, #3760. -
CJ
has been ported to C and parallelized, thanks to a PR by Michael Chirico, #3596. All types benefit, but, as in manydata.table
operations, factors benefit more than character.# default 4 threads on a laptop with 16GB RAM and 8 logical CPU ids = as.vector(outer(LETTERS, LETTERS, paste0)) system.time( CJ(ids, 1:500000) ) # 3.9GB; 340m rows # user system elapsed (seconds) # 3.000 0.817 3.798 # was # 1.800 0.832 2.190 # now # ids = as.factor(ids) system.time( CJ(ids, 1:500000) ) # 2.6GB; 340m rows # user system elapsed (seconds) # 1.779 0.534 2.293 # was # 0.357 0.763 0.292 # now
-
New function
fcoalesce(...)
has been written in C, and is multithreaded fornumeric
andfactor
. It replaces missing values according to a prioritized list of candidates (as per SQL COALESCE,dplyr::coalesce
, andhutils::coalesce
), #3424. It accepts any number of vectors in several forms. For example, given three vectorsx
,y
, andz
, where eachNA
inx
is to be replaced by the corresponding value iny
if that is non-NA, else the corresponding value inz
, the following equivalent forms are all accepted:fcoalesce(x,y,z)
,fcoalesce(x,list(y,z))
, andfcoalesce(list(x,y,z))
. Being a new function, its behaviour is subject to change particularly for typelist
, #3712.# default 4 threads on a laptop with 16GB RAM and 8 logical CPU N = 100e6 x = replicate(5, {x=sample(N); x[sample(N, N/2)]=NA; x}, simplify=FALSE) # 2GB y1 = do.call(dplyr::coalesce, x)) y2 = do.call(hutils::coalesce, x)) y3 = do.call(data.table::fcoalesce, x)) # user system elapsed (seconds) # 4.935 1.876 6.810 # dplyr::coalesce # 3.122 0.831 3.956 # hutils::coalesce # 0.915 0.099 0.379 # data.table::fcoalesce identical(y1,y2) && identical(y1,y3) # TRUE
-
Type
complex
is now supported bysetkey
,setorder
,:=
,by=
,keyby=
,shift
,dcast
,frank
,rowid
,rleid
,CJ
,fcoalesce
,unique
, anduniqueN
, #3690. Thanks to Gareth Ward and Elio Campitelli for their reports and input. Sortingcomplex
is achieved the same way as base R; i.e., first by the real part then by the imaginary part (as if thecomplex
column were two separate columns ofdouble
). There is no plan to support joining/merging oncomplex
columns until a user demonstrates a need for that. -
setkey
,[key]by=
andon=
in verbose mode (options(datatable.verbose=TRUE)
) now detect any columns inheriting fromDate
which are stored as 8 byte double, test if any fractions are present, and if not suggest using a 4 byte integer instead (such asdata.table::IDate
) to save space and time, #1738. In future this could be upgraded tomessage
orwarning
depending on feedback. -
New function
fifelse(test, yes, no, na)
has been implemented in C by Morgan Jacob, #3657 and #3753. It is comparable tobase::ifelse
,dplyr::if_else
,hutils::if_else
, and (forthcoming)vctrs::if_else()
. It returns a vector of the same length astest
but unlikebase::ifelse
the output type is consistent with those ofyes
andno
. Please see?data.table::fifelse
for more details.# default 4 threads on a laptop with 16GB RAM and 8 logical CPU x = sample(c(TRUE,FALSE), 3e8, replace=TRUE) # 1GB microbenchmark::microbenchmark( base::ifelse(x, 7L, 11L), dplyr::if_else(x, 7L, 11L), hutils::if_else(x, 7L, 11L), data.table::fifelse(x, 7L, 11L), times = 5L, unit="s" ) # Unit: seconds # expr min med max neval # base::ifelse(x, 7L, 11L) 8.5 8.6 8.8 5 # dplyr::if_else(x, 7L, 11L) 9.4 9.5 9.7 5 # hutils::if_else(x, 7L, 11L) 2.6 2.6 2.7 5 # data.table::fifelse(x, 7L, 11L) 1.5 1.5 1.6 5 # setDTthreads(1) # data.table::fifelse(x, 7L, 11L) 0.8 0.8 0.9 5 # setDTthreads(2) # data.table::fifelse(x, 7L, 11L) 0.4 0.4 0.5 5 # setDTthreads(4)
-
transpose
gainskeep.names=
andmake.names=
arguments, #1886. Previously, column names were dropped and there was no way to keep them.keep.names="rn"
keeps the column names and puts them in the"rn"
column of the result. Similarly,make.names="rn"
uses column"rn"
as the column names of the result. Both arguments areNULL
by default for backwards compatibility. As these new arguments are new, they are subject to change in future according to community feedback. Thanks to @ghost for the request. -
Added a
data.table
method forutils::edit
to ensure adata.table
is returned, for convenience, #593. -
More efficient optimization of many columns in
j
(e.g. from.SD
), #1470. Thanks @Jorges1000 for the report. -
setnames(DT, old, new)
now omits anyold==new
to save redundant key and index name updates, #3783.setnames(DT, new)
(i.e. not providingold
) already omitted any column name updates wherenames(DT)==new
; e.g.setnames(DT, gsub('^_', '', names(DT)))
exits early if no columns start with_
. -
[[
by group is now optimized for regular vectors (not type list), #3209. Thanks @renkun-ken for the suggestion.[
by group was already optimized. Please file a feature request if you would like this optimization for list columns. -
New function
frollapply
for rolling computation of arbitrary R functions (caveat: inputx
is coerced to numeric beforehand, and the function must return a scalar numeric value). The API is consistent to extant rolling functionsfrollmean
andfrollsum
; note that it will generally be slower than those functions because (1) the known functions use our optimized internal C implementation and (2) there is no thread-safe API to R's Ceval
. Neverthelessfrollapply
is faster than correspondingbase
-only andzoo
versions:set.seed(108) x = rnorm(1e6); n = 1e3 base_rollapply = function(x, n, FUN) { nx = length(x) ans = rep(NA_real_, nx) for (i in n:nx) ans[i] = FUN(x[(i-n+1):i]) ans } system.time(base_rollapply(x, n, mean)) system.time(zoo::rollapplyr(x, n, function(x) mean(x), fill=NA)) system.time(zoo::rollmeanr(x, n, fill=NA)) system.time(frollapply(x, n, mean)) system.time(frollmean(x, n)) ### fun mean sum median # base_rollapply 8.815 5.151 60.175 # zoo::rollapply 34.373 27.837 88.552 # zoo::roll[fun] 0.215 0.185 NA ## median not fully supported # frollapply 5.404 1.419 56.475 # froll[fun] 0.003 0.002 NA ## median not yet supported
-
setnames()
now accepts functions inold=
andnew=
, #3703. Thanks @smingerson for the feature request and @shrektan for the PR.DT = data.table(a=1:3, b=4:6, c=7:9) setnames(DT, toupper) names(DT) # [1] "A" "B" "C" setnames(DT, c(1,3), tolower) names(DT) # [1] "a" "B" "c"
-
:=
andset()
now use zero-copy type coercion. Accordingly,DT[..., integerColumn:=0]
andset(DT,i,j,0)
no longer warn about the0
('numeric') needing to be0L
('integer') because there is no longer any time or space used for this coercion. The old long warning was off-putting to new users ("what and why L?"), whereas advanced users appreciated the old warning so they could avoid the coercion. Although the time and space for one coercion in a single call is unmeasurably small, when placed in a loop the small overhead of any allocation on R's heap could start to become noticeable (more so forset()
whose purpose is low-overhead looping). Further, when assigning a value across columns of varying types, it could be inconvenient to supply the correct type for every column. Hence, zero-copy coercion was introduced to satisfy all these requirements. A warning is still issued, as before, when fractional data is discarded; e.g. when 3.14 is assigned to an integer column. Zero-copy coercion applies to length>1 vectors as well as length-1 vectors.
-
first
,last
,head
andtail
by group no longer error in some cases, #2030 #3462. Thanks to @franknarf1 for reporting. -
keyby=colName
could use the wrong index and return incorrect results if bothcolName
andcolNameExtra
(wherecolName
is a leading subset of characters ofcolNameExtra
) are column names and an index exists oncolNameExtra
, #3498. Thanks to Xianying Tan for the detailed report and pinpointing the source line at fault. -
A missing item in
j
such asj=.(colA, )
now gives a helpful error (Item 2 of the .() or list() passed to j is missing
) rather than the unhelpful errorargument "this_jsub" is missing, with no default
(v1.12.2) orargument 2 is empty
(v1.12.0 and before), #3507. Thanks to @eddelbuettel for the report. -
fwrite()
could crash when writing very long strings such as 30 million characters, #2974, and could be unstable in memory constrained environments, #2612. Thanks to @logworthy and @zachokeeffe for reporting and Philippe Chataignon for fixing in PR #3288. -
fread()
could crash ifquote=""
(i.e. ignore quotes), the last line is too short, andfill=TRUE
, #3524. Thanks to Jiucang Hao for the report and reproducible example. -
Printing could occur unexpectedly when code is run with
source
, #2369. Thanks to @jan-glx for the report and reproducible example. -
Grouping by
NULL
on zero rowsdata.table
now behaves consistently to non-zero rowsdata.table
, #3530. Thanks to @SymbolixAU for the report and reproducible example. -
GForce optimization of
median
did not retain the class; e.g.median
ofDate
orPOSIXct
would return a raw number rather than retain the date class, #3079. Thanks to @Henrik-P for reporting. -
DT[, format(mean(date,""%b-%Y")), by=group]
could fail withinvalid 'trim' argument
, #1876. Thanks to Ross Holmberg for reporting. -
externalVar=1:5; DT[, mean(externalVar), by=group]
could return incorrect results rather than a constant (3
in this example) for each group, #875. GForce optimization was being applied incorrectly to themean
without realizingexternalVar
was not a column. -
test.data.table()
now passes in non-English R sessions, #630 #3039. Each test still checks that the number of warnings and/or errors produced is correct. However, a message is displayed suggesting to restart R withLANGUAGE=en
in order to test that the text of the warning and/or error messages are as expected, too. -
Joining a double column in
i
containing say 1.3, with an integer column inx
containing say 1, would result in the 1.3 matching to 1, #2592, and joining a factor column to an integer column would match the factor's integers rather than error. The type coercion logic has been revised and strengthened. Many thanks to @MarkusBonsch for reporting and fixing. Joining a character column ini
to a factor column inx
is now faster and retains the character column in the result rather than coercing it to factor. Joining an integer column ini
to a double column inx
now retains the integer type in the result rather than coercing the integers into the double type. Logical columns may now only be joined to logical columns, other than all-NA columns which are coerced to the matching column's type. All coercions are reported in verbose mode:options(datatable.verbose=TRUE)
. -
Attempting to recycle 2 or more items into an existing
list
column now gives the intended helpful error rather thanInternal error: recycle length error not caught earlier.
, #3543. Thanks to @MichaelChirico for finding and reporting. -
Subassigning using
$<-
to adata.table
embedded in a list column of a single-rowdata.table
could fail, #3474. Note that$<-
is not recommended; please use:=
instead which already worked in this case. Thanks to Jakob Richter for reporting. -
rbind
andrbindlist
of zero-row items now retain (again) the unused levels of any (zero-length) factor columns, #3508. This was a regression in v1.12.2 just for zero-row items. Unused factor levels were already retained for items havingnrow>=1
. Thanks to Gregory Demin for reporting. -
rbind
andrbindlist
of an item containing an ordered factor with levels containing anNA
(as opposed to an NA integer) could segfault, #3601. This was a a regression in v1.12.2. Thanks to Damian Betebenner for reporting. Also a related segfault when recycling a length-1 factor column, #3662. -
example(":=", local=TRUE)
now works rather than error, #2972. Thanks @vlulla for the report. -
rbind.data.frame
onIDate
columns changed the column frominteger
todouble
, #2008. Thanks to @rmcgehee for reporting. -
merge.data.table
now retains any custom classes of the first argument, #1378. Thanks to @michaelquinn32 for reopening. -
c
,seq
andmean
ofITime
objects now retain theITime
class via newITime
methods, #3628. Thanks @UweBlock for reporting. Thecut
andsplit
methods forITime
have been removed since the default methods work, #3630. -
as.data.table.array
now handles the case when some of the array's dimension names areNULL
, #3636. -
Adding a
list
column usingcbind
,as.data.table
, ordata.table
now works rather than treating thelist
as if it were a set of columns and introducing an invalid NA column name, #3471. However, please note that using:=
to add columns is preferred.cbind( data.table(1:2), list(c("a","b"),"a") ) # V1 V2 NA # v1.12.2 and before # <int> <char> <char> # 1: 1 a a # 2: 2 b a # # V1 V2 # v1.12.4+ # <int> <list> # 1: 1 a,b # 2: 2 a
-
Incorrect sorting/grouping results due to a bug in Intel's
icc
compiler 2019 (Version 19.0.4.243 Build 20190416) has been worked around thanks to a report and fix by Sebastian Freundt, #3647. Please rundata.table::test.data.table()
. If that passes, your installation does not have the problem. -
column not found
could incorrectly occur in rare non-equi-join cases, #3635. Thanks to @UweBlock for the report. -
Slight fix to the logic for auto-naming the
by
clause for using a custom function likeevaluate
to now be namedevaluate
instead of the name of the first symbolic argument, #3758. -
Column binding of zero column
data.table
will now work as expected, #3334. Thanks to @kzenstratus for the report. -
integer64
sum-by-group is now properly optimized, #1647, #3464. Thanks to @mlandry22-h2o for the report. -
From v1.12.0
between()
and%between%
interpret missing values inlower=
orupper=
as unlimited bounds. A new parameterNAbounds
has been added to achieve the old behaviour of returningNA
, #3522. Thanks @cguill95 for reporting. This is now consistent for character input, #3667 (thanks @AnonymousBoba), and classnanotime
is now supported too. -
integer64
defined on a subset of a new column would leave "gibberish" on the remaining rows, #3723. A bug inrbindlist
with the same root cause was also fixed, #1459. Thanks @shrektan and @jangorecki for the reports. -
groupingsets
functions now properly handle alone special symbols when using an empty set to group by, #3653. Thanks to @Henrik-P for the report. -
A
data.table
created usingsetDT()
on adata.frame
containing identical columns referencing each other would causesetkey()
to return incorrect results, #3496 and #3766. Thanks @kirillmayantsev and @alex46015 for reporting, and @jaapwalhout and @Atrebas for helping to debug and isolate the issue. -
x[, round(.SD, 1)]
and similar operations on the whole of.SD
could return a locked result, incorrectly preventing:=
on the result, #2245. Thanks @grayskripko for raising. -
Using
get
/mget
inj
could cause.SDcols
to be ignored or reordered, #1744, #1965, and #2036. Thanks @franknarf1, @MichaelChirico, and @TonyBonen, for the reports. -
DT[, i-1L, with=FALSE]
would misinterpret the minus sign and return an incorrect result, #2019. Thanks @cguill95 for the report. -
DT[id==1, DT2[.SD, on="id"]]
(i.e. joining from.SD
inj
) could incorrectly fail in some cases due to.SD
being locked, #1926, and when updating-on-join with factors #3559 #2099. Thanks @franknarf1 and @Henrik-P for the reports and for diligently tracking use cases for almost 3 years! -
as.IDate.POSIXct
returnedNA
for UTC times before Dec 1901 and after Jan 2038, #3780. Thanks @gschett for the report. -
rbindlist
now returns correct idcols for lists with different length vectors, #3785, #3786. Thanks to @shrektan for the report and fix. -
DT[ , !rep(FALSE, ncol(DT)), with=FALSE]
correctly returns the full table, #3013 and #2917. Thanks @alexnss and @DavidArenburg for the reports. -
shift(x, 0:1, type='lead', give.names=TRUE)
useslead
in all returned column names, #3832. Thanks @daynefiler for the report. -
Subtracting two
POSIXt
objects by group could lead to incorrect results because thebase
method internally callsdifftime
withunits='auto'
;data.table
does not notice if the chosen units differ by group and only the last group'sunits
attribute was retained, #3694 and #761. To surmount this, we now internally forceunits='secs'
on allPOSIXt-POSIXt
calls (reported whenverbose=TRUE
); generally we recommend callingdifftime
directly instead. Thanks @oliver-oliver and @boethian for the reports. -
Using
get
/mget
inj
could cause.SDcols
to be ignored or reordered, #1744, #1965, #2036, and #2946. Thanks @franknarf1, @MichaelChirico, @TonyBonen, and Steffen J. (StackOverflow) for the reports. -
DT[...,by={...}]
now handles expressions in{
, #3156. Thanks to @tdhock for the report. -
:=
could change adata.table
creation statement in the body of the function calling it, or a variable in calling scope, #3890. Many thanks to @kirillmayantsev for the detailed reports. -
Grouping could create a
malformed factor
and/or segfault when the factors returned by each group did not have identical levels, #2199 and #2522. Thanks to Václav Hausenblas, @franknarf1, @ben519, and @Henrik-P for reporting. -
rbindlist
(and printing adata.table
with over 100 rows because that usesrbindlist(head, tail)
) could error withmalformed factor
for unordered factor columns containing a usedNA_character_
level, #3915. This is an unusual input for unordered factors because NA_integer_ is recommended by default in R. Thanks to @sindribaldur for reporting. -
Adding a
list
column containing an item of typelist
to a one rowdata.table
could fail, #3626. Thanks to Jakob Richter for reporting.
-
rbindlist
'suse.names="check"
now emits its message for automatic column names ("V[0-9]+"
) too, #3484. See news item 5 of v1.12.2 below. -
Adding a new column by reference using
set()
on adata.table
loaded from binary file now give a more helpful error message, #2996. Thanks to Joseph Burling for reporting.This data.table has either been loaded from disk (e.g. using readRDS()/load()) or constructed manually (e.g. using structure()). Please run setDT() or alloc.col() on it first (to pre-allocate space for new columns) before adding new columns by reference to it.
-
setorder
on a superset of a keyeddata.table
's key now retains its key, #3456. For example, ifa
is the key ofDT
,setorder(DT, a, -v)
will leaveDT
keyed bya
. -
New option
options(datatable.quiet = TRUE)
turns off the package startup message, #3489.suppressPackageStartupMessages()
continues to work too. Thanks to @leobarlach for the suggestion inspired byoptions(tidyverse.quiet = TRUE)
. We don't know of a way to make a package respect thequietly=
option oflibrary()
andrequire()
because thequietly=
isn't passed through for use by the package's own.onAttach
. If you can see how to do that, please submit a patch to R. -
When loading a
data.table
from disk (e.g. withreadRDS
), best practice is to runsetDT()
on the new object to assure it is correctly allocated memory for new column pointers. Barring this, unexpected behavior can follow; for example, if you assign a new column toDT
from a functionf
, the new columns will only be assigned withinf
andDT
will be unchanged. Theverbose
messaging in this situation is now more helpful, #1729. Thanks @vspinu for sharing his experience to spur this. -
New vignette Using
.SD
for Data Analysis, a deep dive into use cases for the.SD
variable to help illuminate this topic which we've found to be a sticking point for beginning and intermediatedata.table
users, #3412. -
Added a note to
?frank
clarifying that ranking is being done according to C sorting (i.e., likeforder
), #2328. Thanks to @cguill95 for the request. -
Historically,
dcast
andmelt
were built as enhancements toreshape2
's owndcast
/melt
. We removed dependency onreshape2
in v1.9.6 but maintained some backward compatibility. As that package has been deprecated since December 2017, we will begin to formally complete the split fromreshape2
by removing some last vestiges. In particular we now warn when redirecting toreshape2
methods and will later error before ultimately completing the split; see #3549 and #3633. We thank thereshape2
authors for their original inspiration for these functions, and @ProfFancyPants for testing and reporting regressions in dev which have been fixed before release. -
DT[col]
wherecol
is a column containing row numbers of itself to select, now suggests the correct syntax (DT[(col)]
orDT[DT$col]
), #697. This expands the message introduced in #1884 for the case wherecol
is typelogical
andDT[col==TRUE]
is suggested. -
The
datatable.old.unique.by.key
option has been warning for 1 year that it is deprecated:... Please stop using it and pass by=key(DT) instead for clarity ...
. This warning is now upgraded to error as per the schedule in note 10 of v1.11.0 (May 2018), and note 1 of v1.9.8 (Nov 2016). In June 2020 the option will be removed. -
We intend to deprecate the
datatable.nomatch
option, more info. A message is now printed upon use of the option (once per session) as a first step. It asks you to please stop using the option and to passnomatch=NULL
explicitly if you require inner join. Outer join (nomatch=NA
) has always been the default because it is safer; it does not drop missing data silently. The problem is that the option is global; i.e., if a user changes the default using this option for their own use, that can change the behavior of joins inside packages that usedata.table
too. This is the onlydata.table
option with this concern. -
The test suite of 9k tests now runs with three R options on:
warnPartialMatchArgs
,warnPartialMatchAttr
, andwarnPartialMatchDollar
. This ensures that we don't rely on partial argument matching in internal code, for robustness and efficiency, and so that users can turn these options on for their code in production, #3664. Thanks to Vijay Lulla for the suggestion, and Michael Chirico for fixing 48 internal calls toattr()
which were missingexact=TRUE
, for example. Thanks to R-core for adding these options to R 2.6.0 (Oct 2007). -
test.data.table()
could fail if thedatatable.integer64
user option was set, #3683. Thanks @xiaguoxin for reporting. -
The warning message when using
keyby=
together with:=
is clearer, #2763. Thanks to @eliocamp. -
first
andlast
gain an explicitn=1L
argument so that it's clear the default is 1, and their almost identical manual pages have been merged into one. -
Rolling functions (
?froll
) coercelogical
input tonumeric
(instead of failing) to mimic the behavior ofinteger
input. -
The warning message when using
strptime
inj
has been improved, #2068. Thanks to @tdhock for the report. -
Added a note to
?setkey
clarifying thatsetkey
always uses C-locale sorting (as has been noted in?setorder
). Thanks @JBreidaks for the report in #2114. -
hour()
/minute()
/second()
are much faster forITime
input, #3518. -
New alias
setalloccol
foralloc.col
, #3475. For consistency withset*
prefixes for functions that operate in-place (likesetkey
,setorder
, etc.).alloc.col
is not going to be deprecated but we recommend usingsetalloccol
. -
dcast
no longer emits a message whenvalue.var
is missing butfun.aggregate
is explicitly set tolength
(sincevalue.var
is arbitrary in this case), #2980. -
Optimized
mean
ofinteger
columns no longer warns about a coercion to numeric, #986. Thanks @dgrtwo for his YouTube tutorial at 3:01 where the warning occurs. -
Using
first
andlast
function onPOSIXct
object no longer loadsxts
namespace, #3857.first
on emptydata.table
returns emptydata.table
now #3858. -
Added some clarifying details about what happens when a shell command is used in
fread
, #3877. Thanks Brian for the StackOverflow question which highlighted the lack of explanation here. -
We continue to encourage packages to
Import
rather thanDepend
ondata.table
, #3076. To prevent the growth rate in new packages usingDepend
, we have requested that CRAN apply a small patch we provided to prevent new submissions usingDepend
. If this is accepted, the error under--as-cran
will be as follows. The existing 73 packages usingDepend
will continue to pass OK until they next update, at which point they will be required to change fromDepend
toImport
.R CMD check <pkg> --as-cran ... * checking package dependencies ... ERROR data.table should be in Imports not Depends. Please contact its maintainer for more information.
data.table v1.12.2 (07 Apr 2019)
-
:=
no longer recycles length>1 RHS vectors. There was a warning when recycling left a remainder but no warning when the LHS length was an exact multiple of the RHS length (the same behaviour as base R). Consistent feedback for several years has been that recycling is more often a bug. In rare cases where you need to recycle a length>1 vector, please userep()
explicitly. Single values are still recycled silently as before. Early warning was given in this tweet. The 774 CRAN and Bioconductor packages usingdata.table
were tested and the maintainers of the 16 packages affected (2%) were consulted before going ahead, #3310. Upon agreement we went ahead. Many thanks to all those maintainers for already updating on CRAN, #3347. -
foverlaps
now supportstype="equal"
, #3416 and part of #3002. -
The number of logical CPUs used by default has been reduced from 100% to 50%. The previous 100% default was reported to cause significant slow downs when other non-trivial processes were also running, #3395 #3298. Two new optional environment variables (
R_DATATABLE_NUM_PROCS_PERCENT
&R_DATATABLE_NUM_THREADS
) control this default.setDTthreads()
gainspercent=
and?setDTthreads
has been significantly revised. The output ofgetDTthreads(verbose=TRUE)
has been expanded. The environment variableOMP_THREAD_LIMIT
is now respected (#3300) in addition toOMP_NUM_THREADS
as before. -
rbind
andrbindlist
now retain the position of duplicate column names rather than grouping them together #3373, fill length 0 columns (including NULL) with NA with warning #1871, and recycle length-1 columns #524. Thanks to Kun Ren for the requests which arose when parsing JSON. -
rbindlist
'suse.names=
default has changed fromFALSE
to"check"
. This emits a message if the column names of each item are not identical and then proceeds as ifuse.names=FALSE
for backwards compatibility; i.e., bind by column position not by column name. Therbind
method fordata.table
already setsuse.names=TRUE
so this change affectsrbindlist
only and notrbind.data.table
. To stack differently named columns together silently (the previous default behavior ofrbindlist
), it is now necessary to specifyuse.names=FALSE
for clarity to readers of your code. Thanks to Clayton Stanley who first raised the issue here. To aid pinpointing the calls torbindlist
that need attention, the message can be turned to error usingoptions(datatable.rbindlist.check="error")
. This option also accepts"warning"
,"message"
and"none"
. In this release the message is suppressed for default column names ("V[0-9]+"
); the next release will emit the message for those too. In 6 months the default will be upgraded from message to warning. There are two slightly different messages. They are helpful, include context and point to this news item :Column %d ['%s'] of item %d is missing in item %d. Use fill=TRUE to fill with NA (NULL for list columns), or use.names=FALSE to ignore column names. See news item 5 in v1.12.2 for options to control this message. Column %d ['%s'] of item %d appears in position %d in item %d. Set use.names=TRUE to match by column name, or use.names=FALSE to ignore column names. See news item 5 in v1.12.2 for options to control this message.
-
fread
gainskeepLeadingZeros
, #2999. By defaultFALSE
so that, as before, a field containing001
is interpreted as the integer 1, otherwise the character string"001"
. The default may be changed usingoptions(datatable.keepLeadingZeros=TRUE)
. Many thanks to @marc-outins for the PR.
-
rbindlist()
of a malformed factor which is missing a levels attribute is now a helpful error rather than a cryptic error aboutSTRING_ELT
, #3315. Thanks to Michael Chirico for reporting. -
Forgetting
type=
inshift(val, "lead")
would segfault, #3354. A helpful error is now produced to indicate"lead"
is being passed ton=
rather than the intendedtype=
argument. Thanks to @SymbolixAU for reporting. -
The default print output (top 5 and bottom 5 rows) when ncol>255 could display the columns in the wrong order, #3306. Thanks to Kun Ren for reporting.
-
Grouping by unusual column names such as
by='string_with_\\'
andkeyby="x y"
could fail, #3319 #3378. Thanks to @HughParsonage for reporting and @MichaelChirico for the fixes. -
foverlaps()
could return incorrect results forPOSIXct <= 1970-01-01
, #3349. Thanks to @lux5 for reporting. -
dcast.data.table
now handles functions passed tofun.aggregate=
via a variable; e.g.,funs <- list(sum, mean); dcast(..., fun.aggregate=funs
, #1974 #1369 #2064 #2949. Thanks to @sunbee, @Ping2016, @smidelius and @d0rg0ld for reporting. -
Some non-equijoin cases could segfault, #3401. Thanks to @Gayyam for reporting.
-
dcast.data.table
could sort rows containingNA
incorrectly, #2202. Thanks to @Galileo-Galilei for the report. -
Sorting, grouping and finding unique values of a numeric column containing at most one finite value (such as
c(Inf,0,-Inf)
) could return incorrect results, #3372 #3381; e.g.,data.table(A=c(Inf,0,-Inf), V=1:3)[,sum(V),by=A]
would treat the 3 rows as one group. This was a regression in 1.12.0. Thanks to Nicolas Ampuero for reporting. -
:=
with quoted expression and dot alias now works as expected, #3425. Thanks to @franknarf1 for raising and @jangorecki for the PR. -
A join's result could be incorrectly keyed when a single nomatch occurred at the very beginning while all other values matched, #3441. The incorrect key would cause incorrect results in subsequent queries. Thanks to @symbalex for reporting and @franknarf1 for pinpointing the root cause.
-
rbind
andrbindlist(..., use.names=TRUE)
with over 255 columns could return the columns in a random order, #3373. The contents and name of each column was correct but the order that the columns appeared in the result might not have matched the original input. -
rbind
andrbindlist
now combineinteger64
columns together with non-integer64
columns correctly #1349, and supportraw
columns #2819. -
NULL
columns are caught and error appropriately rather than segfault in some cases, #2303 #2305. Thanks to Hugh Parsonage and @franknarf1 for reporting. -
melt
would error with 'factor malformed' or segfault in the presence of duplicate column names, #1754. Many thanks to @franknarf1, William Marble, wligtenberg and Toby Dylan Hocking for reproducible examples. All examples have been added to the test suite. -
Removing a column from a null (0-column) data.table is now a (standard and simpler) warning rather than error, #2335. It is no longer an error to add a column to a null (0-column) data.table.
-
Non-UTF8 strings were not always sorted correctly on Windows (a regression in v1.12.0), #3397 #3451. Many thanks to @shrektan for reporting and fixing.
-
cbind
with a null (0-column)data.table
now works as expected, #3445. Thanks to @mb706 for reporting. -
Subsetting does a better job of catching a malformed
data.table
with error rather than segfault. A column may not be NULL, nor may a column be an object which has columns (such as adata.frame
ormatrix
). Thanks to a comment and reproducible example in #3369 from Drew Abbot which demonstrated the issue which arose from parsing JSON. The next release will enableas.data.table
to unpack columns which aredata.frame
to support this use case.
-
When upgrading to 1.12.0 some Windows users might have seen
CdllVersion not found
in some circumstances. We found a way to catch that so the helpful message now occurs for those upgrading from versions prior to 1.12.0 too, as well as those upgrading from 1.12.0 to a later version. See item 1 in notes section of 1.12.0 below for more background. -
v1.12.0 checked itself on loading using
tools::checkMD5sums("data.table")
but this check failed under thepackrat
package manager on Windows becausepackrat
appears to modify the DESCRIPTION file of packages it has snapshot, #3329. This check is now removed. TheCdllVersion
check was introduced after thecheckMD5sums()
attempt and is better; e.g., reliable on all platforms. -
As promised in new feature 6 of v1.11.6 Sep 2018 (see below in this news file), the
datatable.CJ.names
option's default is nowTRUE
. In v1.13.0 it will be removed. -
Travis CI gains OSX using homebrew llvm for OpenMP support, #3326. Thanks @marcusklik for the PR.
-
Calling
data.table:::print.data.table()
directly (i.e. bypassing method dispatch by using 3 colons) and passing it a 0-columndata.frame
(notdata.table
) now works, #3363. Thanks @heavywatal for the PR. -
v1.12.0 did not compile on Solaris 10 using Oracle Developer Studio 12.6, #3285. Many thanks to Prof Ripley for providing and testing a patch. For future reference and other package developers, a
const
variable should not be passed to OpenMP'snum_threads()
directive otherwiseleft operand must be modifiable lvalue
occurs. This appears to be a compiler bug which is why the specific versions are mentioned in this note. -
foverlaps
provides clearer error messages w.r.t. factor and POSIXct interval columns, #2645 #3007 #1143. Thanks to @sritchie73, @msummersgill and @DavidArenburg for the reports. -
unique(DT)
checks up-front the types of all the columns and will fail if any column is typelist
even though thoselist
columns may not be needed to establish uniqueness. Useunique(DT, by=...)
to specify columns that are not typelist
. v1.11.8 and before would also correctly fail with the same error, but not when uniqueness had been established in prior columns: it would stop early, not look at thelist
column and return the correct result. Checking up-front was necessary for some internal optimizations and it's probably best to be explicit anyway. Thanks to James Lamb for reporting, #3332. The error message has been embellished :Column 2 of by= (2) is type 'list', not yet supported. Please use the by= argument to specify columns with types that are supported.
-
Reminder that note 11 in v1.11.0 (May 2018) warned that
set2key()
andkey2()
will be removed in May 2019. They have been warning since v1.9.8 (Nov 2016) and their warnings were upgraded to errors in v1.11.0 (May 2018). When they were introduced in version 1.9.4 (Oct 2014) they were marked as 'experimental'. -
The
key(DT)<-
form ofsetkey()
has been warning since at least 2012 to usesetkey()
. The warning is now stronger:key(x)<-value is deprecated and not supported. Please change to use setkey().
. This warning will be upgraded to error in one year.
-
setDTthreads()
gainsrestore_after_fork=
, #2885. The defaultNULL
leaves the internal option unchanged which by default isTRUE
.data.table
has always switched to single-threaded mode on fork. It used to restore multithreading after a fork too but problems were reported on Mac and Intel OpenMP library (see 1.10.4 notes below). We are now trying again thanks to suggestions and success reported by Kun Ren and Mark Klik in packagefst
. If you experience problems with multithreading after a fork, please restart R and callsetDTthreads(restore_after_fork=FALSE)
. -
Subsetting, ordering and grouping now use more parallelism. See benchmarks here and Matt Dowle's presentation in October 2018 on YouTube here. These internal changes gave rise to 4 regressions which were found before release thanks to Kun Ren, #3211. He kindly volunteers to 'go-first' and runs data.table through his production systems before release. We are looking for a 'go-second' volunteer please. A request to test before release was tweeted on 17 Dec here. As usual, all CRAN and Bioconductor packages using data.table (currently 750) have been tested against this release, #3233. There are now 8,000 tests in 13,000 lines of test code; more lines of test code than there is code. Overall coverage has increased to 94% thanks to Michael Chirico.
-
New
frollmean
has been added by Jan Gorecki to calculate rolling mean, see?froll
for documentation. Function name and arguments are experimental. Related to #2778 (and #624, #626, #1855). Other rolling statistics will follow. -
fread()
can now read a remote compressed file in one step;fread("https://domain.org/file.csv.bz2")
. Thefile=
argument now supports.gz
and.bz2
too; i.e.fread(file="file.csv.gz")
works now where onlyfread("file.csv.gz")
worked in 1.11.8. -
nomatch=NULL
now does the same asnomatch=0L
in bothDT[...]
andfoverlaps()
; i.e. discards missing values silently (inner join). The default is stillnomatch=NA
(outer join) for statistical safety so that missing values are retained by default. After several years have elapsed, we will start to deprecate0L
; please start usingNULL
. In futurenomatch=.(0)
(note that.()
creates alist
type and is different tonomatch=0
) will fill with0
to save replacingNA
with0
afterwards, #857. -
setnames()
gainsskip_absent
to skip names inold
that aren't present, #3030. By defaultFALSE
so that it is still an error, as before, to attempt to change a column name that is not present. Thanks to @MusTheDataGuy for the suggestion and the PR. -
NA
inbetween()
and%between%
'slower
andupper
are now taken as missing bounds and returnTRUE
rather thanNA
. This is now documented. -
shift()
now interprets negative values ofn
to mean the oppositetype=
, #1708. Whengive.names=TRUE
the result is named using a positiven
with the appropriatetype=
. Alternatively, a newtype="shift"
names the result using a signedn
and constant type.shift(x, n=-5:5, give.names=TRUE) => "_lead_5" ... "_lag_5" shift(x, n=-5:5, type="shift", give.names=TRUE) => "_shift_-5" ... "_shift_5"
-
fwrite()
now acceptsmatrix
, #2613. Thanks to Michael Chirico for the suggestion and Felipe Parages for implementing. For now matrix input is converted to data.table (which can be costly) before writing. -
fread()
andfwrite()
can now handle file names in native and UTF-8 encoding, #3078. Thanks to Daniel Possenriede (@dpprdan) for reporting and fixing. -
DT[i]
andDT[i,cols]
now call internal parallel subsetting code, #2951. Subsetting is significantly faster (as are many other operations) with factor columns rather than character.N = 2e8 # 4GB data on 4-core CPU with 16GB RAM DT = data.table(ID = sample(LETTERS,N,TRUE), V1 = sample(5,N,TRUE), V2 = runif(N)) w = which(DT$V1 > 3) # select 40% of rows # v1.12.0 v1.11.8 system.time(DT[w]) # 0.8s 2.6s DT[, ID := as.factor(ID)] system.time(DT[w]) # 0.4s 2.3s system.time(DT[w, c("ID","V2")]) # 0.3s 1.9s
-
DT[..., .SDcols=]
now acceptspatterns()
; e.g.DT[..., .SDcols=patterns("^V")]
, for filtering columns according to a pattern (as inmelt.data.table
), #1878. Thanks to many people for pushing for this and @MichaelChirico for ultimately filing the PR. See?data.table
for full details and examples. -
split
data.table method will now preserve attributes, closes #2047. Thanks to @caneff for reporting. -
DT[i,j]
now retains user-defined and inherited attributes, #995; e.g.attr(datasets::BOD,"reference") # "A1.4, p. 270" attr(as.data.table(datasets::BOD)[2],"reference") # was NULL now "A1.4, p. 270"
If a superclass defines attributes that may not be valid after a
[
subset then the superclass should implement its own[
method to manage those after callingNextMethod()
.
-
Providing an
i
subset expression when attempting to delete a column correctly failed with helpful error, but when the column was missing too created a new column full ofNULL
values, #3089. Thanks to Michael Chirico for reporting. -
Column names that look like expressions (e.g.
"a<=colB"
) caused an error when used inon=
even when wrapped with backticks, #3092. Additionally,on=
now supports white spaces around operators; e.g.on = "colA == colB"
. Thanks to @mt1022 for reporting and to @MarkusBonsch for fixing. -
Unmatched
patterns
inmeasure.vars
fail early and with feedback, #3106. -
fread(..., skip=)
now skips non-standard\r
and\n\r
line endings properly again, #3006. Standard line endings (\n
Linux/Mac and\r\n
Windows) were skipped ok. Thanks to @brattono and @tbrycekelly for providing reproducible examples, and @st-pasha for fixing. -
fread(..., colClasses=)
could return a corrupted result when a lower type was requested for one or more columns (e.g. reading "3.14" as integer), #2922 #2863 #3143. It now ignores the request as documented and the helpful message in verbose mode is upgraded to warning. In future, coercing to a lower type might be supported (with warning if any accuracy is lost)."NULL"
is recognized again in both vector and list mode; e.g.colClasses=c("integer","NULL","integer")
andcolClasses=list(NULL=2, integer=10:40)
. Thanks to Arun Srinivasan, Kun Ren, Henri Ståhl and @kszela24 for reporting. -
cube()
will now produce expected order of results, #3179. Thanks to @Henrik-P for reporting. -
groupingsets()
groups by empty column set and constant value inj
, #3173. -
split.data.table()
failed ifDT
had a factor column named"x"
, #3151. Thanks to @tdeenes for reporting and fixing. -
fsetequal
now handles properly datasets having last column a character, closes #2318. Thanks to @pschil and @franknarf1 for reporting. -
DT[..., .SDcols=integer(0L)]
could fail, #3185. An emptydata.table
is now returned correctly. -
as.data.table.default
method will now always copy its input, closes #3230. Thanks to @NikdAK for reporting. -
DT[..., .SDcols=integer()]
failed with.SDcols is numeric but has both +ve and -ve indices
, #1789 and #3185. It now functions as.SDcols=character()
has done and creates an empty.SD
. Thanks to Gabor Grothendieck and Hugh Parsonage for reporting. A related issue with empty.SDcols
was fixed in development before release thanks to Kun Ren's testing, #3211. -
Multithreaded stability should be much improved with R 3.5+. Many thanks to Luke Tierney for pinpointing a memory issue with package
constellation
caused bydata.table
and his advice, #3165. Luke also added an extra check to R-devel when compiled with--enable-strict-barrier
. The test suite is run through latest daily R-devel after every commit as usual, but now with--enable-strict-barrier
on too via GitLab Pipelines ("Extra" badge at the top of the data.table homepage) thanks to Jan Gorecki. -
Fixed an edge-case bug of platform-dependent output of
strtoi("", base = 2L)
on whichgroupingsets
had relied, #3267.
-
When data.table loads it now checks its DLL version against the version of its R level code. This is to detect installation issues on Windows when i) the DLL is in use by another R session and ii) the CRAN source version > CRAN binary binary which happens just after a new release (R prompts users to install from source until the CRAN binary is available). This situation can lead to a state where the package's new R code calls old C code in the old DLL; R#17478, #3056. This broken state can persist until, hopefully, you experience a strange error caused by the mismatch. Otherwise, wrong results may occur silently. This situation applies to any R package with compiled code not just data.table, is Windows-only, and is long-standing. It has only recently been understood as it typically only occurs during the few days after each new release until binaries are available on CRAN.
-
When
on=
is provided but noti=
, a helpful error is now produced rather than silently ignoringon=
. Thanks to Dirk Eddelbuettel for the idea. -
.SDcols=
is more helpful when passed non-existent columns, #3116 and #3118. Thanks to Michael Chirico for the investigation and PR. -
update.dev.pkg()
gainstype=
to specify if update should be made from binaries, sources or both. #3148. Thanks to Reino Bruner for the detailed suggestions. -
setDT()
improves feedback when passed a ragged list (i.e. where all columns in the list are not the same length), #3121. Thanks @chuk-yong for highlighting. -
The one and only usage of
UNPROTECT_PTR()
has been removed, #3232. Thanks to Tomas Kalibera's investigation and advice here: https://developer.r-project.org/Blog/public/2018/12/10/unprotecting-by-value/index.html
fread()
can now read.gz
and.bz2
files directly:fread("file.csv.gz")
, #717 #3058. It usesR.utils::decompressFile
to decompress to atempfile()
which is then read byfread()
in the usual way. For greater speed on large-RAM servers, it is recommended to use ramdisk for temporary files by settingTMPDIR
to/dev/shm
before starting R; see?tempdir
. The decompressed temporary file is removed as soon asfread
completes even if there is an error reading the file. Reading a remote compressed file in one step will be supported in the next version; e.g.fread("http://domain.org/file.csv.bz2")
.
-
Joining two keyed tables using
on=
to columns not forming a leading subset ofkey(i)
could result in an invalidly keyed result, #3061. Subsequent queries on the result could then return incorrect results. A warninglonger object length is not a multiple of shorter object length
could also occur. Thanks to @renkun-ken for reporting and the PR. -
keyby=
on columns for which an index exists now uses the index (new feature 7 in v1.11.6 below) but if ani
subset is present in the same query then it could segfault, #3062. Again thanks to @renkun-ken for reporting. -
Assigning an out-of-range integer to an item in a factor column (a rare operation) correctly created an
NA
in that spot with warning, but now no longer also corrupts the variable being assigned, #2984. Thanks to @radfordneal for reporting and @MarkusBonsch for fixing. Assigning a string which is missing from the factor levels continues to automatically append the string to the factor levels. -
Assigning a sequence to a column using base R methods (e.g.
DT[["foo"]] = 1:10
) could cause subsetting to fail withInternal error in subset.c: column <n> is an ALTREP vector
, #3051. Thanks to Michel Lang for reporting. -
as.data.table
matrix
method now properly handles rownames for 0 column data.table output. Thanks @mllg for reporting. Closes #3149.
-
The test suite now turns on R's new R_CHECK_LENGTH_1_LOGIC2 to catch when internal use of
&&
or||
encounter arguments of length more than one. Thanks to Hugh Parsonage for implementing and fixing the problems caught by this. -
Some namespace changes have been made with respect to melt, dcast and xts. No change is expected but if you do have any trouble, please file an issue.
-
split.data.table
was exported in v1.11.6 in addition to being registered usingS3method(split, data.table)
. The export has been removed again. It had been added because a user said they found it difficult to find, #2920. But S3 methods are not normally exported explicitly by packages. The proper way to access thesplit.data.table
method is to callsplit(DT)
whereDT
is adata.table
. The generic (base::split
in this case) then dispatches to thesplit.data.table
method. v1.11.6 was not on CRAN very long (1 week) so we think it's better to revert this change quickly. To know what methods exist, R provides themethods()
function.methods(split) # all the methods for the split generic methods(class="data.table") # all the generics that data.table has a method for (47 currently)
-
For convenience when some of the files in
fnams
are empty inrbindlist(lapply(fnams,fread))
,fread
now reads empty input as a null-data.table with warning rather than error, #2898. For consistency,fwrite(data.table(NULL))
now creates an empty file and warns instead of error, too. -
setcolorder(DT)
without further arguments now defaults to moving the key columns to be first, #2895. Thanks to @jsams for the PR. -
Attempting to subset on
col
when the column is actually calledCol
will still error, but the error message will helpfully suggest similarly-spelled columns, #2887. This is experimental, applies just toi
currently, and we look forward to feedback. Thanks to Michael Chirico for the suggestion and PR. -
fread()
has always accepted literal data; e.g.fread("A,B\n1,2\n3,4")
. It now gains explicittext=
; e.g.fread(text="A,B\n1,2\n3,4")
. Unlike the first general purposeinput=
argument, thetext=
argument accepts multi-line input; e.g.fread(text=c("A,B","1,2","3,4"))
, #1423. Thanks to Douglas Clark for the request and Hugh Parsonage for the PR. -
fread()
has always accepted system commands; e.g.fread("grep blah file.txt")
. It now gains explicitcmd=
; e.g.fread(cmd="grep blah file.txt")
. Further, if and only ifinput=
is a system command and a variable was used to hold that command (fread(someCommand)
notfread("grep blah file.txt")
) or a variable is used to construct it (fread(paste("grep",variable,"file.txt"))
), a message is now printed suggestingcmd=
. This is to inform all users that there is a potential security concern if you are i) creating apps, and ii) your app takes input from a public user who could be malicious, and iii) input from the malicious user (such as a filename) is passed by your app tofread()
, and iv) your app in not running in a protected environment. If all 4 conditions hold then the malicious user could provide a system command instead of a filename whichfread()
would run, and that would be a problem too. If the app is not running in a protected environment (e.g. app is running as root) then this could do damage or obtain data you did not intend. Public facing apps should be running with limited operating system permission so that any breach from any source is contained. We agree with Linus Torvald's advice on this which boils down to: "when addressing security concerns the first step is do no harm, just inform". If you aren't creating apps or apis that could have a malicious user then there is no risk but we can't distinguish you so we have to inform everyone. Please change tofread(cmd=...)
at your leisure. The new message can be suppressed withoptions(datatable.fread.input.cmd.message=FALSE)
. Passing system commands tofread()
continues to be recommended and encouraged and is widely used; e.g. via the techniques gathered together in the book Data Science at the Command Line. Awarning()
is too strong because best-practice for production systems is to setoptions(warn=2)
to tolerate no warnings. Such production systems have no user input and so there is no security risk; we don't want to do harm by breaking production systems via awarning()
which gets turned into an error byoptions(warn=2)
. Now that we have informed all users, we request feedback. There are 3 options for future releases: i) remove the message, ii) leave the message in place, iii) upgrade the message to warning and then eventually error. The default choice is the middle one: leave the message in place. -
New
options(datatable.CJ.names=TRUE)
changesCJ()
to auto-name its inputs exactly asdata.table()
does, #1596. Thanks @franknarf1 for the suggestion. Current default isFALSE
; i.e. no change. The option's default will be changed toTRUE
in v1.12.0 and then eventually the option will be removed. Any code that depends onCJ(x,y)$V1
will need to be changed toCJ(x,y)$x
and is more akin to a bug fix due to the inconsistency withdata.table()
. -
If an appropriate index exists,
keyby=
will now use it. For example, givensetindex(DT,colA,colB)
, bothDT[,j,keyby=colA]
(a leading subset of the index columns) andDT[,j,keyby=.(colA,colB)]
will use the index, but notDT[,j,keyby=.(colB,colA)]
. The optionoptions(datatable.use.index=FALSE)
will turn this feature off. Please always usekeyby=
unless you wish to retain the order of groups by first-appearance order (in which case useby=
). Also, bothkeyby=
andby=
already used the key where possible but are now faster when using just the first column of the key. As usual, settingverbose=TRUE
either per-query or globally usingoptions(datatable.verbose=TRUE)
will report what's being done internally.
-
fread
now respects the order of columns passed toselect=
when column numbers are used, #2986. It already respected the order when column names are used. Thanks @privefl for raising the issue. -
gmin
andgmax
no longer fail on ordered factors, #1947. Thanks to @mcieslik-mctp for identifying and @mbacou for the nudge. -
as.ITime.character
now properly handles NA when attempting to detect the format of non-NA values in vector. Thanks @polyjian for reporting, closes #2940. -
as.matrix(DT, rownames="id")
now works whenDT
has a single row, #2930. Thanks to @malcook for reporting and @sritchie73 for fixing. The root cause was the dual meaning of therownames=
argument: i) a single column name/number (most common), or ii) rowname values length 1 for the single row. For clarity and safety,rownames.value=
has been added. Old usage (i.e.length(rownames)>1
) continues to work for now but will issue a warning in a future release, and then error in a release after that. -
Fixed regression in v1.11.0 (May 2018) caused by PR #2389 which introduced partial key retainment on
:=
assigns. This broke the joining logic that assumed implicitly that assigning always drops keys completely. Consequently, join and subset results could be wrong when matching character to factor columns with existing keys, #2881. Thanks to @ddong63 for reporting and to @MarkusBonsch for fixing. Missing test added to ensure this doesn't arise again. -
as.IDate.numeric
no longer ignores "origin", #2880. Thanks to David Arenburg for reporting and fixing. -
as.ITime.times
was rounding fractional seconds while other methods were truncating, #2870. Theas.ITime
method gainsms=
taking"truncate"
(default),"nearest"
and"ceil"
. Thanks to @rossholmberg for reporting and Michael Chirico for fixing. -
fwrite()
now writes POSIXct dates after 2038 correctly, #2995. Thanks to Manfred Zorn for reporting and Philippe Chataignon for the PR fixing it. -
fsetequal
gains theall
argument to make it consistent with the other set operator functionsfunion
,fsetdiff
andfintersect
#2968. Whenall = FALSE
fsetequal
will treat rows as elements in a set when checking whether twodata.tables
are equal (i.e. duplicate rows will be ignored). For now the default value isall = TRUE
for backwards compatibility, but this will be changed toall = FALSE
in a future release to make it consistent with the other set operation functions. Thanks to @franknarf1 for reporting and @sritchie73 for fixing. -
fintersect
failed on tables with a column calledy
, #3034. Thanks to Maxim Nazarov for reporting. -
Compilation fails in AIX because NAN and INFINITY macros definition in AIX make them not constant literals, #3043. Thanks to Ayappan for reporting and fixing.
-
The introduction of altrep in R 3.5.0 caused some performance regressions of about 20% in some cases, #2962. Investigating this led to some improvements to grouping which are faster than before R 3.5.0 in some cases. Thanks to Nikolay S. for reporting. The work to accomodate altrep is not complete but it is better and it is highly recommended to upgrade to this update.
-
Fixed 7 memory faults thanks to CRAN's
rchk
tool by Tomas Kalibera, #3033.
-
The type coercion warning message has been improved, #2989. Thanks to @sarahbeeysian on Twitter for highlighting. For example, given the follow statements:
DT = data.table(id=1:3) DT[2, id:="foo"]
the warning message has changed from :
Coerced character RHS to integer to match the column's type. Either change the target column ['id'] to character first (by creating a new character vector length 3 (nrows of entire table) and assign that; i.e. 'replace' column), or coerce RHS to integer (e.g. 1L, NA_[real|integer]_, as.*, etc) to make your intent clear and for speed. Or, set the column type correctly up front when you create the table and stick to it, please.
to :
Coerced character RHS to integer to match the type of the target column (column 1 named 'id'). If the target column's type integer is correct, it's best for efficiency to avoid the coercion and create the RHS as type integer. To achieve that consider the L postfix: typeof(0L) vs typeof(0), and typeof(NA) vs typeof(NA_integer_) vs typeof(NA_real_). Wrapping the RHS with as.integer() will avoid this warning but still perform the coercion. If the target column's type is not correct, it is best to revisit where the DT was created and fix the column type there; e.g., by using colClasses= in fread(). Otherwise, you can change the column type now by plonking a new column (of the desired type) over the top of it; e.g. DT[, `id`:=as.character(`id`)]. If the RHS of := has nrow(DT) elements then the assignment is called a column plonk and is the way to change a column's type. Column types can be observed with sapply(DT,typeof).
Further, if a coercion from double to integer is performed, fractional data such as 3.14 is now detected and the truncation to 3 is warned about if and only if truncation has occurred.
DT = data.table(v=1:3) DT[2, v:=3.14] Warning message: Coerced double RHS to integer to match the type of the target column (column 1 named 'v'). One or more RHS values contain fractions which have been lost; e.g. item 1 with value 3.140000 has been truncated to 3.
-
split.data.table
method is now properly exported, #2920. But we don't recommend it becausesplit
copies all the pieces into new memory. -
Setting indices on columns which are part of the key will now create those indices.
-
hour
,minute
, andsecond
utility functions use integer arithmetic when the input is already (explicitly) UTC-basedPOSIXct
for 4-10x speedup vs. usingas.POSIXlt
. -
Error added for incorrect usage of
%between%
, with some helpful diagnostic hints, #3014. Thanks @peterlittlejohn for offering his user experience and providing the impetus.
-
Empty RHS of
:=
is no longer an error when thei
clause returns no rows to assign to anyway, #2829. Thanks to @cguill95 for reporting and to @MarkusBonsch for fixing. -
Fixed runaway memory usage with R-devel (R > 3.5.0), #2882. Thanks to many people but in particular to Trang Nguyen for making the breakthrough reproducible example, Paul Bailey for liaising, and Luke Tierney for then pinpointing the issue. It was caused by an interaction of two or more data.table threads operating on new compact vectors in the ALTREP framework, such as the sequence
1:n
. This interaction could result in R's garbage collector turning off, and hence the memory explosion. Problems may occur in R 3.5.0 too but we were only able to reproduce in R > 3.5.0. The R code in data.table's implementation benefits from ALTREP (for
loops in R no longer allocate their range vector input, for example) but are not so appropriate as data.table columns. Sequences such as1:n
are common in test data but not very common in real-world datasets. Therefore, there is no need for data.table to support columns which are ALTREP compact sequences. Thedata.table()
function already expanded compact vectors (by happy accident) butsetDT()
did not (it now does). If, somehow, a compact vector still reaches the internal parallel regions, a helpful error will now be generated. If this happens, please report it as a bug. -
Tests 1590.3 & 1590.4 now pass when users run
test.data.table()
on Windows, #2856. Thanks to Avraham Adler for reporting. Those tests were passing on AppVeyor, win-builder and CRAN's Windows becauseR CMD check
setsLC_COLLATE=C
as documented in R-exts$1.3.1, whereas by default on WindowsLC_COLLATE
is usually a regional Windows-1252 dialect such asEnglish_United States.1252
. -
Around 1 billion very small groups (of size 1 or 2 rows) could result in
"Failed to realloc working memory"
even when plenty of memory is available, #2777. Thanks once again to @jsams for the detailed report as a follow up to bug fix 40 in v1.11.0.
-
test.data.table()
created/overwrote variablex
in.GlobalEnv
, #2828; i.e. a modification of user's workspace which is not allowed. Thanks to @etienne-s for reporting. -
as.chron
methods forIDate
andITime
have been removed, #2825.as.chron
still works sinceIDate
inherits fromDate
. We are not sure why we had specific methods in the first place. It may have been from a time whenIDate
did not inherit fromDate
, perhaps. Note that we don't usechron
ourselves in our own work. -
Fixed
SETLENGTH() cannot be applied to an ALTVEC object
starting in R-devel (R 3.6.0) on 1 May 2018, a few hours after 1.11.0 was accepted on CRAN, #2820. Many thanks to Luke Tierney for pinpointing the problem. -
Fixed some rare memory faults in
fread()
andrbindlist()
found withgctorture2()
andrchk
, #2841.
-
fread()
'sna.strings=
argument :"NA" # old default getOption("datatable.na.strings", "NA") # this release; i.e. the same; no change yet getOption("datatable.na.strings", "") # future release
This option controls how
,,
is read in character columns. It does not affect numeric columns which read,,
asNA
regardless. We would like,,
=>NA
for consistency with numeric types, and,"",
=>empty string to be the standard default forfwrite/fread
character columns so thatfread(fwrite(DT))==DT
without needing any change to any parameters.fwrite
has never writtenNA
as"NA"
in case"NA"
is a valid string in the data; e.g., 2 character id columns sometimes do. Instead,fwrite
has always written,,
by default for an<NA>
in a character columns. The use of R'sgetOption()
allows users to move forward now, usingoptions(datatable.fread.na.strings="")
, or restore old behaviour when the default's default is changed in future, usingoptions(datatable.fread.na.strings="NA")
. -
fread()
andfwrite()
'slogical01=
argument :logical01 = FALSE # old default getOption("datatable.logical01", FALSE) # this release; i.e. the same; no change yet getOption("datatable.logical01", TRUE) # future release
This option controls whether a column of all 0's and 1's is read as
integer
, orlogical
directly to avoid needing to change the type afterwards tological
or usecolClasses
.0/1
is smaller and faster than"TRUE"/"FALSE"
, which can make a significant difference to space and time the morelogical
columns there are. When the default's default changes toTRUE
forfread
we do not expect much impact since all arithmetic operators that are currently receiving 0's and 1's as typeinteger
(thinksum()
) but instead could receivelogical
, would return exactly the same result on the 0's and 1's aslogical
type. However, code that is manipulating column types usingis.integer
oris.logical
onfread
's result, could require change. It could be painful ifDT[(logical_column)]
(i.e.DT[logical_column==TRUE]
) changed behaviour due tological_column
no longer being typelogical
butinteger
. But that is not the change proposed. The change is the other way around; i.e., a previouslyinteger
column holding only 0's and 1's would now be typelogical
. Since it's that way around, we believe the scope for breakage is limited. We think a lot of code is converting 0/1 integer columns to logical anyway, either usingcolClasses=
or afterwards with an assign. Forfwrite
, the level of breakage depends on the consumer of the output file. We believe0/1
is a better more standard default choice to move to. See notes below about improvements tofread
's sampling for type guessing, and automatic rereading in the rare cases of out-of-sample type surprises.
These options are meant for temporary use to aid your migration, #2652. You are not meant to set them to the old default and then not migrate your code that is dependent on the default. Either set the argument explicitly so your code is not dependent on the default, or change the code to cope with the new default. Over the next few years we will slowly start to remove these options, warning you if you are using them, and return to a simple default. See the history of NEWS and NEWS.0 for past migrations that have, generally speaking, been successfully managed in this way. For example, at the end of NOTES for this version (below in this file) is a note about the usage of datatable.old.unique.by.key
now warning, as you were warned it would do over a year ago. When that change was introduced, the default was changed and that option provided an option to restore the old behaviour. These fread
/fwrite
changes are even more cautious and not even changing the default's default yet. Giving you extra warning by way of this notice to move forward. And giving you a chance to object.
-
fread()
:- Efficiency savings at C level including parallelization announced here; e.g. a 9GB 2 column integer csv input is 50s down to 12s to cold load on a 4 core laptop with 16GB RAM and SSD. Run
echo 3 >/proc/sys/vm/drop_caches
first to measure cold load time. Subsequent load time (after file has been cached by OS on the first run) 40s down to 6s. - The fread for small data page has been revised.
- Memory maps lazily; e.g. reading just the first 10 rows with
nrow=10
is 12s down to 0.01s from cold for the 9GB file. Large files close to your RAM limit may work more reliably too. The progress meter will commence sooner and more consistently. fread
has always jumped to the middle and to the end of the file for a much improved column type guess. The sample size is increased from 100 rows at 10 jump jump points (1,000 rows) to 100 rows at 100 jumps points (10,000 row sample). In the rare case of there still being out-of-sample type exceptions, those columns are now automatically reread so you don't have to usecolClasses
yourself.- Large number of columns support; e.g. 12,000 columns tested.
- Quoting rules are more robust and flexible. See point 10 on the wiki page here.
- Numeric data that has been quoted is now detected and read as numeric.
- The ability to position
autostart
anywhere inside one of multiple tables in a single file is removed with warning. It used to search upwards from that line to find the start of the table based on a consistent number of columns. People appear to be usingskip="string"
orskip=nrow
to find the header row exactly, which is retained and simpler. It was too difficult to retain search-upwards-autostart together with skipping/filling blank lines, filling incomplete rows and parallelization too. If there is any header info above the column names, it is still auto detected and auto skipped (particularly useful when loading a set of files where the column names start on different lines due to a varying height messy header). dec=','
is now implemented directly so there is no dependency on locale. The optionsdatatable.fread.dec.experiment
anddatatable.fread.dec.locale
have been removed.\\r\\r\\n
line endings are now handled such as produced bybase::download.file()
when it doubles up\\r
. Other rare line endings (\\r
and\\n\\r
) are now more robust.- Mixed line endings are now handled; e.g. a file formed by concatenating a Unix file and a Windows file so that some lines end with
\\n
while others end with\\r\\n
. - Improved automatic detection of whether the first row is column names by comparing the types of the fields on the first row against the column types ascertained by the 10,000 rows sample (or
colClasses
if provided). If a numeric column has a string value at the top, then column names are deemed present. - Detects GB-18030 and UTF-16 encodings and in verbose mode prints a message about BOM detection.
- Detects and ignores trailing ^Z end-of-file control character sometimes created on MS DOS/Windows, #1612. Thanks to Gergely Daróczi for reporting and providing a file.
- Added ability to recognize and parse hexadecimal floating point numbers, as used for example in Java. Thanks for @scottstanfield #2316 for the report.
- Now handles floating-point NaN values in a wide variety of formats, including
NaN
,sNaN
,1.#QNAN
,NaN1234
,#NUM!
and others, #1800. Thanks to Jori Liesenborgs for highlighting and the PR. - If negative numbers are passed to
select=
the out-of-range error now suggestsdrop=
instead, #2423. Thanks to Michael Chirico for the suggestion. sep=NULL
orsep=""
(i.e., no column separator) can now be used to specify single column input reliably likebase::readLines
, #1616.sep='\\n'
still works (even on Windows where line ending is actually\\r\\n
) butNULL
or""
are now documented and recommended. Thanks to Dmitriy Selivanov for the pull request and many others for comments. As before,sep=NA
is not valid; use the default"auto"
for automatic separator detection.sep='\\n'
is now deprecated and in future will start to warn when used.- Single-column input with blank lines is now valid and the blank lines are significant (representing
NA
). The blank lines are significant even at the very end, which may be surprising on first glance. The change is so thatfread(fwrite(DT))==DT
for single-column inputs containingNA
which are written as blank. There is no change whenncol>1
; i.e., input stops with detailed warning at the first blank line, because a blank line whenncol>1
is invalid input due to no separators being present. Thanks to @skanskan, Michael Chirico, @franknarf1 and Pasha for the testing and discussions, #2106. - Too few column names are now auto filled with default column names, with warning, #1625. If there is just one missing column name it is guessed to be for the first column (row names or an index), otherwise the column names are filled at the end. Similarly, too many column names now automatically sets
fill=TRUE
, with warning. skip=
andnrow=
are more reliable and are no longer affected by invalid lines outside the range specified. Thanks to Ziyad Saeed and Kyle Chung for reporting, #1267.- Ram disk (
/dev/shm
) is no longer used for the output of system command input. Although faster when it worked, it was causing too many device full errors; e.g., #1139 and zUMIs/19. Thanks to Kyle Chung for reporting. Standardtempdir()
is now used. If you wish to use ram disk, set TEMPDIR to/dev/shm
; see?tempdir
. - Detecting whether a very long input string is a file name or data is now much faster, #2531. Many thanks to @javrucebo for the detailed report, benchmarks and suggestions.
- A column of
TRUE/FALSE
s is ok, as well asTrue/False
s andtrue/false
s, but mixing styles (e.g.TRUE/false
) is not and will be read as typecharacter
. - New argument
index
to compliment the existingkey
argument for applying secondary orderings out of the box for convenience, #2633. - A warning is now issued whenever incorrectly quoted fields have been detected and fixed using a non-standard quote rule.
fread
has always used these advanced rules but now it warns that it is using them. Most file writers correctly quote fields if the field contains the field separator, but a common error is not to also quote fields that contain a quote and then escape those quotes, particularly if that quote occurs at the start of the field. The ability to detect and fix such files is referred to as self-healing. Ambiguities are resolved using the knowledge that the number of columns is constant, and therefore this ability is not available whenfill=TRUE
. This feature can be improved in future by using column type consistency as well as the number of fields. For example:
txt = 'A,B\n1,hello\n2,"howdy" said Joe\n3,bonjour\n' cat(txt) # A,B # 1,hello # 2,"howdy" said Joe # 3,bonjour fread(txt) A B <int> <char> 1: 1 hello 2: 2 "howdy" said Joe 3: 3 bonjour Warning message: In fread(txt) : Found and resolved improper quoting
- Many thanks to @yaakovfeldman, Guillermo Ponce, Arun Srinivasan, Hugh Parsonage, Mark Klik, Pasha Stetsenko, Mahyar K, Tom Crockett, @cnoelke, @qinjs, @etienne-s, Mark Danese, Avraham Adler, @franknarf1, @MichaelChirico, @tdhock, Luke Tierney, Ananda Mahto, @memoryfull, @brandenkmurray for testing dev and reporting these regressions before release to CRAN: #1464, #1671, #1888, #1895, #2070, #2073, #2087, #2091, #2092, #2107, #2118, #2123, #2167, #2194, #2196, #2201, #2222, #2228, #2238, #2246, #2251, #2265, #2267, #2285, #2287, #2299, #2322, #2347, #2352, #2370, #2371, #2395, #2404, #2446, #2453, #2457, #2464, #2481, #2499, #2512, #2515, #2516, #2518, #2520, #2523, #2526, #2535, #2542, #2548, #2561, #2600, #2625, #2666, #2697, #2735, #2744.
- Efficiency savings at C level including parallelization announced here; e.g. a 9GB 2 column integer csv input is 50s down to 12s to cold load on a 4 core laptop with 16GB RAM and SSD. Run
-
fwrite()
:- empty strings are now always quoted (
,"",
) to distinguish them fromNA
which by default is still empty (,,
) but can be changed usingna=
as before. Ifna=
is provided andquote=
is the default'auto'
thenquote=
is set toTRUE
so that if thena=
value occurs in the data, it can be distinguished fromNA
. Thanks to Ethan Welty for the request #2214 and Pasha for the code change and tests, #2215. logical01
has been added and the old namelogicalAsInt
retained. Pease move to the new name when convenient for you. The old argument name (logicalAsInt
) will slowly be deprecated over the next few years. The default is unchanged:FALSE
, sological
is still written as"TRUE"
/"FALSE"
in full by default. We intend to change the default's default in future toTRUE
; see the notice at the top of these release notes.
- empty strings are now always quoted (
-
Added helpful message when subsetting by a logical column without wrapping it in parentheses, #1844. Thanks @dracodoc for the suggestion and @MichaelChirico for the PR.
-
tables
gainsindex
argument for supplementary metadata aboutdata.table
s in memory (or any optionally specified environment), part of #1648. Thanks due variously to @jangorecki, @rsaporta, @MichaelChirico for ideas and work towards PR. -
Improved auto-detection of
character
inputs' formats toas.ITime
to mirror the logic inas.POSIXlt.character
, #1383 Thanks @franknarf1 for identifying a discrepancy and @MichaelChirico for investigating. -
setcolorder()
now accepts less thanncol(DT)
columns to be moved to the front, #592. Thanks @MichaelChirico for the PR. This also incidentally fixed #2007 whereby explicitly settingselect = NULL
infread
errored; thanks to @rcapell for reporting that and @dselivanov and @MichaelChirico for investigating and providing a new test. -
Three new Grouping Sets functions:
rollup
,cube
andgroupingsets
, #1377. Allows to aggregation on various grouping levels at once producing sub-totals and grand total. -
as.data.table()
gains new method forarray
s to return a useful data.table, #1418. -
print.data.table()
(all via master issue #1523):-
gains
print.keys
argument,FALSE
by default, which displays the keys and/or indices (secondary keys) of adata.table
. Thanks @MichaelChirico for the PR, Yike Lu for the suggestion and Arun for honing that idea to its present form. -
gains
col.names
argument,"auto"
by default, which toggles which registers of column names to include in printed output."top"
forcesdata.frame
-like behavior where column names are only ever included at the top of the output, as opposed to the default behavior which appends the column names below the output as well for longer (>20 rows) tables."none"
shuts down column name printing altogether. Thanks @MichaelChirico for the PR, Oleg Bondar for the suggestion, and Arun for guiding commentary. -
list columns would print the first 6 items in each cell followed by a comma if there are more than 6 in that cell. Now it ends ",..." to make it clearer, part of #1523. Thanks to @franknarf1 for drawing attention to an issue raised on Stack Overflow by @TMOTTM here.
-
-
setkeyv
accelerated if key already exists #2331. Thanks to @MarkusBonsch for the PR. -
Keys and indexes are now partially retained up to the key column assigned to with ':=' #2372. They used to be dropped completely if any one of the columns was affected by
:=
. Tanks to @MarkusBonsch for the PR. -
Faster
as.IDate
andas.ITime
methods forPOSIXct
andnumeric
, #1392. Thanks to Jan Gorecki for the PR. -
unique(DT)
now returnsDT
early when there are no duplicates to save RAM, #2013. Thanks to Michael Chirico for the PR, and thanks to @mgahan for pointing out a reversion inna.omit.data.table
before release, #2660. -
uniqueN()
is now faster on logical vectors. Thanks to Hugh Parsonage for PR#2648.N = 1e9 # was now x = c(TRUE,FALSE,NA,rep(TRUE,N)) # uniqueN(x) == 3 # 5.4s 0.00s x = c(TRUE,rep(FALSE,N), NA) # uniqueN(x,na.rm=TRUE) == 2 # 5.4s 0.00s x = c(rep(TRUE,N),FALSE,NA) # uniqueN(x) == 3 # 6.7s 0.38s
-
Subsetting optimization with keys and indices is now possible for compound queries like
DT[a==1 & b==2]
, #2472. Thanks to @MichaelChirico for reporting and to @MarkusBonsch for the implementation. -
melt.data.table
now offers friendlier functionality for providingvalue.name
forlist
input tomeasure.vars
, #1547. Thanks @MichaelChirico and @franknarf1 for the suggestion and use cases, @jangorecki and @mrdwab for implementation feedback, and @MichaelChirico for ultimate implementation. -
update.dev.pkg
is new function to update package from development repository, it will download package sources only when newer commit is available in repository.data.table::update.dev.pkg()
defaults updatesdata.table
, but any package can be used. -
Item 1 in NEWS for v1.10.2 on CRAN in Jan 2017 included :
When j is a symbol prefixed with
..
it will be looked up in calling scope and its value taken to be column names or numbers. When you see the..
prefix think one-level-up, like the directory..
in all operating systems means the parent directory. In future the..
prefix could be made to work on all symbols apearing anywhere insideDT[...]
.The response has been positive (this tweet and FR#2655) and so this prefix is now expanded to all symbols appearing in
j=
as a first step; e.g.cols = "colB" DT[, c(..cols, "colC")] # same as DT[, .(colB,colC)] DT[, -..cols] # all columns other than colB
Thus,
with=
should no longer be needed in any cases. Please change to using the..
prefix and over the next few years we will start to formally deprecate and remove thewith=
parameter. If this is well received, the..
prefix could be expanded to symbols appearing ini=
andby=
, too. Note that column names should not now start with..
. If a symbol..var
is used inj=
but..var
exists as a column name, the column still takes precedence, for backwards compatibility. Over the next few years, data.table will start issuing warnings/errors when it sees column names starting with..
. This affects one CRAN package out of 475 using data.table, so we do not believe this restriction to be unreasonable. Our main focus here which we believe..
achieves is to resolve the more common ambiguity whenvar
is in calling scope andvar
is a column name too. Further, we have not forgotten that in the past we recommended prefixing the variable in calling scope with..
yourself. If you did that and..var
exists in calling scope, that still works, provided neithervar
exists in calling scope nor..var
exists as a column name. Please now remove the..
prefix on..var
in calling scope to tidy this up. In future data.table will start to warn/error on such usage. -
setindexv
can now assign multiple (separate) indices by accepting alist
in thecols
argument. -
as.matrix.data.table
method now has an additionalrownames
argument allowing for a single column to be used as therownames
after conversion to amatrix
. Thanks to @sritchie73 for the suggestion, use cases, #2692 and implementation PR#2702 and @MichaelChirico for additional use cases.
-
The new quote rules handles this single field
"Our Stock Screen Delivers an Israeli Software Company (MNDO, CTCH)<\/a> SmallCapInvestor.com - Thu, May 19, 2011 10:02 AM EDT<\/cite><\/div>Yesterday in \""Google, But for Finding Great Stocks\"", I discussed the value of stock screeners as a powerful tool"
, #2051. Thanks to @scarrascoso for reporting. Example file added to test suite. -
fwrite()
creates a file with permissions that now play correctly withSys.umask()
, #2049. Thanks to @gnguy for reporting. -
fread()
no longer holds an open lock on the file when a line outside the large sample has too many fields and generates an error, #2044. Thanks to Hugh Parsonage for reporting. -
Setting
j = {}
no longer results in an error, #2142. Thanks Michael Chirico for the pull request. -
Segfault in
rbindlist()
when one or more items are empty, #2019. Thanks Michael Lang for the pull request. Another segfault if the result would be more than 2bn rows, thanks to @jsams's comment in #2340. -
Error printing 0-length
ITime
andNA
objects, #2032 and #2171. Thanks Michael Chirico for the pull requests and @franknarf1 for pointing out a shortcoming of the initial fix. -
as.IDate.POSIXct
error withNULL
timezone, #1973. Thanks @lbilli for reporting and Michael Chirico for the pull request. -
Printing a null
data.table
withprint
no longer visibly outputsNULL
, #1852. Thanks @aaronmcdaid for spotting and @MichaelChirico for the PR. -
data.table
now works with Shiny Reactivity / Flexdashboard. The error was typically something likecol not found
inDT[col==val]
. Thanks to Dirk Eddelbuettel leading Matt through reproducible steps and @sergeganakou and Richard White for reporting. Closes #2001 and shiny/#1696. -
The
as.IDate.POSIXct
method passedtzone
along but was not exported. Sotzone
is now taken into account byas.IDate
too as well asIDateTime
, #977 and #1498. Tests added. -
Named logical vector now select rows as expected from single row data.table. Thanks to @skranz for reporting. Closes #2152.
-
fread()
's rareInternal error: Sampling jump point 10 is before the last jump ended
has been fixed, #2157. Thanks to Frank Erickson and Artem Klevtsov for reporting with example files which are now added to the test suite. -
CJ()
no longer loses attribute information, #2029. Thanks to @MarkusBonsch and @royalts for the pull request. -
split.data.table
respectsfactor
ordering inby
argument, #2082. Thanks to @MichaelChirico for identifying and fixing the issue. -
.SD
would incorrectly include symbol on lhs of:=
when.SDcols
is specified andget()
appears inj
. Thanks @renkun-ken for reporting and the PR, and @ProfFancyPants for reporing a regression introduced in the PR. Closes #2326 and #2338. -
Integer values that are too large to fit in
int64
will now be read as strings #2250. -
Internal-only
.shallow
now retains keys correctly, #2336. Thanks to @MarkusBonsch for reporting, fixing (PR #2337) and adding 37 tests. This much advances the journey towards exportingshallow()
, #2323. -
isoweek
calculation is correct regardless of local timezone setting (Sys.timezone()
), #2407. Thanks to @MoebiusAV and @SimonCoulombe for reporting and @MichaelChirico for fixing. -
Fixed
as.xts.data.table
to support all xts supported time based index clasess #2408. Thanks to @ebs238 for reporting and for the PR. -
A memory leak when a very small number such as
0.58E-2141
is bumped to typecharacter
is resolved, #918. -
The edge case
setnames(data.table(), character(0))
now works rather than error, #2452. -
Order of rows returned in non-equi joins were incorrect in certain scenarios as reported under #1991. This is now fixed. Thanks to @Henrik-P for reporting.
-
Non-equi joins work as expected when
x
inx[i, on=...]
is a 0-row data.table. Closes #1986. -
Non-equi joins along with
by=.EACHI
returned incorrect result in some rare cases as reported under #2360. This is fixed now. This fix also takes care of #2275. Thanks to @ebs238 for the nice minimal reproducible report, @Mihael for asking on SO and to @Frank for following up on SO and filing an issue. -
by=.EACHI
works now whenlist
columns are being returned and some join values are missing, #2300. Thanks to @jangorecki and @franknarf1 for the reproducible examples which have been added to the test suite. -
Indices are now retrieved by exact name, #2465. This prevents usage of wrong indices as well as unexpected row reordering in join results. Thanks to @pannnda for reporting and providing a reproducible example and to @MarkusBonsch for fixing.
-
setnames
of whole table when original table hadNA
names skipped replacing those, #2475. Thanks to @franknarf1 and BenoitLondon on StackOverflow for the report and @MichaelChirico for fixing. -
CJ()
works with multiple empty vectors now #2511. Thanks to @MarkusBonsch for fixing. -
:=
assignment of one vector to two or more columns, e.g.DT[, c("x", "y") := 1:10]
, failed to copy the1:10
data causing errors later if and when those columns were updated by reference, #2540. This is an old issue (#185) that had been fixed but reappeared when code was refactored. Thanks to @patrickhowerter for the detailed report with reproducible example and to @MarkusBonsch for fixing and strengthening tests so it doesn't reappear again. -
"Negative length vectors not allowed" error when grouping
median
andvar
fixed, #2046 and #2111. Thanks to @caneff and @osofr for reporting and to @kmillar for debugging and explaining the cause. -
Fixed a bug on Windows where
data.table
s containing non-UTF8 strings inkey
s were not properly sorted, #2462, #1826 and StackOverflow. Thanks to @shrektan for reporting and fixing. -
x.
prefixes during joins sometimes resulted in a "column not found" error. This is now fixed. Closes #2313. Thanks to @franknarf1 for the MRE. -
setattr()
no longer segfaults when setting 'class' to empty character vector, #2386. Thanks to @hatal175 for reporting and to @MarkusBonsch for fixing. -
Fixed cases where the result of
merge.data.table()
would contain duplicate column names ifby.x
was also innames(y)
.merge.data.table()
gains theno.dups
argument (default TRUE) to match the correpsonding patched behaviour inbase:::merge.data.frame()
. Now, whenby.x
is also innames(y)
the column name fromy
has the correspondingsuffixes
added to it.by.x
remains unchanged for backwards compatibility reasons. In addition, where duplicate column names arise anyway (i.e.suffixes = c("", "")
)merge.data.table()
will now throw a warning to match the behaviour ofbase:::merge.data.frame()
. Thanks to @sritchie73 for reporting and fixing PR#2631 and PR#2653 -
CJ()
now fails with proper error message when results would exceed max integer, #2636. -
NA
in character columns now display as<NA>
just like base R to distinguish from""
and"NA"
. -
getDTthreads()
could return INT_MAX (2 billion) after an explicit call tosetDTthreads(0)
, PR#2708. -
Fixed a bug on Windows that
data.table
may break if the garbage collecting was triggered when sorting a large number of non-ASCII characters. Thanks to @shrektan for reporting and fixing PR#2678, #2674. -
Internal aliasing of
.
tolist
was over-aggressive in applyinglist
even when.
was intended withinbquote
, #1912. Thanks @MichaelChirico for reporting/filing and @ecoRoland for suggesting and testing a fix. -
Attempt to allocate a wildly large amount of RAM (16EB) when grouping by key and there are close to 2 billion 1-row groups, #2777. Thanks to @jsams for the detailed report.
-
Fix a bug that
print(dt, class=TRUE)
shows onlytopn - 1
rows. Thanks to @heavywatal for reporting #2803 and filing PR#2804.
-
The license has been changed from GPL to MPL (Mozilla Public License). All contributors were consulted and approved. PR#2456 details the reasons for the change.
-
?data.table
makes explicit the option of using alogical
vector inj
to select columns, #1978. Thanks @Henrik-P for the note and @MichaelChirico for filing. -
Test 1675.1 updated to cope with a change in R-devel in June 2017 related to
factor()
andNA
levels. -
Package
ezknitr
has been added to the whitelist of packages that run user code and should be consider data.table-aware, #2266. Thanks to Matt Mills for testing and reporting. -
Printing with
quote = TRUE
now quotes column names as well, #1319. Thanks @jan-glx for the suggestion and @MichaelChirico for the PR. -
Added a blurb to
?melt.data.table
explicating the subtle difference in behavior of theid.vars
argument vis-a-vis its analog inreshape2::melt
, #1699. Thanks @MichaelChirico for uncovering and filing. -
Added some clarification about the usage of
on
to?data.table
, #2383. Thanks to @peterlittlejohn for volunteering his confusion and @MichaelChirico for brushing things up. -
Clarified that "data.table always sorts in
C-locale
" means that upper-case letters are sorted before lower-case letters by ordering in data.table (e.g.setorder
,setkey
,DT[order(...)]
). Thanks to @hughparsonage for the pull request editing the documentation. Note this makes no difference in most cases of data; e.g. ids where only uppercase or lowercase letters are used ("AB123"<"AC234"
is always true, regardless), or country names and words which are consistently capitalized. For example,"America" < "Brazil"
is not affected (it's always true), and neither is"america" < "brazil"
(always true too); since the first letter is consistently capitalized. But, whether"america" < "Brazil"
(the words are not consistently capitalized) is true or false in base R depends on the locale of your R session. In America it is true by default and false if you i) typeSys.setlocale(locale="C")
, ii) the R session has been started in a C locale for you which can happen on servers/services (the locale comes from the environment the R session is started in). However,"america" < "Brazil"
is always, consistently false in data.table which can be a surprise because it differs to base R by default in most regions. It is false because"B"<"a"
is true because all upper-case letters come first, followed by all lower case letters (the ascii number of each letter determines the order, which is what is meant byC-locale
). -
data.table
's dependency has been moved forward from R 3.0.0 (Apr 2013) to R 3.1.0 (Apr 2014; i.e. 3.5 years old). We keep this dependency as old as possible for as long as possible as requested by users in managed environments. Thanks to Jan Gorecki, the test suite from latest dev now runs on R 3.1.0 continously, as well as R-release (currently 3.4.2) and latest R-devel snapshot. The primary motivation for the bump to R 3.1.0 was allowing one new test which relies on better non-copying behaviour in that version, #2484. It also allows further internal simplifications. Thanks to @MichaelChirico for fixing another test that failed on R 3.1.0 due to slightly different behaviour ofbase::read.csv
in R 3.1.0-only which the test was comparing to, #2489. -
New vignette added: Importing data.table - focused on using data.table as a dependency in R packages. Answers most commonly asked questions and promote good practices.
-
As warned in v1.9.8 release notes below in this file (25 Nov 2016) it has been 1 year since then and so use of
options(datatable.old.unique.by.key=TRUE)
to restore the old default is now deprecated with warning. The new warning states that this option still works and repeats the request to passby=key(DT)
explicitly tounique()
,duplicated()
,uniqueN()
andanyDuplicated()
and to stop using this option. In another year, this warning will become error. Another year after that the option will be removed. -
As
set2key()
andkey2()
have been warning since v1.9.8 (Nov 2016), their warnings have now been upgraded to errors. Note that when they were introduced in version 1.9.4 (Oct 2014) they were marked as 'experimental' in NEWS item 4. They will be removed in one year.Was warning: set2key() will be deprecated in the next relase. Please use setindex() instead. Now error: set2key() is now deprecated. Please use setindex() instead.
-
The option
datatable.showProgress
is no longer set to a default value when the package is loaded. Instead, thedefault=
argument ofgetOption
is used by bothfwrite
andfread
. The default is the result ofinteractive()
at the time of the call. UsinggetOption
in this way is intended to be more helpful to users looking atargs(fread)
and?fread
. -
print.data.table()
invisibly returns its first argument instead ofNULL
. This behavior is compatible with the standardprint.data.frame()
and tibble'sprint.tbl_df()
. Thanks to @heavywatal for PR#2807
- Fixed crash/hang on MacOS when
parallel::mclapply
is used and data.table is merely loaded, #2418. Oddly, all tests including test 1705 (which testsmclapply
with data.table) passed fine on CRAN. It appears to be some versions of MacOS or some versions of libraries on MacOS, perhaps. Many thanks to Martin Morgan for reporting and confirming this fix works. Thanks also to @asenabouth, Joe Thorley and Danton Noriega for testing, debugging and confirming that automatic parallelism inside data.table (such asfwrite
) works well even on these MacOS installations. See also news items below for 1.10.4-1 and 1.10.4-2.
-
OpenMP on MacOS is now supported by CRAN and included in CRAN's package binaries for Mac. But installing v1.10.4-1 from source on MacOS failed when OpenMP was not enabled at compile time, #2409. Thanks to Liz Macfie and @fupangpangpang for reporting. The startup message when OpenMP is not enabled has been updated.
-
Two rare potential memory faults fixed, thanks to CRAN's automated use of latest compiler tools; e.g. clang-5 and gcc-7
-
The
nanotime
v0.2.0 update (June 2017) changed frominteger64
toS4
and brokefwrite
ofnanotime
columns. Fixed to work withnanotime
both before and after v0.2.0. -
Pass R-devel changes related to
deparse(,backtick=)
andfactor()
. -
Internal
NAMED()==2
nowMAYBE_SHARED()
, #2330. Back-ported to pass under the stated dependency, R 3.0.0. -
Attempted improvement on Mac-only when the
parallel
package is used too (which forks), #2137. Intel's OpenMP implementation appears to leave threads running after the OpenMP parallel region (inside data.table) has finished unlike GNU libgomp. So, if and whenparallel
'sfork
is invoked by the user after data.table has run in parallel already, instability occurs. The problem only occurs with Mac package binaries from CRAN because they are built by CRAN with Intel's OpenMP library. No known problems on Windows or Linux and no known problems on any platform whenparallel
is not used. If this Mac-only fix still doesn't work, callsetDTthreads(1)
immediately afterlibrary(data.table)
which has been reported to fix the problem by puttingdata.table
into single threaded mode earlier. -
When
fread()
andprint()
seeinteger64
columns are present but packagebit64
is not installed, the warning is now displayed as intended. Thanks to a question by Santosh on r-help and forwarded by Bill Dunlap.
- The new specialized
nanotime
writer infwrite()
type punned using*(long long *)&REAL(column)[i]
which, strictly, is undefined behavour under C standards. It passed a plethora of tests on linux (gcc 5.4 and clang 3.8), win-builder and 6 out 10 CRAN flavours using gcc. But failed (wrong data written) with the newest version of clang (3.9.1) as used by CRAN on the failing flavors, and solaris-sparc. Replaced with the union method and added a grep to CRAN_Release.cmd.
-
When
j
is a symbol prefixed with..
it will be looked up in calling scope and its value taken to be column names or numbers.myCols = c("colA","colB") DT[, myCols, with=FALSE] DT[, ..myCols] # same
When you see the
..
prefix think one-level-up like the directory..
in all operating systems meaning the parent directory. In future the..
prefix could be made to work on all symbols apearing anywhere insideDT[...]
. It is intended to be a convenient way to protect your code from accidentally picking up a column name. Similar to howx.
andi.
prefixes (analogous to SQL table aliases) can already be used to disambiguate the same column name present in bothx
andi
. A symbol prefix rather than a..()
function will be easier for us to optimize internally and more convenient if you have many variables in calling scope that you wish to use in your expressions safely. This feature was first raised in 2012 and long wished for, #633. It is experimental. -
When
fread()
orprint()
seeinteger64
columns are present,bit64
's namespace is now automatically loaded for convenience. -
fwrite()
now supports the newnanotime
type by Dirk Eddelbuettel, #1982. Aside:data.table
already automatically supportednanotime
in grouping and joining operations via longstanding support of its underlyinginteger64
type. -
indices()
gains a new argumentvectors
, defaultFALSE
. This strsplits the index names by__
for you, #1589.DT = data.table(A=1:3, B=6:4) setindex(DT, B) setindex(DT, B, A) indices(DT) [1] "B" "B__A" indices(DT, vectors=TRUE) [[1]] [1] "B" [[2]] [1] "B" "A"
-
Some long-standing potential instability has been discovered and resolved many thanks to a detailed report from Bill Dunlap and Michael Sannella. At C level any call of the form
setAttrib(x, install(), allocVector())
can be unstable in any R package. DespitesetAttrib()
PROTECTing its inputs, the 3rd argument (allocVector
) can be executed first only for its result to to be released byinstall()
's potential GC before reachingsetAttrib
's PROTECTion of its inputs. Fixed by either PROTECTing or pre-install()
ing. Added to CRAN_Release.cmd procedures: i)grep
s to prevent usage of this idiom in future and ii) running data.table's test suite withgctorture(TRUE)
. -
A new potential instability introduced in the last release (v1.10.0) in GForce optimized grouping has been fixed by reverting one change from malloc to R_alloc. Thanks again to Michael Sannella for the detailed report.
-
fwrite()
could write floating point values incorrectly, #1968. A thread-local variable was incorrectly thread-global. This variable's usage lifetime is only a few clock cycles so it needed large data and many threads for several threads to overlap their usage of it and cause the problem. Many thanks to @mgahan and @jmosser for finding and reporting.
-
fwrite()
's..turbo
option has been removed as the warning message warned. If you've found a problem, please report it. -
No known issues have arisen due to
DT[,1]
andDT[,c("colA","colB")]
now returning columns as introduced in v1.9.8. However, as we've moved forward by settingoptions('datatable.WhenJisSymbolThenCallingScope'=TRUE)
introduced then too, it has become clear a better solution is needed. All 340 CRAN and Bioconductor packages that use data.table have been checked with this option on. 331 lines would need to be changed in 59 packages. Their usage is elegant, correct and recommended, though. Examples areDT[1, encoding]
in quanteda andDT[winner=="first", freq]
in xgboost. These are looking up the columnsencoding
andfreq
respectively and returning them as vectors. But if, for some reason, those columns are removed fromDT
andencoding
orfreq
are still variables in calling scope, their values in calling scope would be returned. Which cannot be what was intended and could lead to silent bugs. That was the risk we were trying to avoid.
options('datatable.WhenJisSymbolThenCallingScope')
is now removed. A migration timeline is no longer needed. The new strategy needs no code changes and has no breakage. It was proposed and discussed in point 2 here, as follows.
Whenj
is a symbol (as in the quanteda and xgboost examples above) it will continue to be looked up as a column name and returned as a vector, as has always been the case. If it's not a column name however, it is now a helpful error explaining that data.table is different to data.frame and what to do instead (use..
prefix orwith=FALSE
). The old behaviour of returning the symbol's value in calling scope can never have been useful to anybody and therefore not depended on. Just as theDT[,1]
change could be made in v1.9.8, this change can be made now. This change increases robustness with no downside. Rerunning all 340 CRAN and Bioconductor package checks reveal 2 packages throwing the new error: partools and simcausal. Their maintainers have been informed that there is a likely bug on those lines due to data.table's (now remedied) weakness. This is exactly what we wanted to reveal and improve. -
As before, and as we can see is in common use in CRAN and Bioconductor packages using data.table,
DT[,myCols,with=FALSE]
continues to lookupmyCols
in calling scope and take its value as column names or numbers. You can move to the new experimental convenience featureDT[, ..myCols]
if you wish at leisure.
-
fwrite(..., quote='auto')
already quoted a field if it contained asep
or\n
, orsep2[2]
whenlist
columns are present. Now it also quotes a field if it contains a double quote ("
) as documented, #1925. Thanks to Aki Matsuo for reporting. Tests added. Theqmethod
tests did test escaping embedded double quotes, but only whensep
or\n
was present in the field as well to trigger the quoting of the field. -
Fixed 3 test failures on Solaris only, #1934. Two were on both sparc and x86 and related to a
tzone
attribute difference betweenas.POSIXct
andas.POSIXlt
even when passed the defaulttz=""
. The third was on sparc only: a minor rounding issue infwrite()
of 1e-305. -
Regression crash fixed when 0's occur at the end of a non-empty subset of an empty table, #1937. Thanks Arun for tracking down. Tests added. For example, subsetting the empty
DT=data.table(a=character())
withDT[c(1,0)]
should return a 1 row result with oneNA
since 1 is past the end ofnrow(DT)==0
, the same result asDT[1]
. -
Fixed newly reported crash that also occurred in old v1.9.6 when
by=.EACHI
,nomatch=0
, the first item ini
has no match ANDj
has a function call that is passed a key column, #1933. Many thanks to Reino Bruner for finding and reporting with a reproducible example. Tests added. -
Fixed
fread()
error occurring for a subset of Windows users:showProgress is not type integer but type 'logical'.
, #1944 and #1111. Our tests cover this usage (it is just default usage), pass on AppVeyor (Windows), win-builder (Windows) and CRAN's Windows so perhaps it only occurs on a specific and different version of Windows to all those. Thanks to @demydd for reporting. Fixed by using strictlylogical
type at R level andRboolean
at C level, consistently throughout. -
Combining
on=
(new in v1.9.6) withby=
orkeyby=
gave incorrect results, #1943. Many thanks to Henrik-P for the detailed and reproducible report. Tests added. -
New function
rleidv
was ignoring itscols
argument, #1942. Thanks Josh O'Brien for reporting. Tests added.
-
It seems OpenMP is not available on CRAN's Mac platform; NOTEs appeared in CRAN checks for v1.9.8. Moved
Rprintf
frominit.c
topackageStartupMessage
to avoid the NOTE as requested urgently by Professor Ripley. Also fixed the bad grammar of the message: 'single threaded' now 'single-threaded'. If you have a Mac and run macOS or OS X on it (I run Ubuntu on mine) please contact CRAN maintainers and/or Apple if you'd like CRAN's Mac binary to support OpenMP. Otherwise, please follow these instructions for OpenMP on Mac which people have reported success with. -
Just to state explicitly: data.table does not now depend on or require OpenMP. If you don't have it (as on CRAN's Mac it appears but not in general on Mac) then data.table should build, run and pass all tests just fine.
-
There are now 5,910 raw tests as reported by
test.data.table()
. Tests cover 91% of the 4k lines of R and 89% of the 7k lines of C. These stats are now known thanks to Jim Hester's Covr package and Codecov.io. If anyone is looking for something to help with, creating tests to hit the missed lines shown by clicking theR
andsrc
folders at the bottom here would be very much appreciated. -
The FAQ vignette has been revised given the changes in v1.9.8. In particular, the very first FAQ.
-
With hindsight, the last release v1.9.8 should have been named v1.10.0 to convey it wasn't just a patch release from .6 to .8 owing to the 'potentially breaking changes' items. Thanks to @neomantic for correctly pointing out. The best we can do now is now bump to 1.10.0.