A user-defined Python module that simulates basic functionalities of the Pandas library. This project demonstrates how to build a mini data analysis framework with support for reading CSV files, modifying data, and performing simple operations — all without using Pandas.
✨ Features
Read CSV files into a custom DataFrame-like object Access data:
By row
By column
By individual cell
Modify data:
Update entire column
Update single cell
Add new column
Save the modified DataFrame to a new CSV file
Display DataFrame in tabular format
Column operations:
Sum
Max / Min