2019-11

Python

matplotlibでA4サイズのfigureを作成する

A4でグラフを作ると印刷する時に色々捗るので調べてみたplt.figure(figsize=(11.69,8.27), dpi=100)これでA4サイズと同等である横11.69インチ、縦8.27インチの図表が出来る参考
Python

matplotlibで大量のfigureを作って怒られる

色んなパターンでグラフを作ってループ処理していた時のことRuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot in...
Python

matplotlibで画像をグリッド状に並べて軸ラベルを消す

ディープラーニングでよくみるグリッド上の画像を作りたいのでやってみたfrom keras.datasets import mnistfrom matplotlib import pyplot as pltimport numpy as np...