codedthinking / Kezdi.jl

An umbrella of Julia packages for data analysis, in loving memory of Gábor Kézdi
Other
9 stars 0 forks source link

bug: replace missing with value #53

Closed korenmiklos closed 5 days ago

korenmiklos commented 1 week ago

@replace x = 0 @if ismissing(x) does not work. It tries to convert the columns first to Integer, but missing values cannot be converted. But we cannot insert a different type to the vector, either.

korenmiklos commented 1 week ago

Maybe we need to create a third vector z and then copy from x and y.

gergelyattilakiss commented 5 days ago

wasn't this solved in the refactor?

korenmiklos commented 5 days ago

Yes, just not automatically closed if not on the main branch.