なんとかするから、なんとかなる

エンジニア関係のことを書きます

2019-01-03から1日間の記事一覧

matplotlibで目盛りの色を変更する方法

English version is below https://hopita.hatenablog.com/entry/2019/01/03/225756 はじめに JupyterNotebookで背景を黒色にしたとき、matplotlibでグラフを描画したら目盛りが見ずらくなってしまいました。 そこで、Pythonのmatplotlibでグラフを描画する…

How to change a color of measurement labels in matplotlib

Introduction This article shows how to change a color of measurement labels in matplotlib. Solution It's a simply way to change a color of measurement labels. import matplotlib.pyplot as plt ax = plt.subplot(111) for item in ax.get_xtickla…