Spaces:
Runtime error
Runtime error
bikrammaharjan
commited on
Commit
•
f19cfab
1
Parent(s):
c6379f3
TSLA stock sentiment
Browse files- app.py +1 -1
- sentiment_data.csv +6 -0
app.py
CHANGED
@@ -14,7 +14,7 @@ from plotly.subplots import make_subplots
|
|
14 |
|
15 |
# Read CSV file into pandas and extract timestamp data
|
16 |
# dfSentiment = ### YOUR LINE OF CODE HERE
|
17 |
-
dfSentiment = pd.read_csv('
|
18 |
dfSentiment['timestamp'] = [datetime.strptime(dt, '%Y-%m-%d') for dt in dfSentiment['timestamp'].tolist()]
|
19 |
|
20 |
# Multi-select columns to build chart
|
|
|
14 |
|
15 |
# Read CSV file into pandas and extract timestamp data
|
16 |
# dfSentiment = ### YOUR LINE OF CODE HERE
|
17 |
+
dfSentiment = pd.read_csv('sentiment_data.csv')
|
18 |
dfSentiment['timestamp'] = [datetime.strptime(dt, '%Y-%m-%d') for dt in dfSentiment['timestamp'].tolist()]
|
19 |
|
20 |
# Multi-select columns to build chart
|
sentiment_data.csv
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
,timestamp,counter,close,volume,sentiment_score,close_lag1,perc_change_close,sentiment_score_lag1,perc_change_sentiment,sentiment_SMA3mo
|
2 |
+
1,2022-03-01,272916,1099.56995,40225400,0.8757717551892263,0.0,inf,0.8744244989083738,0.0015407348290612092,0.0
|
3 |
+
2,2022-04-01,204020,1145.44995,45377900,0.8448942852492379,1099.56995,0.04172540364530686,0.8757717551892263,-0.035257439803270174,0.8650301797822794
|
4 |
+
3,2022-05-01,18769,0.0,,0.8563334928811902,1145.44995,-1.0,0.8448942852492379,0.0135392176650571,0.8589998444398849
|
5 |
+
4,2022-06-01,3721,0.0,,0.858559500975687,0.0,0.0,0.8563334928811902,0.002599464009059427,0.8532624263687051
|
6 |
+
5,2022-07-01,8281,0.0,,0.8565136809925457,0.0,0.0,0.858559500975687,-0.0023828517194398676,0.8571355582831409
|