Jupyter / matplotlib > 2つのグラフを表示する > plt.figure() / plt.subplot()
動作環境
GeForce GTX 1070 (8GB)
ASRock Z170M Pro4S [Intel Z170chipset]
Ubuntu 14.04 LTS desktop amd64
TensorFlow v0.11
cuDNN v5.1 for Linux
CUDA v8.0
Python 2.7.6
IPython 5.1.0 -- An enhanced Interactive Python.
gcc (Ubuntu 4.8.4-2ubuntu1~14.04.3) 4.8.4
2つの画像を並べて表示しようとしている。
plt.figure使用
Python 機械学習プログラミング by Sebastian Raschkaら
in100_out100.ipynb
import numpy as np
import matplotlib.pyplot as plt
np.random.seed(123)
fig1,fig2 = plt.figure(1), plt.figure(2)
plt.figure(1)
plt.plot(np.random.rand(100))
plt.figure(2)
plt.scatter(np.random.rand(100), np.random.rand(100))
plt.show()
グラフが縦に並んだ。
plt.subplot()使用
plt.subplot()というのがあったことを思い出した。
in100_out100.ipynb
import numpy as np
import matplotlib.pyplot as plt
np.random.seed(123)
fig1 = plt.figure(1)
plt.subplot(221)
plt.plot(np.random.rand(100))
plt.subplot(222)
plt.scatter(np.random.rand(100), np.random.rand(100))
plt.show()
2x2の配置において、1,2の場所に置いてみた (1始まりのインデックス)。
link
以下に良い記事がありました。
http://qiita.com/supersaiakujin/items/543053ca4610437112df
Author And Source
この問題について(Jupyter / matplotlib > 2つのグラフを表示する > plt.figure() / plt.subplot()), 我々は、より多くの情報をここで見つけました https://qiita.com/7of9/items/68da222129dc657eac54著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .