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
Currently the drop agrument in the dcast function aplies to both the RHS as the LHS. However sometimes it is usefull that drop only applies to the RHS or LHS and not both.
Allowing a double logical like drop = c(TRUE, FALSE) where the first applies to RHS and the second to LHS could be a usefull further development of the dcast function.
Currently the
drop
agrument in thedcast
function aplies to both the RHS as the LHS. However sometimes it is usefull thatdrop
only applies to the RHS or LHS and not both.Allowing a double logical like
drop = c(TRUE, FALSE)
where the first applies to RHS and the second to LHS could be a usefull further development of thedcast
function.An example can be found in this question on StackOverflow.
The text was updated successfully, but these errors were encountered: