import matplotlib.pyplot as plt fig=plt.figure(1) ax1=fig.add_subplot(1,2,1) ax1.loglog(range(10)) ax2=fig.add_subplot(1,2,2, sharex=ax1) ax2.loglog(range(10)) fig.clf() Throws a warning: UserWarning: ...
I am trying to reproduce the original python matplotlib functionality of being able to display fixed offsets in x, y, and z values in the chart axes to whole numbers. This question on stackoverflow, ...