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
Hi Maxim, yes the dataframe is being copied as df, but xc is not copied from df. Later df (lines 224-227) is being changed based on the values of xc, but when changing df, xc changes too, leading to an error. You should be able to see that in the code example I provided, no? Maybe this error only occurs with certain versions, idk?
Describe the bug
A call by reference in the sign_plot method leads to a bad plot if using a DataFrame.
To Reproduce
Minimal example:
Solution
Change
xc = df.values
toxc = df.values.copy()
in line 195 in plotting.pyLast Words
Thank you for this nice open source code :)
The text was updated successfully, but these errors were encountered: