Module pygw.statistics.field

This module contains field statistics

It contains the following import shortcuts:

from pygw.statistics.field import BloomFilterStatistic
from pygw.statistics.field import BoundingBoxStatistic
from pygw.statistics.field import CountMinSketchStatistic
from pygw.statistics.field import FixedBinNumericHistogramStatistic
from pygw.statistics.field import HyperLogLogStatistic
from pygw.statistics.field import NumericHistogramStatistic
from pygw.statistics.field import NumericMeanStatistic
from pygw.statistics.field import NumericRangeStatistic
from pygw.statistics.field import NumericStatsStatistic
from pygw.statistics.field import TimeRangeStatistic
Source code
#
# Copyright (c) 2013-2022 Contributors to the Eclipse Foundation

#
# See the NOTICE file distributed with this work for additional information regarding copyright
# ownership. All rights reserved. This program and the accompanying materials are made available
# under the terms of the Apache License, Version 2.0 which accompanies this distribution and is
# available at http://www.apache.org/licenses/LICENSE-2.0.txt
# ===============================================================================================
"""
This module contains field statistics

It contains the following import shortcuts:
```python
from pygw.statistics.field import BloomFilterStatistic
from pygw.statistics.field import BoundingBoxStatistic
from pygw.statistics.field import CountMinSketchStatistic
from pygw.statistics.field import FixedBinNumericHistogramStatistic
from pygw.statistics.field import HyperLogLogStatistic
from pygw.statistics.field import NumericHistogramStatistic
from pygw.statistics.field import NumericMeanStatistic
from pygw.statistics.field import NumericRangeStatistic
from pygw.statistics.field import NumericStatsStatistic
from pygw.statistics.field import TimeRangeStatistic
```
"""

from .bloom_filter_statistic import BloomFilterStatistic
from .bounding_box_statistic import BoundingBoxStatistic
from .count_min_sketch_statistic import CountMinSketchStatistic
from .fixed_bin_numeric_histogram_statistic import FixedBinNumericHistogramStatistic
from .hyper_log_log_statistic import HyperLogLogStatistic
from .numeric_histogram_statistic import NumericHistogramStatistic
from .numeric_mean_statistic import NumericMeanStatistic
from .numeric_range_statistic import NumericRangeStatistic
from .numeric_stats_statistic import NumericStatsStatistic
from .time_range_statistic import TimeRangeStatistic

Sub-modules

pygw.statistics.field.bloom_filter_statistic
pygw.statistics.field.bounding_box_statistic
pygw.statistics.field.count_min_sketch_statistic
pygw.statistics.field.fixed_bin_numeric_histogram_statistic
pygw.statistics.field.hyper_log_log_statistic
pygw.statistics.field.numeric_histogram_statistic
pygw.statistics.field.numeric_mean_statistic
pygw.statistics.field.numeric_range_statistic
pygw.statistics.field.numeric_stats_statistic
pygw.statistics.field.time_range_statistic