Skip to content

Commit b5638fd

Browse files
NCAA data (#91)
* files * Update README.md Co-authored-by: margaretkennedy <82049573+margaretkennedy@users.noreply.github.com>
1 parent f00a395 commit b5638fd

4 files changed

Lines changed: 25113 additions & 0 deletions

File tree

NCAA/README.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# NCAA
2+
3+
The `tweets.csv` file contains raw tweets with the search terms:
4+
5+
```python
6+
elite_8_mens =['razorbackmbb', 'dukembb', 'uhcougarmbk', 'kuhoops', 'caneshoops', 'peacocksmbb', 'unc_basketball', 'novambb']
7+
elite_8_womens =['stanfordwbb', 'texaswbb', 'gamecockwbb', 'creightonwbb', 'uconnwbb', 'packwomensbball', 'uoflwbb', 'umichwbball']
8+
```
9+
10+
11+
The `teams_grouped.csv` file contains aggregated data from `tweets.csv`.
12+
13+
14+
## Fields in `tweets.csv`##
15+
16+
- **Text:** Contents of Tweet
17+
- **Compound:** Percent positive or negative sentiment of `Text`
18+
- **Negative:** Percent negative sentiment of `Text`
19+
- **Neutral:** Percent neutral sentiment of `Text`
20+
- **Positive:** Percent positive sentiment of `Text`
21+
- **ID:** The unique twitter id
22+
- **DateTime:** Time of tweet
23+
- **Retweet_count:** Number of retweets for that original tweet
24+
- **Reply_count:** Number of replies for that original tweet
25+
- **Like_count:** Number of likes for that original tweet
26+
- **Quote_count:** Number of quotes for that original tweet
27+
- **team:** First team mentioned in `Text`
28+
29+
## Fields in `teams_grouped.csv`##
30+
31+
- **team:** Groupped team
32+
- **Avg_Pos:** Average percent positive sentiment of all `Text` values for that `team`
33+
- **Avg_Neg:** Average percent negative sentiment of `Text`values for that `team`
34+
- **Avg_Compound:** Average percent positive or negative sentiment of `Text`values for that `team`
35+
- **Avg_retweet:** Average retweets for each tweet for that `team`
36+
- **Number_tweets:** Total tweets for for that `team`
37+
38+
# Source and License
39+
40+
This data was contributed to the public domain by the the TwitterV2 API. It is provided here for demonstrative purposes without any warranty for fitness of purpose or usability.

NCAA/teams_grouped.csv

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
team,Avg_Pos,Avg_Neg,Avg_Compound,Avg_retweet,Number_tweets
2+
dukembb,7.1746795981988205,4.2647038448216,7.708791132663656,641.4818150329062,2887
3+
razorbackmbb,9.69665796344647,3.0156135770234993,13.272741514360305,294.2976501305483,1915
4+
peacocksmbb,9.83645291738878,3.581340265742345,13.342212593876368,941.6152512998267,1731
5+
uconnwbb,11.287269681742035,1.81750418760469,18.45340871021777,288.47236180904525,1194
6+
kuhoops,10.500322234156823,3.0244897959183703,16.725510204081594,356.312567132116,931
7+
uhcougarmbk,11.243691899070383,2.572244355909694,22.219747675962804,82.12881806108898,753
8+
caneshoops,10.7113981762918,4.513525835866261,14.92322188449843,260.0927051671733,658
9+
gamecockwbb,10.103135888501749,2.550522648083624,15.111114982578389,92.28397212543554,574
10+
uoflwbb,11.122426470588241,1.1665441176470588,22.863455882352905,94.1029411764706,544
11+
novambb,10.999999999999996,2.5191142191142197,19.23939393939394,65.74358974358974,429
12+
umichwbball,15.29184952978056,1.2442006269592476,34.260438871473326,136.89968652037618,319
13+
packwomensbball,15.128825622775805,2.8900355871886116,26.499466192170797,67.8932384341637,281
14+
stanfordwbb,9.850915750915748,1.6120879120879121,19.783333333333335,37.27838827838828,273
15+
texaswbb,16.786923076923078,2.246153846153846,32.12161538461536,26.407692307692308,130
16+
creightonwbb,10.516161616161618,2.682828282828283,16.71939393939394,78.1919191919192,99

0 commit comments

Comments
 (0)