Sales Dataset
Assess a daily sales extract with missing amounts and mixed currencies.
Overview
A synthetic daily sales log with missing amount values and both INR and USD transactions. Start with a deterministic quality assessment before defining business-specific currency rules.
Dataset
sales.csv15 rows × 8 columnsorder_idcustomer_idskuamountcurrencyorder_datechannelregion
Synthetic sales data with three missing amount values and two currency codes.
Python code
sales.py
python
import eazydatafix as edf
report = edf.assess("sales.csv")
print(
"Missing values:",
report.completeness.total_missing_values,
)
print(
"Completeness:",
report.completeness.completeness_score,
)Expected output
Python 3.11
>>> report = edf.assess("sales.csv")Missing values: 3Completeness: 97.5