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
In R's dplyr, you could drop a column using select(df,-columnName) as part of pipe chaining. This is particularly handy for datasets where you have a large number of columns, and only want to drop one column without retyping the rest of the column names. It'd be lovely to see this work with DataFramesMeta's select instead of having to break a LINQ chain to use delete!
The text was updated successfully, but these errors were encountered:
In R's dplyr, you could drop a column using
select(df,-columnName)
as part of pipe chaining. This is particularly handy for datasets where you have a large number of columns, and only want to drop one column without retyping the rest of the column names. It'd be lovely to see this work with DataFramesMeta'sselect
instead of having to break a LINQ chain to usedelete!
The text was updated successfully, but these errors were encountered: