Baselight

Cricket Tweets

Twitter posts on the great game of cricket

@kaggle.gpreda_cricket_tweets

About this Dataset

Cricket Tweets

Context

Cricket is a worldwide attraction sport. In some of the regions of the Commonwealth, like India or Australia, it is very close to a National Sport.

Content

Tweets about Cricket, one of the most loved team sports in the world.

Acknowledgements

The content is from Twitter; tweets were collected using Twitter API and tweepy.

Inspiration

Few suggestions:

  • Perform data cleaning on the multitude of spam tweets using #Cricket hashtag to ride on the popularity of this sport;
  • Perform sentiment analysis on tweets from cricket fans across the World;

Tables

Cricket Tweets

@kaggle.gpreda_cricket_tweets.cricket_tweets
  • 9.3 MB
  • 60862 rows
  • 16 columns
Loading...

CREATE TABLE cricket_tweets (
  "id" BIGINT,
  "user_name" VARCHAR,
  "user_location" VARCHAR,
  "user_description" VARCHAR,
  "user_created" TIMESTAMP,
  "user_followers" BIGINT,
  "user_friends" BIGINT,
  "user_favourites" BIGINT,
  "user_verified" BOOLEAN,
  "date" TIMESTAMP,
  "text" VARCHAR,
  "hashtags" VARCHAR,
  "source" VARCHAR,
  "retweets" BIGINT,
  "favorites" BIGINT,
  "is_retweet" BOOLEAN
);