I am new to Dask. I am trying to do this pandas op in dask
df[\'close_pct_change\'] = df.groupby(\'tic\').close.pct_change(periods=1).dropna()
My