タグ付けされた質問 「figure」

7
Matplotlibでは、fig.add_subplot(111)の引数は何を意味しますか?
時々私はこのようなコードに出くわします: import matplotlib.pyplot as plt x = [1, 2, 3, 4, 5] y = [1, 4, 9, 16, 25] fig = plt.figure() fig.add_subplot(111) plt.scatter(x, y) plt.show() 生成されるもの: 私は狂ったようにドキュメントを読んでいますが、の説明が見つかりません111。時々私は見る212。 の議論はfig.add_subplot()どういう意味ですか?

4
Matplotlibの異なるサイズのサブプロット
Figureに2つのサブプロットを追加する必要があります。1つのサブプロットは、2番目のサブプロットの約3倍の幅(同じ高さ)である必要があります。私はこれGridSpecとcolspan引数を使用してこれを達成しましたが、これを使用figureしてPDFに保存できるようにしたいと考えています。figsizeコンストラクターの引数を使用して最初の図を調整できますが、2番目のプロットのサイズを変更するにはどうすればよいですか?

5
Matplotlib(pyplot)savefigが空白の画像を出力する
私はmatplotlibを使用して作成したプロットを保存しようとしています。ただし、画像は空白で保存されます。 これが私のコードです: plt.subplot(121) plt.imshow(dataStack, cmap=mpl.cm.bone) plt.subplot(122) y = copy.deepcopy(tumorStack) y = np.ma.masked_where(y == 0, y) plt.imshow(dataStack, cmap=mpl.cm.bone) plt.imshow(y, cmap=mpl.cm.jet_r, interpolation='nearest') if T0 is not None: plt.subplot(123) plt.imshow(T0, cmap=mpl.cm.bone) #plt.subplot(124) #Autozoom #else: #plt.subplot(124) #Autozoom plt.show() plt.draw() plt.savefig('tessstttyyy.png', dpi=100) tessstttyyy.pngは空白です(.jpgでも試してみます)

4
Matplotlibに2番目の(新しい)プロットを作成し、後で古いプロットをプロットするように指示するにはどうすればよいですか?
データをプロットしてから、新しい図を作成してdata2をプロットし、最後に元のプロットとdata3をプロットします。 import numpy as np import matplotlib as plt x = arange(5) y = np.exp(5) plt.figure() plt.plot(x, y) z = np.sin(x) plt.figure() plt.plot(x, z) w = np.cos(x) plt.figure("""first figure""") # Here's the part I need plt.plot(x, w) FYI プロットが終了したことをmatplotlibに伝えるにはどうすればよいですか?同様のことをしますが、完全ではありません 元のプロットにアクセスできません。

6
Twinyを使用すると、Python Matplotlibの図のタイトルが軸のラベルと重なる
次のように、twinyを使用して、同じグラフに2つの別々の数量をプロットしようとしています。 fig = figure() ax = fig.add_subplot(111) ax.plot(T, r, 'b-', T, R, 'r-', T, r_geo, 'g-') ax.set_yscale('log') ax.annotate('Approx. sea level', xy=(Planet.T_day*1.3,(Planet.R)/1000), xytext=(Planet.T_day*1.3, Planet.R/1000)) ax.annotate('Geostat. orbit', xy=(Planet.T_day*1.3, r_geo[0]), xytext=(Planet.T_day*1.3, r_geo[0])) ax.set_xlabel('Rotational period (hrs)') ax.set_ylabel('Orbital radius (km), logarithmic') ax.set_title('Orbital charts for ' + Planet.N, horizontalalignment='center', verticalalignment='top') ax2 = ax.twiny() ax2.plot(v,r,'k-') ax2.set_xlabel('Linear speed …

6
plot.new()のエラー:図の余白が大きすぎます、散布図
私は解決策についてさまざまな質問を検討し、提案されたものを試しましたが、それを機能させる解決策が見つかりませんでした。 私がこのコードを実行したいときはいつでもそれはいつも言う: plot.new()のエラー:図のマージンが大きすぎます それを修正する方法がわかりません。これが私のコードです: par(mfcol=c(5,3)) hist(RtBio, main="Histograma de Bio Pappel") boxplot(RtBio, main="Diagrama de Caja de Bio Pappel") stem(RtBio) plot(RtBio, main="Gráfica de Dispersión") hist(RtAlsea, main="Histograma de Alsea") boxplot(Alsea, main="Diagrama de caja de Alsea") stem(RtAlsea) plot(RtTelev, main="Gráfica de distribución de Alsea") hist(RtTelev, main="Histograma de Televisa") boxplot(telev, main="Diagrama de Caja de Televisa") stem(Telev) …
107 r  plot  figure  margins 

6
pandocを使用してマークダウンの図を参照するにはどうすればよいですか?
私は現在マークダウンでドキュメントを書いており、テキストから画像への参照を作成したいと思います。 this is my text, I want a reference to my image1 [here]. blablabla ![image1](img/image1.png) マークダウンをpdfに変換した後、画像が1〜2ページ後に配置され、ドキュメントが意味をなさないため、この参照を行います。 更新: 私はその投稿でライアンの答えを試しましたが、それを機能させることはできません。どうやらコード: [image]: image.png "Image Title" ![Alt text][image] A reference to the [image](#image). 生成する必要があります: \begin{figure}[htbp] \centering \includegraphics[keepaspectratio,width=\textwidth,height=0.75\textheight]{i mage.png} \caption{Alt text} \label{image} \end{figure} A reference to the image (\autoref{image}). 代わりに、私は入手します: \begin{figure}[htbp] \centering \includegraphics{image.png} \caption{Alt text} …

6
LaTeXで2つの図を同じページにとどまらせるにはどうすればよいですか?
1ページに図として表示したい画像が2つあります。それぞれが利用可能なスペースの半分弱を消費するため、そのページに他のものを置くスペースはあまりありませんが、両方の図に十分なスペースがあることはわかっています。[ht]と[hb]、両方[h]と両方[ht]で図を配置しようとしましたが、それでも同じページにこれら2つの画像を取得できず、代わりに少なくともいくつかの段落を配置しました。 これらの2つの図を同じページにとどまらせるにはどうすればよいですか?
84 image  layout  latex  figure 
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.