Skip to content

Commit b02804d

Browse files
Update 06-lsa.md
1 parent 7c88430 commit b02804d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

episodes/06-lsa.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ drive.mount('/content/drive')
7777
# Show existing colab notebooks and helpers.py file
7878
from os import listdir
7979
wksp_dir = '/content/drive/My Drive/Colab Notebooks/text-analysis/code'
80-
listdir(wksp_dir)
80+
print(listdir(wksp_dir))
8181

8282
# Add folder to colab's path so we can import the helper functions
8383
import sys
@@ -86,6 +86,7 @@ sys.path.insert(0, wksp_dir)
8686
# Read the data back in.
8787
from pandas import read_csv
8888
data = read_csv("/content/drive/My Drive/Colab Notebooks/text-analysis/data/data.csv")
89+
data.head()
8990

9091
```
9192

0 commit comments

Comments
 (0)