Skip to content Skip to sidebar Skip to footer

Setting Xticks With Log Scale Results In Some Overlapping Labels

The following minimal working example on my system (Python 3.5.3, matplotlib 2.0.2) leads to the image that follows the code snippet: import matplotlib.ticker from matplotlib impor

Solution 1:

You don't need this line ax1.set_xscale('log'). The reason being that the data points are not logarithmic.


Post a Comment for "Setting Xticks With Log Scale Results In Some Overlapping Labels"