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
With pandas 1.0.1 and matplotlib 3.2.0 in a conda Python 3.7.6 environment, I'm getting warnings about deprecation of rowNum and colNum attributes when using some pandas plotting routines.
C:\Users\me\Miniconda3\envs\forge\lib\site-packages\pandas\plotting\_matplotlib\tools.py:298: MatplotlibDeprecationWarning:
The rowNum attribute was deprecated in Matplotlib 3.2 and will be removed two minor releases later. Use ax.get_subplotspec().rowspan.start instead.
layout[ax.rowNum, ax.colNum] = ax.get_visible()
C:\Users\me\Miniconda3\envs\forge\lib\site-packages\pandas\plotting\_matplotlib\tools.py:298: MatplotlibDeprecationWarning:
The colNum attribute was deprecated in Matplotlib 3.2 and will be removed two minor releases later. Use ax.get_subplotspec().colspan.start instead.
layout[ax.rowNum, ax.colNum] = ax.get_visible()
The above warnings were generated when running this code:
iris.plot(subplots=True)
plt.suptitle('Iris data by index', x=0.5, y=0.925)
# Display the plot
plt.show()
Uh oh!
There was an error while loading. Please reload this page.
With pandas 1.0.1 and matplotlib 3.2.0 in a conda Python 3.7.6 environment, I'm getting warnings about deprecation of rowNum and colNum attributes when using some pandas plotting routines.
Environment:
Warnings:
The above warnings were generated when running this code:
and this code:
In both of the above cases, the plots did draw as expected.
The text was updated successfully, but these errors were encountered: