[docs]classPercentTrue(AggregationPrimitive):"""Determines the percent of `True` values. Description: Given a list of booleans, return the percent of values which are `True` as a decimal. `NaN` values are treated as `False`, adding to the denominator. Examples: >>> percent_true = PercentTrue() >>> percent_true([True, False, True, True, None]) 0.6 """name="percent_true"input_types=[[ColumnSchema(logical_type=BooleanNullable)],[ColumnSchema(logical_type=Boolean)],]return_type=ColumnSchema(logical_type=Double,semantic_tags={"numeric"})stack_on=[]stack_on_exclude=[]default_value=pd.NAdescription_template="the percentage of true values in {}"defget_function(self):defpercent_true(s):returns.fillna(False).mean()returnpercent_true