diff --git a/lectures/mle.md b/lectures/mle.md index 8a15d6ac..45d641b1 100644 --- a/lectures/mle.md +++ b/lectures/mle.md @@ -90,7 +90,7 @@ The following code imports this data and reads it into an array called `sample` ```{code-cell} ipython3 :tags: [hide-input] -url = 'https://media.githubusercontent.com/media/QuantEcon/high_dim_data/update_scf_noweights/SCF_plus/SCF_plus_mini_no_weights.csv' +url = 'https://github.com/QuantEcon/high_dim_data/raw/main/SCF_plus/SCF_plus_mini_no_weights.csv' df = pd.read_csv(url) df = df.dropna() df = df[df['year'] == 2016]