PythonmatplotlibでA4サイズのfigureを作成する A4でグラフを作ると印刷する時に色々捗るので調べてみた plt.figure(figsize=(11.69,8.27), dpi=100) これでA4サイズと同等である横11.69インチ、縦8.27インチの図表が出来る 参考2019.11.26Python
Pythonmatplotlibで大量のfigureを作って怒られる 色んなパターンでグラフを作ってループ処理していた時のこと RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot i...2019.11.12Python
Pythonmatplotlibで画像をグリッド状に並べて軸ラベルを消す ディープラーニングでよくみるグリッド上の画像を作りたいのでやってみた from keras.datasets import mnist from matplotlib import pyplot as plt import numpy as...2019.11.11Python