matplotlib: x,y axis を好きな桁で表示する# setting the xticks to have 3 decimal placesxx, locs = plt.xticks()ll = ['%.3f' % a for a in xx]plt.xticks(xx, ll)plt.show()http://stackoverflow.com/questions/14442099/matplotlib-how-to-show-all-digits-on-ticks