Spaces:
Runtime error
Runtime error
Nick Bolton
commited on
Commit
·
b7e0f0b
1
Parent(s):
6b2a6c2
moving data to top level directory
Browse files- app.py +1 -1
- data/sentiment_data.csv → sentiment_data.csv +0 -0
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
|
data/sentiment_data.csv → sentiment_data.csv
RENAMED
File without changes
|