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
We have delete!, but DataFrame is particularly nice for a functional style when subsetting/transforming columns, so it would make sense to have something like
I define this function at the top of literally any script where I am using DataFrames (although I'll probably switch to your version because it is was more compact).
dropcol(d,args...) = @select(d, filter(x -> !(x in args),names(d)))
We have
delete!
, butDataFrame
is particularly nice for a functional style when subsetting/transforming columns, so it would make sense to have something likeThe text was updated successfully, but these errors were encountered: