Currently wrapdims fills missing cells with some very large number. Example below.
Could these be replaced by 'missing' or some specified value.
df = DataFrame( x=[1,1,2], y=[1,2,1], data=[10,11,12])
wrapdims(df, :data, :x, :y )
ka(2,2) #=2800920006512
Use Case
I would then use coalesce to fill missings with some value (unique to each cell). Then convert back to a DataFrame.
This could all be done with DataFrame functions (groupby etc) but a KeyedArray is more elegant.
Currently
wrapdimsfills missing cells with some very large number. Example below.Could these be replaced by 'missing' or some specified value.
Use Case
I would then use
coalesceto fill missings with some value (unique to each cell). Then convert back to a DataFrame.This could all be done with DataFrame functions (groupby etc) but a KeyedArray is more elegant.