Baselight

Russia-Ukraine Conflict Twitter Dataset

Twitter datasets relating to the current Ukraine-Russia Conflict

@kaggle.tariqsays_russiaukraine_conflict_twitter_dataset

About this Dataset

Russia-Ukraine Conflict Twitter Dataset

You may find the background and history of the continuing war here.
https://en.wikipedia.org/wiki/2022RussianinvasionofUkraine.

Dataset Columns
'Datetime',
'Tweet Id',
'Text',
'Username',
'Permalink',
'User',
'Outlinks',
'CountLinks',
'ReplyCount',
'RetweetCount',
'LikeCount',
'QuoteCount',
'ConversationId',
'Language',
'Source',
'Media',
'QuotedTweet',
'MentionedUsers',
'hashtag', 'hastag_counts'

What is the public sentiment in Twitterverse about the ongoing conflict?
What are the sentiments and opinions of personalities, countries, celebrities, and the likes?
Practice and hone your NLP skills, create wordclouds, sentiment analysis, Topic Modelling, and the likes from the dataset
Extract the evolution of the conflict on a per day basis based on the micro trends of the topics under the Ukraine conflict.

Tables

Tweets

@kaggle.tariqsays_russiaukraine_conflict_twitter_dataset.tweets
  • 13.52 MB
  • 44078 rows
  • 20 columns
Loading...

CREATE TABLE tweets (
  "datetime" VARCHAR,
  "tweet_id" VARCHAR,
  "text" VARCHAR,
  "username" VARCHAR,
  "permalink" VARCHAR,
  "user" VARCHAR,
  "outlinks" VARCHAR,
  "countlinks" VARCHAR,
  "replycount" DOUBLE,
  "retweetcount" DOUBLE,
  "likecount" DOUBLE,
  "quotecount" VARCHAR,
  "conversationid" VARCHAR,
  "language" VARCHAR,
  "source" VARCHAR,
  "media" VARCHAR,
  "quotedtweet" VARCHAR,
  "mentionedusers" VARCHAR,
  "hashtag" VARCHAR,
  "hastag_counts" DOUBLE
);