Skip to content

Commit 9748c56

Browse files
Update 06-lsa.md
1 parent 7211a7b commit 9748c56

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

_episodes/06-lsa.md

+2-1
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)