我正在使用Seaborn绘制累积直方图。我的一个数据源提供了预先分箱的数据,我想以相同的样式绘制数据以匹配其他直方图。样本数据如下:
$result = mysqli_query($conn,"select * from project where ((`name` LIKE '%$text%') OR (`type` LIKE '%$text%') OR (`sector` LIKE '%$text%') OR (`city` LIKE '%$text%') OR (`builder` LIKE '%$text%')) AND `status`='1' LIMIT 6");
Value Percentile TotalCount 1/(1-Percentile)
0 939.0 0.000000 1 1.000000e+00
1 1380.0 0.100000 7504 1.110000e+00
2 1454.0 0.200000 14929 1.250000e+00
3 1492.0 0.300000 22598 1.430000e+00
4 1521.0 0.400000 29865 1.670000e+00
5 1550.0 0.500000 37409 2.000000e+00
...
79 6071.0 0.999982 74560 5.461333e+04
80 6071.0 0.999985 74560 6.553600e+04
81 6071.0 0.999986 74560 7.281778e+04
82 6639.0 0.999988 74561 8.192000e+04
83 6639.0 1.000000 74561 inf
似乎没有提供任何帮助。有什么工作吗?