You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
forder on char with sort=FALSE is great (for speedup). And na.last=FALSE and na.last=TRUE need not hold much weight (since sort=FALSE).
However, na.last=NA implies omitting NA rows, sorting has no say here, I think. i.e., irrespective of whether sort=FALSE or TRUE, na.last=NA should not return indices of NAs in order indices.
forder
on char withsort=FALSE
is great (for speedup). Andna.last=FALSE
andna.last=TRUE
need not hold much weight (sincesort=FALSE
).However,
na.last=NA
implies omitting NA rows, sorting has no say here, I think. i.e., irrespective of whethersort=FALSE
orTRUE
,na.last=NA
should not return indices of NAs in order indices.Right now:
but it should be:
This is useful in at least one scenario. Speeding up
uniqueN
whenna.rm=TRUE
. See #1455.The text was updated successfully, but these errors were encountered: