Skip to content

Commit a9f30b7

Browse files
authored
Prefixed the CSV file-path by 'Datasets/'
As the data are in a specific directory, namely 'Datasets', that latter must be added as a prefix to all the data file-paths (in all the notebooks, not only this one). By the way, since Pandas natively reads .bz2 compressed files, you can take that opportunity and compress (with BZip2) all the data files.
1 parent f499b21 commit a9f30b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DecisionTrees_RandomForest_Project_LendingData.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
},
6868
"outputs": [],
6969
"source": [
70-
"df = pd.read_csv('loan_data.csv')"
70+
"df = pd.read_csv('Datasets/loan_data.csv')"
7171
]
7272
},
7373
{

0 commit comments

Comments
 (0)