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
Error in `[.data.table`(data, , { :
Supplied 2 items for column 2 of group 1 which has 4 rows. The RHS length must either be 1 (single values are ok) or match the LHS length exactly. If you wish to 'recycle' the RHS please use rep() explicitly to make this intent clear to readers of your code.
I guess this is related to the recently introduced auto-naming j (#3802)?
The text was updated successfully, but these errors were encountered:
Thanks, @renkun-ken! As it happens, I did a full rerun of all revdeps last night since we need to release to CRAN for #4058. All revdeps passed so this is the only known breakage so far.
The latest dev is broken for use cases where
j
returnsNULL
but evaluateslist(...)
either explicitly or implicitly.If
j
evaluateslist(...)
with different lengths but finally returnsNULL
An error still occurs:
And if
list(...)
of the same lengths are evaluated but returnsNULL
A table is incorrectly produced:
Even if no explicit
list(...)
is called, error still occurs, which is a typical use case for group plotting:I guess this is related to the recently introduced auto-naming
j
(#3802)?The text was updated successfully, but these errors were encountered: