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 could consider adding support for count for AbstractDataFrame like we now support filter (also #2048 is related).
Additionally now filter is very inefficeint, we could introduce additional form:
filter(col => fun, df)
that will be much faster as it would be type stable. This is a style planned for select (the only difference is that fun is applied to each element, not a whole column).
The text was updated successfully, but these errors were encountered:
We could consider adding support for
count
forAbstractDataFrame
like we now supportfilter
(also #2048 is related).Additionally now
filter
is very inefficeint, we could introduce additional form:that will be much faster as it would be type stable. This is a style planned for
select
(the only difference is thatfun
is applied to each element, not a whole column).The text was updated successfully, but these errors were encountered: