Object to use median absolute deviation in aggregation. For more information see Grouping
| Name | Type | Description | Notes |
|---|---|---|---|
| var_field | str | Numeric field to calculate MAD for | |
| tdigest | AggTDigest | [optional] |
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)