We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Matplotlib 3.4 deprecated calling plt.gca() with parameters, which the FlowCal plot module does in the scatter3d() function.
plt.gca()
plot
scatter3d()
With matplotlib v3.4.3 and FlowCal v1.3.0:
matplotlib
FlowCal
>>> FlowCal.plot.scatter3d(np.array([[1,2,3],[4,5,6],[7,8,9]])) FlowCal/plot.py:3484: MatplotlibDeprecationWarning: Calling gca() with keyword arguments was deprecated in Matplotlib 3.4. Starting two minor releases later, gca() will take no keyword arguments. The gca() function should only be used to get the current axes, or if no axes exist, create new axes with default keyword arguments. To create a new axes with non-default arguments, use plt.axes() or plt.subplot().
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Matplotlib 3.4 deprecated calling
plt.gca()
with parameters, which the FlowCalplot
module does in thescatter3d()
function.With
matplotlib
v3.4.3 andFlowCal
v1.3.0:The text was updated successfully, but these errors were encountered: