以对数刻度

时间:2017-07-21 23:31:16

标签: python python-2.7 matplotlib plot

这是我用来生成数字的代码

import numpy as np
import matplotlib
import matplotlib.pyplot as plt

# generate data
x = np.linspace(0.01, 9.9, 15)
y = np.linspace(0.07, 0.7, 15)


matplotlib.rcParams['font.size'] = 20

# legend
matplotlib.rcParams['legend.frameon'] = False
matplotlib.rcParams['legend.fontsize'] = 'medium'

# ticks
matplotlib.rcParams['xtick.major.size'] = 10.0
matplotlib.rcParams['xtick.minor.size'] = 5.0
matplotlib.rcParams['xtick.major.width'] = 2.0
matplotlib.rcParams['xtick.minor.width'] = 2.0
matplotlib.rcParams['xtick.major.pad'] = 8.0

matplotlib.rcParams['ytick.major.size'] = 10.0
matplotlib.rcParams['ytick.minor.size'] = 5.0
matplotlib.rcParams['ytick.major.width'] = 2.0
matplotlib.rcParams['ytick.minor.width'] = 2.0
matplotlib.rcParams['ytick.major.pad'] = 8.0


fig = plt.figure(figsize=(10,6))
ax = fig.add_subplot(111)

plt.scatter(x, y, marker='o', color='k')

plt.xscale('log')
plt.xlim(xmin=0.005, xmax=10)
plt.yscale('log')
plt.ylim(ymin=0.07, ymax=0.7)

plt.xlabel('x')
plt.ylabel('y')

# x axis format
ax.xaxis.set_major_formatter(matplotlib.ticker.FormatStrFormatter("%.2f"))

# y axis format
ax.yaxis.set_major_formatter(matplotlib.ticker.FormatStrFormatter("%.1f"))
ax.yaxis.set_minor_formatter(matplotlib.ticker.FormatStrFormatter("%.1f"))

# borders 
plt.axhline(0.07, color='k', lw=2)
plt.axhline(0.7, color='k', lw=2)
plt.axvline(0.005, color='k', lw=2)
plt.axvline(10, color='k', lw=2)

plt.show()

enter image description here

我有以下问题

1-如何修复x轴格式,以便最后2个数字应写为1和10(而不是1.00和10.00)?

y轴上的2- p:我不想写所有的数字,只有少数。如何将其修复为:0.07,0.1,0.3,0.6?

3-如何从角落移除蜱虫?

编辑1(问题#3的更多细节)

如果仔细观察,在蓝色矩形内的下图中,角落不平滑。这是因为我使用plt.axhlineplt.axvline绘制了一条线(以使边框变粗)。由这些线过度绘制的角上的刻度使得角不平滑。我的想法是去掉角落上的刻度线以使其平滑。除非有一种我不知道的更聪明的方式。

enter image description here

1 个答案:

答案 0 :(得分:2)

对于您的问题#1,您需要以下格式设置:

Employee

然后

import matplotlib.ticker as ticker

def customizedLogFormat(x,pos):
  decimalplaces = int(np.maximum(-np.log10(x),0))
  formatstring = '{{:.{:1d}f}}'.format(decimalplaces)      
  return formatstring.format(x)  

对于你的问题#2,我真的不知道实现目标的聪明方法......但经过一些测试后,我认为'set_yticks'是一种可行的方法:

ax.xaxis.set_major_formatter(ticker.FuncFormatter(customizedLogFormat))

对于您的问题#3,您可以通过以下代码设置滴答位置:

ax.yaxis.set_major_formatter(matplotlib.ticker.FormatStrFormatter("%.2f"))
#ax.yaxis.set_minor_formatter(matplotlib.ticker.FormatStrFormatter("%.2f"))  
ax.set_yticks([0.07, 0.1, 0.3, 0.6])
ax.get_yaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) 

enter image description here