This dataset, kojima_tweets_tbl_df, is a tibble containing 454 original tweets from Hideo Kojima, posted between November 17, 2019, and January 6, 2020. Retweets are excluded. The dataset includes tweet text, engagement metrics, tweet metadata, user handle information, geolocation data, hashtags, mentions, URLs, and media details. The dataset preserves the original structure from its source on Kaggle.
data(kojima_tweets_tbl_df)A tibble with 454 observations and 41 variables:
Text content of the tweet (character)
Date when the tweet was created (character)
Number of retweets (numeric)
Number of likes (numeric)
Sum of retweets and likes (numeric)
Count of hashtags used (numeric)
Count of user mentions (numeric)
Count of URLs included (numeric)
Count of media elements attached (numeric)
Username who posted the tweet (character)
Whether it was a reply to another user (logical)
Type of post (e.g., tweet, reply, etc.) (character)
Type of media included (e.g., photo, video) (character)
Whether the tweet is a quote (character)
Whether the tweet is a retweet (character)
Language of the tweet content (character)
Country information if available (logical)
Geolocation as specified in the tweet (logical)
Full name of the location (logical)
Type of location (logical)
Hashtags used in the tweet (character)
User mentions in the tweet (character)
URLs present in the tweet (character)
Media URLs attached to the tweet (character)
Name associated with the Twitter account (character)
Handle of the Twitter account (character)
Date when the Twitter account was created (character)
Preferred language of the account (character)
Total number of tweets from the account (numeric)
Number of followers (numeric)
Number of accounts followed (numeric)
Total number of liked tweets by the account (numeric)
Number of lists the account is included in (numeric)
Location listed in the user profile (character)
Whether the account is protected (character)
Whether the account is verified (character)
URL included in the profile (character)
Profile description or bio (character)
URL of the profile image (character)
Age of the account in days (numeric)
Average tweets per day (numeric)
The dataset name has been kept as 'kojima_tweets_tbl_df' to maintain consistency with the naming conventions in the JapanAPIs package. The suffix 'tbl_df' indicates that this is a tibble data frame. The original content has not been modified in any way.