Covid-19 Sentiments India[20/03/20 - 31/05/20]
This dataset contains sentiments of peoples in India during the lockdown period.
@kaggle.abhaydhiman_covid19_sentiments
This dataset contains sentiments of peoples in India during the lockdown period.
@kaggle.abhaydhiman_covid19_sentiments
The journey of the collection of this Covid-19 India dataset begin with a competition where we have to do sentiment analysis of tweets. The data was collected from https://ieee-dataport.org/open-access/coronavirus-covid-19-tweets-dataset . This site gave us the tweet Id of relevant tweets and to extract the tweets text and other information, we used Hydrator app.
There are total 5 columns.
Column 1: 'Text ID'
It contains unique ID for each tweet.
Column 2: 'Text'
It is the tweet text of that particular tweet ID.
Column 3: 'Date'
The date on which the tweet was tweeted.
Column 4: 'Location'
The place from where the tweet was tweeted.
Column 5: 'Sentiments'
The sentiment value of that tweet, whether it is positive, negative or neutral.
If sentiment score is greater then 0 then sentiment is positive.
If sentiment score is equal to 0 then sentiment is neutral.
If sentiment score is less then 0 then sentiment is negative.
We wouldn't be here without the help of others. We would like to acknowledge https://ieee-dataport.org/open-access/coronavirus-covid-19-tweets-dataset for providing the tweet Id's. We would also like to acknowledge Hydrator app for fectching tweets.
Actually we got the inspiration from the competition where we were given the task to categorize the sentiment values of COVID - 19 India tweets.
CREATE TABLE covid_19_sentiments (
"text_id" BIGINT,
"text" VARCHAR,
"date" VARCHAR,
"location" VARCHAR,
"sentiments" DOUBLE
);
Anyone who has the link will be able to view this.