Datapreprocessing module
#7
by
Ananthakrishnan12
- opened
- datapreprocessing.py +1 -1
datapreprocessing.py
CHANGED
@@ -17,7 +17,7 @@ def read_data(path):
|
|
17 |
df=pd.read_csv(path)
|
18 |
return df
|
19 |
except FileNotFoundError:
|
20 |
-
print("File not
|
21 |
|
22 |
data=read_data(r"E:\transactify\Dataset\transaction_data.csv")
|
23 |
if data is not None:
|
|
|
17 |
df=pd.read_csv(path)
|
18 |
return df
|
19 |
except FileNotFoundError:
|
20 |
+
print("File not exsists")
|
21 |
|
22 |
data=read_data(r"E:\transactify\Dataset\transaction_data.csv")
|
23 |
if data is not None:
|