Skip to content

Latest commit

 

History

History
executable file
·
31 lines (22 loc) · 1.33 KB

File metadata and controls

executable file
·
31 lines (22 loc) · 1.33 KB

AggMedianAbsoluteDeviation

Object to use median absolute deviation in aggregation. For more information see Grouping

Properties

Name Type Description Notes
var_field str Numeric field to calculate MAD for
tdigest AggTDigest [optional]

Example

from manticoresearch.models.agg_median_absolute_deviation import AggMedianAbsoluteDeviation

# TODO update the JSON string below
json = "{}"
# create an instance of AggMedianAbsoluteDeviation from a JSON string
agg_median_absolute_deviation_instance = AggMedianAbsoluteDeviation.from_json(json)
# print the JSON string representation of the object
print(AggMedianAbsoluteDeviation.to_json())

# convert the object into a dict
agg_median_absolute_deviation_dict = agg_median_absolute_deviation_instance.to_dict()
# create an instance of AggMedianAbsoluteDeviation from a dict
agg_median_absolute_deviation_from_dict = AggMedianAbsoluteDeviation.from_dict(agg_median_absolute_deviation_dict)

[Back to Model list] [Back to API list] [Back to README]