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
If you apply k_ring_smoothing on a dataframe that contains nulls (created by e.g. geo_to_h3_aggregate), then the nulls are mapped to 0. This is probably unwanted behaviour.
Could nulls be handled in this function by doing something like this?
returning an aggregated value where the k-ring is completely non-null (current method)
returning an aggregated value where there are a mix of nulls and non-nulls in the k-ring
returning null where all k-ring vals are null
The text was updated successfully, but these errors were encountered:
If you apply
k_ring_smoothing
on a dataframe that contains nulls (created by e.g.geo_to_h3_aggregate
), then the nulls are mapped to 0. This is probably unwanted behaviour.Could nulls be handled in this function by doing something like this?
The text was updated successfully, but these errors were encountered: