Skip to content

Commit 6e8aa7a

Browse files
committed
replacing GD1Koposov and reflex_correct in import
1 parent 80115cf commit 6e8aa7a

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

episodes/05-select.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,12 @@ Whether you are working from a new notebook or coming back from a checkpoint,
6464
reloading the data will save you from having to run the query again.
6565

6666
If you are starting this episode here or starting this episode in a new notebook,
67-
you will need to run the following lines of code.
67+
you will need to run the following lines of code. The last two lines of the import
68+
statements assume your notebook is being run in the `student_download` directory.
69+
If you are running it from a different directory you will need to add the path using
70+
`sys.path.append(<path to student download>)` where `<path to student_download>` is
71+
the path to your `student_download` directory ending with `student_download`.
72+
6873

6974
This imports previously imported functions:
7075

@@ -77,6 +82,8 @@ import matplotlib.pyplot as plt
7782
import pandas as pd
7883

7984
from episode_functions import *
85+
from gd1 import GD1Koposov10
86+
from reflex import reflex_correct
8087
```
8188

8289
The following code loads in the data (instructions for downloading data can be

0 commit comments

Comments
 (0)