Alexandr Asked:2022-03-17 23:56:21 +0800 CST2022-03-17 23:56:21 +0800 CST 2022-03-17 23:56:21 +0800 CST 在 matplotlib 中设置列数 772 如何指定条形图中的列数?绘制时,得到一个不可读的分布: python 1 个回答 Voted Best Answer Pak Uula 2022-03-18T00:08:54+08:002022-03-18T00:08:54+08:00 我假设您正在使用DataFrame.histor Series.hist。 然后对于直方图,有bins列数和列width宽的参数: df = pd.DataFrame() df['x'] = np.random.rand(1000) n = 10 w = (max(df.x) - min(df.x))/n df.hist('x', width = 0.85*w, bins=n)
我假设您正在使用
DataFrame.hist
orSeries.hist
。然后对于直方图,有
bins
列数和列width
宽的参数: