COVID-19 Indonesian Tweets
Indonesian Tweets Associated with "COVID" and "Pemerintah"
@kaggle.dionisiusdh_covid19_indonesian_twitter_sentiment
Indonesian Tweets Associated with "COVID" and "Pemerintah"
@kaggle.dionisiusdh_covid19_indonesian_twitter_sentiment
This dataset contains Indonesian Tweets of users who have applied the following keywords: "Corona and Pemerintah" or "Covid and Pemerintah" (Pemerintah = Government) from May to July 2020. The dataset consists of multiple variables associated with Twitter: the tweets itself, the accounts who tweeted them, hashtags used, time, some ids, and more.
This dataset would not be possible without the creators of the TWINT library in Python that was used to scrape the data from Twitter.
TRANSLATED-covid-sentiment.csv : Contains English tweets translated from corresponding Indonesian tweets using Google Translate API
covid-sentiment.csv : Original dataset
You can do some EDA, text analysis, text mining, and sentiment analysis with it.
CREATE TABLE covid_sentiment (
"conversation_id" BIGINT,
"date" TIMESTAMP,
"time" VARCHAR,
"user_id" BIGINT,
"username" VARCHAR,
"tweet" VARCHAR,
"mentions" VARCHAR,
"replies_count" BIGINT,
"retweets_count" BIGINT,
"likes_count" BIGINT,
"hashtags" VARCHAR
);CREATE TABLE translated_covid_sentiment (
"conversation_id" BIGINT,
"date" TIMESTAMP,
"time" VARCHAR,
"user_id" BIGINT,
"username" VARCHAR,
"tweet" VARCHAR,
"mentions" VARCHAR,
"replies_count" BIGINT,
"retweets_count" BIGINT,
"likes_count" BIGINT,
"hashtags" VARCHAR,
"translated" VARCHAR
);Anyone who has the link will be able to view this.