Sahil Gupta - Fab Futures - Data Science
Home About

< Home

Week 1: Choosing a Dataset and Playing with Jupyter¶

I thought it would be interesting to explore a dataset for sentiment analyis, which (in the future) I could interface with some sort of physical display (e.g. an LED turns red or green based on economic sentiment). Here are some datasets I found that I'll explore some more:

https://www.kaggle.com/datasets/yash612/stockmarket-sentiment-dataset
https://www.kaggle.com/competitions/sentiment-analysis-on-movie-reviews/data
https://www.kaggle.com/datasets/yasserh/twitter-tweets-sentiment-dataset

Test math¶

In [1]:
1+1
Out[1]:
2
In [2]:
x = 2 + 1
In [3]:
x * 4
Out[3]:
12

Python code¶

In [4]:
print("Hello world")
Hello world
In [ ]:
 
In [ ]:
 
In [ ]: