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
In the file parametric.py [lines: 1739, 1743] there is a problem with ancova(...) function. This code tries to assign a value to read-only numpy array:
Hi,
First, thank you for a very useful library!
With the following versions installed:
Python: 3.12.3
Pingouin: 0.5.4
Pandas: 2.2.2
Numpy: 1.26.4
In the file parametric.py [lines: 1739, 1743] there is a problem with ancova(...) function. This code tries to assign a value to read-only numpy array:
ValueError: assignment destination is read-only
If one prints flags of all_effsize array with print(all_effsize.flags), the output is the following:
Making a copy of the array before assignment fixes the problem:
Best regards,
Anton
The text was updated successfully, but these errors were encountered: