Skip to content

Commit 786098c

Browse files
committed
Fixed: XGBoost Customer Churn dataset link
1 parent b93d177 commit 786098c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

introduction_to_applying_machine_learning/xgboost_customer_churn/xgboost_customer_churn.ipynb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@
111111
"metadata": {},
112112
"outputs": [],
113113
"source": [
114-
"!wget http://www.dataminingconsultant.com/data/churn.txt"
114+
"!wget http://dataminingconsultant.com/DKD2e_data_sets.zip\n",
115+
"!unzip -o DKD2e_data_sets.zip"
115116
]
116117
},
117118
{
@@ -120,7 +121,7 @@
120121
"metadata": {},
121122
"outputs": [],
122123
"source": [
123-
"churn = pd.read_csv('churn.txt')\n",
124+
"churn = pd.read_csv('./Data sets/churn.txt')\n",
124125
"pd.set_option('display.max_columns', 500)\n",
125126
"churn"
126127
]

0 commit comments

Comments
 (0)