{'tx_id': 'TXN_001', 'amount': Decimal('100.00'), 'date': date(2023, 1, 30)}, {'tx_id': 'TXN_002', 'amount': Decimal('200.50'), 'date': date(2023, 1, 16)}, {'tx_id ...
This project implements Simple Linear Regression in Python without using any machine learning libraries. Everything is done using pure Python to understand the math behind linear regression.