We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7211a7b commit 9748c56Copy full SHA for 9748c56
_episodes/06-lsa.md
@@ -77,7 +77,7 @@ drive.mount('/content/drive')
77
# Show existing colab notebooks and helpers.py file
78
from os import listdir
79
wksp_dir = '/content/drive/My Drive/Colab Notebooks/text-analysis/code'
80
-listdir(wksp_dir)
+print(listdir(wksp_dir))
81
82
# Add folder to colab's path so we can import the helper functions
83
import sys
@@ -86,6 +86,7 @@ sys.path.insert(0, wksp_dir)
86
# Read the data back in.
87
from pandas import read_csv
88
data = read_csv("/content/drive/My Drive/Colab Notebooks/text-analysis/data/data.csv")
89
+data.head()
90
91
```
92
0 commit comments