matthewatbb
matthewatbb
This is awesome! Can `elif scale_col in ["degree", "degree_in", "degree_out"]:` be changed to `if scale_col in ["degree", "degree_in", "degree_out"]:` to remove the need for `ignore_existing_scale_col`? I also think it would...
Something like `scale_cols = [ {'degree_in': 3}, {'degree_out': 2}, {'node_property': 1} ]` where the numbers here are weights
Ah I see - I was only thinking about the first scenario It could maybe be checked somehow within the function like `scale_col in ["degree", "degree_in", "degree_out"] and scale_col not...