divyasharma0795 commited on
Commit
c6a89bd
1 Parent(s): 5ac3d76

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -23
README.md CHANGED
@@ -6,54 +6,64 @@ license: mit
6
 
7
  ## Overview
8
 
9
- The Apple Vision Pro Tweets Dataset is a collection of tweets related to Apple Vision Pro, scraped from Twitter using the Twitter API. The dataset includes various attributes associated with each tweet, such as the tweet text, author information, engagement metrics, and metadata.
10
 
11
  ## Content
12
 
13
- id: Unique identifier for each tweet.
14
- tweetText: The text content of the tweet.
15
- tweetURL: URL link to the tweet.
16
- type: Type of tweet (e.g., original tweet, retweet).
17
- tweetAuthor: Name of the tweet author.
18
- handle: Twitter handle of the tweet author.
19
- replyCount: Number of replies to the tweet.
20
- quoteCount: Number of quotes (retweets with comments) of the tweet.
21
- retweetCount: Number of retweets of the tweet.
22
- likeCount: Number of likes (favorites) of the tweet.
23
- views: Number of views of the tweet (if available).
24
- bookmarkCount: Number of bookmarks (if available) of the tweet.
25
- createdAt: Timestamp indicating when the tweet was created.
26
 
27
  ## Dataset Format
28
  The dataset is provided in `parquet` format. Each row represents a single tweet, and columns contain various attributes associated with the tweet.
29
 
30
  ## Dataset Size
31
 
32
- The dataset contains a total of 10,145 tweets related to Apple Vision Pro.
33
 
34
  ## Data Collection
35
 
36
- The tweets were collected using the Twitter API by searching for the hashtag "AppleVisionPro" The data collection process involved retrieving tweets that match the search criteria and extracting relevant information such as tweet text, engagement metrics, and metadata.
 
 
 
 
 
 
 
 
 
 
37
 
38
  ## Potential Use Cases
39
 
40
- *Sentiment analysis*: Analyze the sentiment expressed in tweets related to Apple Vision Pro.
41
- *User engagement analysis*: Study user engagement metrics (replies, retweets, likes) to understand audience interaction with Apple Vision Pro content.
42
- *Trend analysis*: Identify trends and patterns in discussions surrounding Apple Vision Pro on Twitter.
43
 
44
  ## Citation
45
 
46
  If you use this dataset in your research or project, please cite it as follows:
47
 
48
- ```
49
- css
50
 
51
  [Dataset Name], Apple Vision Pro Tweets Dataset, [Year]. Retrieved from [URL]
52
  ```
53
 
54
- License
55
 
56
  The dataset is provided under the [MIT License]. Please refer to the LICENSE file for more details.
57
- Contact
 
58
 
59
  For any inquiries or feedback regarding the dataset, please contact [email protected].
 
6
 
7
  ## Overview
8
 
9
+ The Apple Vision Pro Tweets Dataset is a collection of tweets related to Apple Vision Pro from February 01 2024 to March 16 2024, scraped from [X](https://twitter.com/home) using the Twitter [API](https://developer.twitter.com/en/products/twitter-api). The dataset includes various attributes associated with each tweet, such as the tweet text, author information, engagement metrics, and metadata.
10
 
11
  ## Content
12
 
13
+ - *id*: Unique identifier for each tweet.
14
+ - *tweetText*: The text content of the tweet.
15
+ - *tweetURL*: URL link to the tweet.
16
+ - *type*: Type of tweet (e.g., original tweet, retweet).
17
+ - *tweetAuthor*: Name of the tweet author.
18
+ - *handle*: Twitter handle of the tweet author.
19
+ - *replyCount*: Number of replies to the tweet.
20
+ - *quoteCount*: Number of quotes (retweets with comments) of the tweet.
21
+ - *retweetCount*: Number of retweets of the tweet.
22
+ - *likeCount*: Number of likes (favorites) of the tweet.
23
+ - *views*: Number of views of the tweet (if available).
24
+ - *bookmarkCount*: Number of bookmarks (if available) of the tweet.
25
+ - *createdAt*: Timestamp indicating when the tweet was created.
26
 
27
  ## Dataset Format
28
  The dataset is provided in `parquet` format. Each row represents a single tweet, and columns contain various attributes associated with the tweet.
29
 
30
  ## Dataset Size
31
 
32
+ The dataset contains a total of 10,145 tweets related to Apple Vision Pro, with 13 features
33
 
34
  ## Data Collection
35
 
36
+ The tweets were collected using the Twitter API by searching for the hashtag *#AppleVisionPro* The data collection process involved retrieving tweets that match the search criteria and extracting relevant information such as tweet text, engagement metrics, and metadata.
37
+
38
+ ## Data Usage
39
+
40
+ The data can be imported directly from HuggingFace using the following code:
41
+
42
+ ```py
43
+ from datasets import load_dataset
44
+
45
+ dataset = load_dataset("divyasharma0795/AppleVisionPro_Tweets")
46
+ ```
47
 
48
  ## Potential Use Cases
49
 
50
+ - *Sentiment analysis*: Analyze the sentiment expressed in tweets related to Apple Vision Pro.
51
+ - *User engagement analysis*: Study user engagement metrics (replies, retweets, likes) to understand audience interaction with Apple Vision Pro content.
52
+ - *Trend analysis*: Identify trends and patterns in discussions surrounding Apple Vision Pro on Twitter.
53
 
54
  ## Citation
55
 
56
  If you use this dataset in your research or project, please cite it as follows:
57
 
58
+ ```css
 
59
 
60
  [Dataset Name], Apple Vision Pro Tweets Dataset, [Year]. Retrieved from [URL]
61
  ```
62
 
63
+ ## License
64
 
65
  The dataset is provided under the [MIT License]. Please refer to the LICENSE file for more details.
66
+
67
+ ## Contact
68
 
69
  For any inquiries or feedback regarding the dataset, please contact [email protected].