%matplotlib inline import matplotlib.pyplot as plt plt.style.use('seaborn-darkgrid')
fig, ax = plt.subplots()
ax.plot([2, 1, 3])
ax.set_xlabel('X label') .set_xlabel('')で設定する。
ax.set_ylabel('Y label');
オプションやスタイルの変更は
ax.set_xlabel(‘X label’, style=’italic’, size=16)で行う。
コメント