Matplotlib - 设置没有刻度的轴标签

时间:2014-10-01 11:13:54

标签: python matplotlib axis-labels

Hello Python / Matplotlib大师,

我想在绘制特定水平线的随机点标记y轴。

我的Y轴不应该有任何值,只显示主刻度。

为了清楚地说明我的要求,我将使用一些截图。 我目前有什么: enter image description here 我想要的是: enter image description here

正如您所看到的, E1 E2 并不是主要的刻度线。实际上,我知道y轴值(虽然它们应该被隐藏,因为它是一个模型图)。我也知道 E1 E2 的值。

我将不胜感激。

让我的代码段如下:

ax3.axis([0,800,0,2500) #You can see that the major YTick-marks will be at 500 intervals
ax3.plot(x,y) #plot my lines
E1 = 1447
E2 = 2456
all_ticks = ax3.yaxis.get_all_ticks() #method that does not exist. If it did, I would be able to bind labels E1 and E2 to the respective values.

感谢您的帮助!

修改 对于另一个图表,我使用此代码为标签提供各种颜色。这很好用。 energy_rangelabels_energycolors_energy是与我的y轴一样大的numpy数组,在我的情况下,是2500.

#Modify the labels and colors of the Power y-axis
for i, y in enumerate(energy_range):
    if (i == int(math.floor(E1))):
        labels_energy[i] = '$E_1$'
        colors_energy[i] = 'blue'

    elif (i == int(math.floor(E2))):
        labels_energy[i] = '$E_2$'
        colors_energy[i] = 'green'
    else:
        labels_energy.append('')

#Modify the colour of the energy y-axis ticks 
for color,tick in zip(colors_energy,ax3.yaxis.get_major_ticks()):
    print color, tick
    if color:
        print color
        tick.label1.set_color(color) #set the color property
ax3.get_yaxis().set_ticklabels(labels_energy)

EDIT2: 带有虚拟值的完整样本:

#!/bin/python
import matplotlib
# matplotlib.use('Agg') #Remote, block show()

import numpy as np
import pylab as pylab
from pylab import *
import math

import matplotlib.pyplot as plt
from matplotlib.ticker import MultipleLocator
import matplotlib.font_manager as fm
from matplotlib.font_manager import FontProperties
import matplotlib.dates as mdates
from datetime import datetime
import matplotlib.cm as cm
from matplotlib.ticker import MultipleLocator, FormatStrFormatter

from scipy import interpolate

def plot_sketch():
    x = np.arange(0,800,1)
    energy_range = range (0,2500,1) #Power graph y-axis range
    labels_energy = [''] * len(energy_range)
    colors_energy = [''] * len(energy_range)
    f1=4
    P1=3
    P2=2
    P3=4
    f2=2 
    f3=6 

    #Set Axes ranges    
    ax3.axis([0,800,0,energy_range[-1]])

    #Add Energy lines; E=integral(P) dt
    y=[i * P1 for i in x] 
    ax3.plot(x,y, color='b')
    y = [i * P2 for i in x[:0.3*800]]
    ax3.plot(x[:0.3*800],y, color='g') 
    last_val = y[-1]
    y = [(i * P3 -last_val) for i in x[(0.3*800):(0.6*800)]]
    ax3.plot(x[(0.3*800):(0.6*800)],y, color='g') 

    E1 = x[-1] * P1
    E2 = (0.3 * x[-1]) * P2 + x[-1] * (0.6-0.3) * P3

    #Modify the labels and colors of the Power y-axis
    for i, y in enumerate(energy_range):
        if (i == int(math.floor(E1))):
            labels_energy[i] = '$E_1$'
            colors_energy[i] = 'blue'

        elif (i == int(math.floor(E2))):
            labels_energy[i] = '$E_2$'
            colors_energy[i] = 'green'
        else:
            labels_energy.append('')

    #Modify the colour of the power y-axis ticks 
    for color,tick in zip(colors_energy,ax3.yaxis.get_major_ticks()):
        if color:
            tick.label1.set_color(color) #set the color property

    ax3.get_yaxis().set_ticklabels(labels_energy)

    ax3.axhline(energy_range[int(math.floor(E1))], xmin=0, xmax=1, linewidth=0.25, color='b', linestyle='--')
    ax3.axhline(energy_range[int(math.floor(E2))], xmin=0, xmax=0.6, linewidth=0.25, color='g', linestyle='--')
    #Show grid
    ax3.xaxis.grid(True)


#fig = Sketch graph
fig = plt.figure(num=None, figsize=(14, 7), dpi=80, facecolor='w', edgecolor='k')
fig.canvas.set_window_title('Sketch graph')

ax3 = fig.add_subplot(111) #Energy plot
ax3.set_xlabel('Time (ms)',  fontsize=12)
ax3.set_ylabel('Energy (J)', fontsize=12)

pylab.xlim(xmin=0) # start at 0
plot_sketch()
plt.subplots_adjust(hspace=0)
plt.show()

2 个答案:

答案 0 :(得分:0)

我认为你正在寻找正确的转换(检查this)。在您的情况下,我认为您想要的只是使用text方法和正确的transform kwarg。在你的axhline调用后尝试将它添加到plot_sketch函数中:

ax3.text(0, energy_range[int(math.floor(E1))],
         'E1', color='g',
         ha='right',
         va='center',
         transform=ax3.get_yaxis_transform(),
         )
ax3.text(0, energy_range[int(math.floor(E2))],
         'E2', color='b',
         ha='right',
         va='center',
         transform=ax3.get_yaxis_transform(),
         )

get_yaxis_transform方法返回一个'混合'变换,它使输入到text调用的x值以轴为单位绘制,y数据以'data'为单位绘制。如果你想要一点填充(或者你可以使用ScaledTranslation变换,你可以调整x数据的值,(0)为-0.003或其他东西,但如果这是一次性的话,这通常是不必要的固定)。

您可能还想使用set_ylabel的'labelpad'选项,例如:

ax3.set_ylabel('Energy (J)', fontsize=12, labelpad=20)

答案 1 :(得分:0)

我认为我对不同帖子的回答可能会对您有所帮助: Matplotlib: Add strings as custom x-ticks but also keep existing (numeric) tick labels? Alternatives to matplotlib.pyplot.annotate?

它也适用于y轴。这是结果:

enter image description here