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
Bug summary
Given clean loglog data, loglog subplots with shared axes work correctly. Given arbitrary loglog data, axis labels are removed incompletely.
Code for reproduction
import numpy as np import matplotlib.pyplot as plt x_pass = np.logspace(1, 2, 3) y1_pass = x_pass y2_pass = 10*x_pass x_fail = np.array([56., 140., 420.]) y1_fail = x_fail y2_fail = 10*x_fail f, ax = plt.subplots(2, sharex=True) ax[0].loglog(x_pass, y1_pass, 'o') ax[1].loglog(x_pass, y2_pass, 'o') f, ax = plt.subplots(2, sharex=True) ax[0].loglog(x_fail, y1_fail, 'o') ax[1].loglog(x_fail, y2_fail, 'o')
Actual outcome
Expected outcome
The upper subplot in the second figure should hide all its x axis labels, similar to the upper subplot in the first figure.
Matplotlib version
Installed from Anaconda3-4.4.0-MacOSX-x86_64.pkg
The text was updated successfully, but these errors were encountered:
This is a duplicate of #8903.
Sorry, something went wrong.
No branches or pull requests
Bug report
Bug summary
Given clean loglog data, loglog subplots with shared axes work correctly. Given arbitrary loglog data, axis labels are removed incompletely.
Code for reproduction
Actual outcome
Expected outcome
The upper subplot in the second figure should hide all its x axis labels, similar to the upper subplot in the first figure.
Matplotlib version
Installed from Anaconda3-4.4.0-MacOSX-x86_64.pkg
The text was updated successfully, but these errors were encountered: