我无法理解plt.subplots(2,1, figsize=(10,8))
中的两个参数。
两个地块是2?那1呢?
import matplotlib.pyplot as plt
letter_prop = subtable / subtable.sum().astype(float)
fig, axes = plt.subplots(2,1, figsize=(10,8))
letter_prop['M'].plot(kind = 'bar', rot = 0 , ax=axes[0], title="Male")
letter_prop['F'].plot(kind = 'bar', rot = 0 , ax=axes[1], title="Female", legend = False)
谢谢!
答案 0 :(得分:0)
根据documentation,函数的签名是
matplotlib.pyplot.subplots(nrows=1, ncols=1, sharex=False, sharey=False, squeeze=True, subplot_kw=None, gridspec_kw=None, **fig_kw)
其中两个第一个参数是网格的行数和列数。