Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -42,9 +42,8 @@ warnings.filterwarnings('ignore')
|
|
| 42 |
|
| 43 |
"""### First Let's read our data"""
|
| 44 |
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
df = pd.read_csv(dataset)
|
| 48 |
|
| 49 |
df.head()
|
| 50 |
|
|
|
|
| 42 |
|
| 43 |
"""### First Let's read our data"""
|
| 44 |
|
| 45 |
+
url = 'https://raw.githubusercontent.com/omnabill/NLP_Task/main/flask-app/Job%20titles%20and%20industries.csv'
|
| 46 |
+
df = pd.read_csv(url, index_col=0)
|
|
|
|
| 47 |
|
| 48 |
df.head()
|
| 49 |
|