トップカーブをプロットしようとすると、plt.hist()
の出力をどのように隠すことになりますか?matplotlibのヒストグラム出力を隠す
data = {'first': np.random.normal(size=[100]),
'second': np.random.normal(size=[100]),
'third': np.random.normal(size=[100])}
for data_set, values in sorted(data.items()):
y_values, bin_edges, _ = plt.hist(values, bins=20)
bin_centers = 0.5*(bin_edges[1:] + bin_edges[:-1])
plt.plot(bin_centers, y_values, '-', label=data_set)
legend = plt.legend()
plt.show()
同様の問題が、ループがありますので、私はちょうどプロットをクリアすることはできません。 Hide histogram plot