DataFramesMeta.jl icon indicating copy to clipboard operation
DataFramesMeta.jl copied to clipboard

Work with symbols and integers on the RHS

Open pdeffebach opened this issue 3 years ago • 1 comments

julia> df = DataFrame(a = [1, 2]);

julia> x = [true, false];

julia> @subset df x
ERROR: LoadError: MethodError: no method matching fun_to_vec(::Symbol; no_dest=true, outer_flags=(var"@byrow" = Base.RefValue{Bool}(false), var"@passmissing" = Base.RefValue{Bool}(false), var"@astable" = Base.RefValue{Bool}(false)))

Need to write a method of fun_to_vec for symbols and integers.

pdeffebach avatar Dec 15 '22 16:12 pdeffebach

This is a bug that should get fixed before 1.0 I think.

pdeffebach avatar Apr 09 '23 18:04 pdeffebach