在plt.subplots中隐藏轴行情指示器的短行

时间:2018-10-27 00:28:19

标签: python matplotlib

我想隐藏情节(plt.subplots)的代码(而不是代码标签)。如果这些子图不共享轴,则可行。

import pandas as pd
import matplotlib.pyplot as plt
matplotlib.rcParams['xtick.major.size'] = 0.0
matplotlib.rcParams['ytick.major.size'] = 0.0

dat = pd.DataFrame(np.arange(12).reshape(3, 4))
fig, axs = plt.subplots(2, 2)
for i in range(4):
  dat[i].plot(ax=axs[i // 2, i % 2])

enter image description here

但是,如果共享轴,则会显示股票行情。它们看起来很难看,我想知道是否有办法禁用它们。

fig, axs = plt.subplots(2, 2, sharex=True, sharey=True)
for i in range(4):
  dat[i].plot(ax=axs[i // 2, i % 2])

enter image description here

0 个答案:

没有答案