-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
139 lines (119 loc) · 4.68 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="newstyles.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
<link rel="icon" type="image/png" href="./icons/billboard sentiments_colors.png" />
</head>
<div class="page" id="eda"></div>
<div class="image-container">
<img src="icons/alternate billboard sentiments logo.png" width="50%">
</div>
<div class="topnav">
<a href="index.html"><b>Introduction</b></a>
<a href="essay.html"><b>Essay</b></a>
<a href="dashboard/index.html"><b>Dashboard</b></a>
<a href="spotify.html"><b>Spotify</b></a>
<a href="about.html"><b>About</b></a>
</div>
<body>
<h1 align="center"><u>About</u></h1>
<br>
<div class="text-container">
<p>The data for this project comes from a number of independent sources that were merged into a final dataset.</p>
</div>
<div class="text-container">
<p>Interactions with these below sources to create visuals were done through various programs and IDEs, including R
Studio, Visual Studio Code, Jupyter Notebooks, Excel, and Adobe Premiere Pro:</p>
</div>
<br>
<table align="center">
<tr>
<td><b><a href="https://www.billboard.com/charts/year-end/hot-100-songs/" target="_blank">Billboard Year-End Hot
100</a></b><br><br><i>Getting the data for the top songs through <a
href="https://en.wikipedia.org/wiki/Billboard_Year-End_Hot_100_singles_of_2023"
target="_blank">Wikipedia</a>, and then
importing into Excel.</i></td>
</tr>
</table>
<br>
<table align="center">
<tr>
<td><b><a href="https://lyricsgenius.readthedocs.io/en/master/"
target="_blank">LyricsGenius</a></b><br><br><i>Finding lyrics to each of the songs through this
Python client for the Genius
API.</i></td>
</tr>
</table>
<br>
<table align="center">
<tr>
<td><b><a href="https://www.nltk.org/" target="_blank">NLTK</a></b><br><br><i>Matching SentimentIntensityAnalyzer
scores to each song.</i></td>
<td><b><a href="https://www.kaggle.com/datasets/akiboy96/spotify-dataset"
target="_blank">Kaggle</a></b><br><br><i>Matching song features defined by the Spotify API to each song.</i>
</td>
</tr>
</table>
<br>
<table align="center">
<tr>
<td><b><u>Final Dataset</u></b><br><br><i>Merging the two previous datasets with a left join on the sentiment
scores.</i>
</td>
</tr>
</table>
<br>
<div class="text-container">
<p><br>Above all, the people behind the programs are:</p>
</div>
<br>
<div class="headshot-container">
<figure>
<a href="https://www.linkedin.com/in/harriet-kumah-018490172/" target="_blank"><img
src="icons/harriet_headshot.png" width=70% /></a>
<figcaption>Harriet Kumah<br><i>Visuals</i></figcaption>
</figure>
<figure>
<a href="https://www.linkedin.com/in/rithya-sriram/" target="_blank"><img src="icons/rithya_headshot.png"
width=70% /></a>
<figcaption>Rithya Sriram<br><i>Visuals</i></figcaption>
</figure>
<figure>
<a href="https://www.linkedin.com/in/stuti-gupta-101/" target="_blank"><img src="icons/stuti_headshot.png"
width=70% /></a>
<figcaption>Stuti Gupta<br><i>Visuals</i></figcaption>
</figure>
<figure>
<a href="https://nikhilchinchalkar.com" target="_blank"><img src="icons/nikhil_headshot.png" width=70% /></a>
<figcaption>Nikhil Chinchalkar<br><i>Project Lead</i></figcaption>
</figure>
<figure>
<a href="https://www.linkedin.com/in/tanvi-bhave-a8bb1b210/" target="_blank"><img src="icons/tanvi_headshot.png"
width=70% /></a>
<figcaption>Tanvi Bhave<br><i>Visuals</i></figcaption>
</figure>
<figure>
<a href="https://www.linkedin.com/in/tunr/" target="_blank"><img src="icons/tony_headshot.png" width=70% /></a>
<figcaption>Tony Oh<br><i>Website</i></figcaption>
</figure>
<figure>
<a href="https://www.linkedin.com/in/ivan-xie/" target="_blank"><img src="icons/ivan_headshot.png"
width=70% /></a>
<figcaption>Ivan Xie<br><i>Website</i></figcaption>
</figure>
</div>
<br><br>
<p align="center">Special thanks to <a href="https://www.cornelldatajournal.org/" target="_blank">Cornell Data
Journal</a> for the platform.</p>
<br>
<p align="center"><i>For more details on the backend of this project, view our <a
href="https://github.com/nikhilc52/billboard-sentiments" target="_blank">GitHub Repository</a></i></p>
<br>
<div class="image-container">
<img src="icons/billboard sentiments_colors.png" width=45px>
</div>
<br><br>
</body>