Open ryanhammonds opened 3 months ago
The recompute_edges method updates the dataframe in the group object, e.g. bg[i].df_features. Access from bg.df_features[i] wouldn't get updated in the process. This adds a fix.
bg[i].df_features
bg.df_features[i]
The recompute_edges method updates the dataframe in the group object, e.g.
bg[i].df_features
. Access frombg.df_features[i]
wouldn't get updated in the process. This adds a fix.