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
Summary:
### PR Description:
This pull request fixes issue #372, which involves the use of the deprecated `ax.grid(b=None)` in the AEPsych tutorial. As per the [Matplotlib 3.9.0 API updates](https://matplotlib.org/stable/api/prev_api_changes/api_changes_3.9.0.html), the `b=None` argument has been removed, causing a `ValueError` in recent versions (3.9.0 and above).
To address this, the `b=None` argument has been removed from two lines in the notebook, ensuring compatibility with Matplotlib 3.9.2 and higher.
The database-related error has already been resolved in PR #295, so no further changes are necessary regarding that.
This PR resolves the compatibility issue and ensures the tutorial runs correctly with the latest version of Matplotlib.
Pull Request resolved: #397
Reviewed By: crasanders
Differential Revision: D64153309
Pulled By: JasonKChow
fbshipit-source-id: 77051074797821901f9fa8e4b52ef2effed9a350
There are a few minor issues in the tutorial that is likely caused by interface changes in the last two years.
In the first cell,
ax.grid(b=None)
triggers an error frommatplotlib
.The error message is shown below.
This error is likely due to the matplotlib upgrade.
In the fifth cell, the bash command also triggers an error.
The following is the error message. This error can be fixed by simply removing "database" in the above command.
Versions:
I can open a pull request to fix these if needed.
The text was updated successfully, but these errors were encountered: