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'm trying to use OnlineStats with JuliaDB am unable to get it working with named columns. I'm not sure if this is an issue with OnlineStats or JuliaDB or just isn't expected to work this way...
using JuliaDB
using OnlineStats
t1 =table(rand(10), rand(10))
reduce(2Mean(),t1)
#no error
t2 =table(rand(10), rand(10), names=[:a,:b])
reduce(2Mean(),t2)
#Error: The input for Group is a Union{NamedTuple{names,Tuple{Number,Number}}, Tuple{Number,Number}, AbstractArray{#s28,1} where #s28<:Number} where names. Found Float64.```
The text was updated successfully, but these errors were encountered:
I'm trying to use OnlineStats with JuliaDB am unable to get it working with named columns. I'm not sure if this is an issue with OnlineStats or JuliaDB or just isn't expected to work this way...
The text was updated successfully, but these errors were encountered: