本文整理汇总了Python中streamhist.StreamHist.describe方法的典型用法代码示例。如果您正苦于以下问题:Python StreamHist.describe方法的具体用法?Python StreamHist.describe怎么用?Python StreamHist.describe使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类streamhist.StreamHist
的用法示例。
在下文中一共展示了StreamHist.describe方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_describe
# 需要导入模块: from streamhist import StreamHist [as 别名]
# 或者: from streamhist.StreamHist import describe [as 别名]
def test_describe():
points = 10000
data = make_uniform(points)
h = StreamHist().update(data)
d = h.describe(quantiles=[0.5])
print(d)
assert about(d["50%"], 0.5, 0.05)
assert about(d["min"], 0.0, 0.05)
assert about(d["max"], 1.0, 0.05)
assert about(d["mean"], 0.5, 0.05)
assert about(d["var"], 0.08, 0.05)
assert d["count"] == points