ai-venkat-r
commited on
Commit
•
f03f427
1
Parent(s):
56c9213
Datapreprocessing module (#7)
Browse files- tech: datapreprocessing (339e6e344af75a8d8ac3ba6ffe22d0d62c2e769b)
- 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:
|