Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -48,7 +48,7 @@ with col2:
|
|
| 48 |
wc_list = ['E_Text', 'S_Text', 'G_Text']
|
| 49 |
|
| 50 |
for x in wc_list:
|
| 51 |
-
row = df_selected_cik.loc[selected_year.astype(
|
| 52 |
text = row.loc[x]
|
| 53 |
text = re.sub(r'[^A-Za-z\s]', '', text)
|
| 54 |
text = text.lower()
|
|
|
|
| 48 |
wc_list = ['E_Text', 'S_Text', 'G_Text']
|
| 49 |
|
| 50 |
for x in wc_list:
|
| 51 |
+
row = df_selected_cik.loc[selected_year.astype(str)]
|
| 52 |
text = row.loc[x]
|
| 53 |
text = re.sub(r'[^A-Za-z\s]', '', text)
|
| 54 |
text = text.lower()
|