Coverage for jstark / features / gross_spend.py: 100%
12 statements
« prev ^ index » next coverage.py v7.13.4, created at 2026-03-23 22:34 +0000
« prev ^ index » next coverage.py v7.13.4, created at 2026-03-23 22:34 +0000
1"""GrossSpend feature"""
3import pyspark.sql.functions as f
4from pyspark.sql import Column
6from jstark.features.sum_feature import Sum
9class GrossSpend(Sum):
10 def column_expression(self) -> Column:
11 return f.col("GrossSpend")
13 @property
14 def description_subject(self) -> str:
15 return "Sum of GrossSpend"
17 @property
18 def commentary(self) -> str:
19 return (
20 "The definition of GrossSpend can be whatever you want "
21 + "it to be though typically its the price inclusive of any tax paid"
22 )