2019-01-01から1ヶ月間の記事一覧
English version is below https://hopita.hatenablog.com/entry/2019/01/03/225756 はじめに JupyterNotebookで背景を黒色にしたとき、matplotlibでグラフを描画したら目盛りが見ずらくなってしまいました。 そこで、Pythonの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…
Introduction This article shows how to use "CaseIterable" protocol which introduced in Swift4.2. This protocol can provede all values of enum type. So, I do not need to implement such a property any more. Before Swift4.2 In Swift4.1 or ear…
English version below https://hopita.hatenablog.com/entry/2019/01/02/195204 はじめに オブジェクトの状態を定義など、いろいろと便利な列挙型Enumですが、この度Swift4.2で新しい機能が追加されていました。 この記事にはSwift 4.2からの新機能、列挙型…