Devendra21 commited on
Commit
a53017c
·
verified ·
1 Parent(s): a9991ec

Create data_preprocessing.py

Browse files
Files changed (1) hide show
  1. utils/data_preprocessing.py +6 -0
utils/data_preprocessing.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import pandas as pd
2
+
3
+ def preprocess_data(file_path):
4
+ data = pd.read_csv(file_path)
5
+ # Add preprocessing logic (e.g., scaling, feature engineering)
6
+ return data