2016-07-27 12 views
-1

私の質問は、matplotlibライブラリを使用して生成されたFigure形式に関連しています。x軸にいくつかの数字をプロットする

x軸には1から100までの整数がありますが、私のコードではいくつかの数字に関連するデータだけをプロットしています(1,5,77,86,97など)。終わり

は、私のコードは私は1から100までのx軸との図を示して

どのように私は必要な数字(1,5,77,86,97)を表示することができますか?

私のコードは次のようになります。

def Plot(self,x,y, steps, nb,bool): 
    if(bool == False): 

     labelfont = { 
       'family' : 'sans-serif', # (cursive, fantasy, monospace, serif) 
       'color' : 'black',  # html hex or colour name 
       'weight' : 'normal',  # (normal, bold, bolder, lighter) 
       'size' : 20,   # default value:12 
       } 

     titlefont = { 
       'family' : 'serif', 
       'color' : 'black', 
       'weight' : 'bold', 
       'size' : 20, 
       } 

     x = np.array(x) 
     y = np.array(y) 
     pylab.plot(x, y, 
       'darkmagenta',      # colour 
       linestyle='',      # line style 
       linewidth=10,      # line width 
       marker = '+', 
       mew=6, ms=12) 

     axes = plt.gca() 
     axes.grid(True) 
     axes.set_xlim([1, x_max)   # x-axis bounds 
     axes.set_ylim([1, nb])    # y-axis bounds 

     pylab.title('Title' , fontdict=titlefont) 
     pylab.xlabel('x', fontdict=labelfont) 
     pylab.ylabel('y', fontdict=labelfont) 

     pylab.subplots_adjust(left=0.15)  # prevents overlapping of the y label 
    else: 
     test_steps.insert(0,"") 
     pylab.yticks(nb, steps,rotation=0, size=10) 
     pylab.margins(0.2) 
     pylab.xticks(np.arange(0, x_max, 1.0),rotation=90, size=10) 
     # Tweak spacing to prevent clipping of tick-labels 
     pylab.subplots_adjust(bottom=0.15) 
     F = pylab.gcf() 
     DefaultSize = F.get_size_inches() 
     if x_max < 100 and len(steps) < 100: 
      Xx = 2.5 
      Yy = 2.5 
     elif x_max < 200 and len(steps) < 200: 
      Xx = 5 
      Yy = 5 
     elif ix_max < 300 and len(steps) < 300: 
      Xx = 8 
      Yy = 8 
     elif x_max < 400 and steps < 400: 
      Xx = 10 
      Yy = 10 
     elif x_max < 500 and steps < 500: 
      Xx = 12 
      Yy = 12 
     else: 
      Xx = 15 
      Yy = 15 
     F.set_size_inches((DefaultSize[0]*Xx , DefaultSize[1]*Yy)) 
     F.savefig('Out.png', bbox_inches='tight') 
     pylab.close(F) 
+1

コードを投稿してください。 – DavidG

+0

@DavidG:投稿を編集しました –

答えて

2

あなたがmatplotlib.Axesオブジェクトを持っている場合は、set_xticksとx軸に沿って目盛りを変更することができます。

import matplotlib.pyplot as plt 
plt.plot([0,1,5,77,86,97],range(6),'o-') 
ax = plt.gca() 
ax.set_xticks([1,5,77,86,97]) 

出力で:

enter image description here

EDIT:値を等間隔にプロットしたいとします(ただし、この時点で、ラベルとして数値を持つ棒グラフを考慮する必要があります)。set_xticklabelsを使用して、偽のx軸を作成してティックの名前を変更できます。 YとXをマスキングし、それをプロットについて

import matplotlib.pyplot as plt 
x = range(5) 
y = range(5) 
real_x = [1,5,77,86,97] 
plt.plot(x,y,'o-') 
ax = plt.gca() 
ax.set_xticks(x) 
ax.set_xticklabels(real_x) 

enter image description here

+0

私が言っていることは、1と5,5,77,77、そして86の距離が同じでなければならないということです。 –

+0

@StackOverあなたが望むものは、それらの違いが同じではなくても同じ間隔であるということですか?上記の例のプロットを直線にすることが望ましいでしょうか? –

+0

いいえ、直線ではなく、ちょうどポイントです。曲線は連続していません。このように:http://stackoverflow.com/questions/12864294/adding-an-arbitrary-line-to-a-plotlib-plot-in-ipython-notebook –

0

どのように?行います

pylap.plot(x[y != 0], y, 
      'darkmagenta',      # colour 
      linestyle='',      # line style 
      linewidth=10,      # line width 
      marker = '+', 
      mew=6, ms=12) 

またはYは、以上の数字が含まれている場合= 0とあなただけの上に挙げた、ちょうどこれらの数字でXをマスクをプロットしたい...

2

: のような!

import matplotlib.pyplot as plt 
x = y = list(range(100)) 
idx = [1,5,77,86,97] 
new_y = [y[i] for i in idx] 
plt.plot(range(len(idx)), new_y, 'o-') 
plt.xticks(range(len(idx)),idx) 
plt.show() 

output

は、あなただけのドットがちょうど-を削除したい場合

plt.plot(range(len(idx)), new_y, 'o') 
#        ---^--- instead of 'o-' 
+1

ニースは、物事を簡素化 –

+0

@ M.Tありがとう:-) –

関連する問題