atoti.Measure.description#
- property Measure.description: str | None#
Description of the measure.
Example
>>> df = pd.DataFrame( ... columns=["Product", "Price"], ... data=[ ... ("phone", 560), ... ("headset", 80), ... ("watch", 250), ... ], ... ) >>> table = session.read_pandas( ... df, keys=["Product"], table_name="Description example" ... ) >>> cube = session.create_cube(table) >>> m = cube.measures >>> print(m["Price.SUM"].description) None >>> m["Price.SUM"].description = "The sum of the price" >>> m["Price.SUM"].description 'The sum of the price' >>> del m["Price.SUM"].description >>> print(m["Price.SUM"].description) None