Skip to content

Commit ff7a33b

Browse files
committed
Updated LogisticReg.md
1 parent a3be73e commit ff7a33b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/book/basic_empirics/LogisticReg.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ A good example of logistic regression comes from a number of sources. But I am a
184184
185185
import pandas as pd
186186
187-
url = ('https://raw.githubusercontent.com/BigDataGal/Python-for-Data-Science/' +
188-
'master/titanic-train.csv')
187+
url = ('https://raw.githubusercontent.com/OpenSourceEcon/CompMethods/' +
188+
'main/data/basic_empirics/logit/titanic-train.csv')
189189
titanic = pd.read_csv(url)
190190
titanic.columns = ['PassengerId', 'Survived', 'Pclass', 'Name', 'Sex', 'Age',
191191
'SibSp', 'Parch', 'Ticket', 'Fare', 'Cabin', 'Embarked']

0 commit comments

Comments
 (0)