在seaborn或matplot中绘制控制箱宽的直方图或箱线图

时间:2016-06-07 21:43:22

标签: python matplotlib seaborn

我有已经装箱的数据。我有很多箱子(例如len(箱子)= 100)并且有相应的数量。

如何用正确的标签可视化这些垃圾箱?我正在使用seaborn和matplotlib玩,但我无法得到正确的布局。必须有一个微笑的方式。

bins = [0.05,0.1,0.15,0.2,0.25 ... 8.0] 计数= [600,48,57,124,170,200,...... 77]

我的代码会生成一个黑色条,覆盖我的x轴标签(bins):

import seaborn as sns
sns.set_style("whitegrid")
ax = sns.barplot(x="bins", y="count", data=df2)

0 个答案:

没有答案