PyPropValueList

Methods

MethodDescription
averageCompute the average of all property values. Alias for mean().
collect
count
drop_noneDrop none.
maxFind the maximum property value and its associated time.
meanCompute the mean of all property values.
medianCompute the median of all property values.
minMin property value.
sumSum of property values.

Method Details

average

Compute the average of all property values. Alias for mean().

Returns

TypeDescription
PropValueThe average of each property values, or None if count is zero.

collect

count

drop_none

Drop none.

Returns

TypeDescription
list[PropValue]

max

Find the maximum property value and its associated time.

Returns

TypeDescription
PropValue

mean

Compute the mean of all property values.

Returns

TypeDescription
PropValueThe mean of each property values, or None if count is zero.

median

Compute the median of all property values.

Returns

TypeDescription
PropValue

min

Min property value.

Returns

TypeDescription
PropValue

sum

Sum of property values.

Returns

TypeDescription
PropValue