2

pylab の subplot() 関数を使用して配置されたいくつかの単純な線グラフの上に画像を貼り付けようとしています。ただし、 imshow を呼び出すと、サブプロットの境界が変更されているように見え、 set_position 関数を使用してもこれらの境界を変更できません。

基本的に、この画像の上部のサブプロットを下部と同じ幅にしたいと思います。

この投稿に従って自動スケーリングをオフにしようとしましたが、違いはありません。

ここに私の情報源があります:

import pylab as pl

#Plotting results
F=pl.figure()

#First plot the unzoomed plot
ax1=pl.subplot(211)
ax2=pl.subplot(212)

#Not relevant to problem... ax1.plot() & ax2.plot() commands
for bl in range(len(bondLengths)):
    ls=styles[bl]
    lw=widths[bl]
    for cf in range(len(chgcarfiles)):
        c=colors[cf]
        avgi=avgIBLs[cf][bl]
        L=len(avgi)
        ax1.plot([bondLengths[bl]*(x+0.5)/L for x in range(-1,L/2,1)],avgi[len(avgi)/2-1:],c=c,ls=ls,lw=lw)
        ax2.plot([bondLengths[bl]*(x+0.5)/L for x in range(-1,L/2,1)],avgi[len(avgi)/2-1:],c=c,ls=ls,lw=lw)

ax1.set_xlim([0,2.5])
ax1.set_ylim([0.5,4.9])
ax2.set_xlim([0,1.2])
ax2.set_ylim([0.88,0.96])

#Load up & insert an image
slice=pl.loadtxt("somedata1")
ax1.autoscale(False)
ax1.imshow(slice,extent=[0.05,0.75,3.4,4.1])    

pl.figtext(0.45,0.03,r"Distance ($\AA$)")
pl.figtext(0.05,0.65,r"Partial Charge Density ($\rho / rho_{avg}$)",rotation='vertical')

pl.show()
4

2 に答える 2

1

ax1 の上に別の ax を作成できます。

import pylab as pl

F=pl.figure()

ax1=pl.subplot(211)
ax2=pl.subplot(212)

ax1.plot(pl.randn(100))
ax2.plot(pl.randn(100))

img = pl.randn(100, 100)
ax3 = pl.axes([0.2, 0.65, 0.2, 0.2])
ax3.imshow(img)

pl.show()

ここに画像の説明を入力

于 2012-04-24T01:07:45.500 に答える
1

に指定aspect='auto'するだけimshowです。

デフォルトでimshowは、軸の縦横比を 1 に設定します (または、imshow.

例えば

import matplotlib.pyplot as plt
import numpy as np

fig, axes = plt.subplots(nrows=2)

for ax in axes:
    ax.plot(np.random.random(100))

axes[1].autoscale(False)
imdata = np.random.random((10,10))
axes[1].imshow(imdata, aspect='auto', extent=[5, 20, 0.3, 0.8])

plt.show()

ここに画像の説明を入力

于 2012-04-24T02:21:58.257 に答える