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
I've been using FastBroadcast and @turbo to speed up broadcasting operations in DataFrames. However, missing values are quite common when you work with a DataFrame, and @turbo throws an error in that case.
Is it possible to have something similar to passmissing for @turbo? This would be consistent with Base broadcast and as FastBroadcast works, which passes missing values when you broadcast.
using LoopVectorization, FastBroadcast
df =DataFrame(a = [1,missing,3])
@.. df.a .* df.a # this works@turbo df.a .* df.a # this throws error
I've been using
FastBroadcast
and@turbo
to speed up broadcasting operations in DataFrames. However, missing values are quite common when you work with a DataFrame, and@turbo
throws an error in that case.Is it possible to have something similar to
passmissing
for@turbo
? This would be consistent with Base broadcast and as FastBroadcast works, which passes missing values when you broadcast.The error is:
The problem persists if you create a view dropping missings, since the vector is still Union{Missing,T} and is not allowed.
Many thanks!!! Great package!!!
The text was updated successfully, but these errors were encountered: