Open kinyatoride opened 3 months ago
Not a real solution but for now you could do:
import numpy as np
import proplot as plt
x = np.logspace(-1, 1, 100)
fig, ax = plt.subplots()
ax.semilogx(x, np.sin(x))
tax = ax.dualx(lambda x: x)
tax.invert_xaxis()
plt.show(block=1)
Which produces
Description
dualx
seems to have an issue handling log scale axis.Steps to reproduce
The top tick labels are a mess.
Equivalent steps in matplotlib
Proplot version
3.4.3 0.9.7