We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b825415 commit 9d6f99aCopy full SHA for 9d6f99a
R/as.data.table.R
@@ -136,7 +136,7 @@ as.data.table.list = function(x,
136
137
#Handle keep.rownames for vectors (mimicking data.frame behavior)
138
vector_rownames = NULL
139
- if(!identical(keep.rownames, FALSE)) {
+ if(!isFALSE(keep.rownames)) {
140
for(i in seq_len(n)){
141
xi = x[[i]]
142
if (!is.null(xi) && is.atomic(xi) && !is.null(names(xi)) && is.null(dim(xi)) && length(names(xi)) > 0) {
0 commit comments