Open xiaodaigh opened 4 years ago
See MWE:
t = JuliaDB.table((a = [1,2, missing, 4, missing],)) t = @transform_vec t {a = coalesce(:a, 2)}
a is not replaced, but the below is fine, the new column b is created automatically.
a
b
t = JuliaDB.table((a = [1,2, missing, 4, missing],)) t = @transform_vec t {b = coalesce(:a, 2)}
See MWE:
a
is not replaced, but the below is fine, the new columnb
is created automatically.