harsh47

Results 1 issues of harsh47

I think this fixes the problem of missing values. Is it correct way of handling missing values ? ``` def wavg(group, avg_name, weight_name): import numpy as np group=group[np.isfinite(group[avg_name])] # ignores...