Spaces:
Runtime error
Runtime error
Change Application File
Browse files
app.py
CHANGED
@@ -13,7 +13,7 @@ import time
|
|
13 |
from plotly.subplots import make_subplots
|
14 |
|
15 |
# Read CSV file into pandas and extract timestamp data
|
16 |
-
dfSentiment = pd.read_csv('
|
17 |
dfSentiment['timestamp'] = [datetime.strptime(dt, '%Y-%m-%d') for dt in dfSentiment['timestamp'].tolist()]
|
18 |
|
19 |
# Multi-select columns to build chart
|
|
|
13 |
from plotly.subplots import make_subplots
|
14 |
|
15 |
# Read CSV file into pandas and extract timestamp data
|
16 |
+
dfSentiment = pd.read_csv('./sentiment_data.csv')
|
17 |
dfSentiment['timestamp'] = [datetime.strptime(dt, '%Y-%m-%d') for dt in dfSentiment['timestamp'].tolist()]
|
18 |
|
19 |
# Multi-select columns to build chart
|