├── assets ├── T1.png ├── ach.jpg ├── ach.png ├── con1.png ├── p1.png ├── p2.png ├── p3.png ├── p4.png ├── p5.png ├── p6.png ├── rap1.png ├── arrow.png ├── email.png ├── github.png ├── output.png ├── about-pic.png ├── checkmark.png ├── education.png ├── linkedin.png ├── output1.png ├── output2.png ├── output3.png ├── output4.png ├── output6.png ├── output7.png ├── output8.png ├── smallex.png ├── experience.png ├── profile-pic.png ├── resume-example.pdf ├── wordcloud_Rap.png └── wordcloud_con.png ├── script.js ├── styleWITL.css ├── mediaQ.css ├── style.css ├── index.html └── whereisthelove.html /assets/T1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/T1.png -------------------------------------------------------------------------------- /assets/ach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/ach.jpg -------------------------------------------------------------------------------- /assets/ach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/ach.png -------------------------------------------------------------------------------- /assets/con1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/con1.png -------------------------------------------------------------------------------- /assets/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/p1.png -------------------------------------------------------------------------------- /assets/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/p2.png -------------------------------------------------------------------------------- /assets/p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/p3.png -------------------------------------------------------------------------------- /assets/p4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/p4.png -------------------------------------------------------------------------------- /assets/p5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/p5.png -------------------------------------------------------------------------------- /assets/p6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/p6.png -------------------------------------------------------------------------------- /assets/rap1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/rap1.png -------------------------------------------------------------------------------- /assets/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/arrow.png -------------------------------------------------------------------------------- /assets/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/email.png -------------------------------------------------------------------------------- /assets/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/github.png -------------------------------------------------------------------------------- /assets/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/output.png -------------------------------------------------------------------------------- /assets/about-pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/about-pic.png -------------------------------------------------------------------------------- /assets/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/checkmark.png -------------------------------------------------------------------------------- /assets/education.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/education.png -------------------------------------------------------------------------------- /assets/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/linkedin.png -------------------------------------------------------------------------------- /assets/output1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/output1.png -------------------------------------------------------------------------------- /assets/output2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/output2.png -------------------------------------------------------------------------------- /assets/output3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/output3.png -------------------------------------------------------------------------------- /assets/output4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/output4.png -------------------------------------------------------------------------------- /assets/output6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/output6.png -------------------------------------------------------------------------------- /assets/output7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/output7.png -------------------------------------------------------------------------------- /assets/output8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/output8.png -------------------------------------------------------------------------------- /assets/smallex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/smallex.png -------------------------------------------------------------------------------- /assets/experience.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/experience.png -------------------------------------------------------------------------------- /assets/profile-pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/profile-pic.png -------------------------------------------------------------------------------- /assets/resume-example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/resume-example.pdf -------------------------------------------------------------------------------- /assets/wordcloud_Rap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/wordcloud_Rap.png -------------------------------------------------------------------------------- /assets/wordcloud_con.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Personal-Website/main/assets/wordcloud_con.png -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- 1 | function toggleMenu() { 2 | const menu = document.querySelector(".menu-links"); 3 | const icon = document.querySelector(".hamburger-icon"); 4 | menu.classList.toggle("open"); 5 | icon.classList.toggle("open"); 6 | } -------------------------------------------------------------------------------- /styleWITL.css: -------------------------------------------------------------------------------- 1 | /*General*/ 2 | 3 | *{ 4 | margin: 0; 5 | padding: 0; 6 | } 7 | 8 | body { 9 | font-family: 'Roboto', sans-serif; 10 | 11 | } 12 | 13 | html { 14 | scroll-behavior: smooth; 15 | } 16 | 17 | p { 18 | color: rgb(85, 85, 85); 19 | } 20 | 21 | a { 22 | color: blue; 23 | text-decoration: none; /* This removes the default underline from links */ 24 | } 25 | 26 | a:hover { 27 | text-decoration: underline; /* This adds an underline when you hover over the link */ 28 | } 29 | 30 | 31 | .image-container { 32 | display: flex; 33 | justify-content: space-between; 34 | } 35 | 36 | .image-container img { 37 | width: calc(25% - 6px); 38 | margin: 3px; 39 | } 40 | 41 | 42 | .home-button { 43 | display: inline-block; 44 | padding: 10px 20px; 45 | background-color: #3498db; /* Change this to your preferred button color */ 46 | color: white; 47 | text-decoration: none; 48 | border-radius: 5px; 49 | border: none; 50 | cursor: pointer; 51 | transition: background-color 0.3s ease; 52 | } 53 | 54 | .home-button:hover { 55 | background-color: #2980b9; /* Slightly darker shade for hover effect */ 56 | } 57 | 58 | -------------------------------------------------------------------------------- /mediaQ.css: -------------------------------------------------------------------------------- 1 | @media screen and (max-width: 900px) { 2 | #profile { 3 | height: 83vh; 4 | margin-bottom: 6rem; 5 | } 6 | .about-containers { 7 | flex-wrap: wrap; 8 | } 9 | } 10 | 11 | @media screen and (max-width: 900px) { 12 | #desktop-nav { 13 | display: none; 14 | } 15 | #hamburger-nav { 16 | display: flex; 17 | } 18 | #experience, 19 | .experience-details-container { 20 | margin-top: 2rem; 21 | } 22 | #profile, 23 | .section-container { 24 | display: block; 25 | } 26 | .arrow { 27 | display: none; 28 | } 29 | section, 30 | .section-container { 31 | height: fit-content; 32 | } 33 | section { 34 | margin: 0 5%; 35 | } 36 | .section__pic-container { 37 | width: 275px; 38 | height: 275px; 39 | margin: 0 auto 2rem; 40 | } 41 | .about-containers { 42 | margin-top: 0; 43 | } 44 | } 45 | 46 | @media screen and (max-width: 600px) { 47 | #contact, 48 | footer { 49 | height: 40vh; 50 | } 51 | #profile { 52 | height: 83vh; 53 | margin-bottom: 0; 54 | } 55 | article { 56 | font-size: 1rem; 57 | } 58 | footer nav { 59 | height: fit-content; 60 | margin-bottom: 2rem; 61 | } 62 | .about-containers, 63 | .contact-info-upper-container, 64 | .btn-container { 65 | flex-wrap: wrap; 66 | } 67 | .contact-info-container { 68 | margin: 0; 69 | } 70 | .contact-info-container p, 71 | .nav-links li a { 72 | font-size: 1rem; 73 | } 74 | .experience-sub-title { 75 | font-size: 1.25rem; 76 | } 77 | .logo { 78 | font-size: 1.5rem; 79 | } 80 | .nav-links { 81 | flex-direction: column; 82 | gap: 0.5rem; 83 | text-align: center; 84 | } 85 | .section__pic-container { 86 | width: auto; 87 | height: 46vw; 88 | justify-content: center; 89 | } 90 | .section__text__p2 { 91 | font-size: 1.25rem; 92 | } 93 | .title { 94 | font-size: 2rem; 95 | } 96 | .text-container { 97 | text-align: justify; 98 | } 99 | } -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | /*General*/ 2 | 3 | *{ 4 | margin: 0; 5 | padding: 0; 6 | } 7 | 8 | body { 9 | font-family: 'Roboto', sans-serif; 10 | 11 | } 12 | 13 | html { 14 | scroll-behavior: smooth; 15 | } 16 | 17 | p { 18 | color: rgb(85, 85, 85); 19 | } 20 | 21 | /* TRANSITION */ 22 | 23 | a, 24 | .btn { 25 | transition: all 300ms ease; 26 | } 27 | 28 | /* DESKTOP NAV */ 29 | 30 | nav, 31 | .nav-links { 32 | display: flex; 33 | } 34 | 35 | nav { 36 | justify-content: space-around; 37 | align-items: center; 38 | height: 17vh; 39 | } 40 | 41 | .nav-links { 42 | gap: 2rem; 43 | list-style: none; 44 | font-size: 1.5rem; 45 | } 46 | 47 | a { 48 | color: black; 49 | text-decoration: none; 50 | text-decoration-color: white; 51 | } 52 | 53 | a:hover { 54 | color: grey; 55 | text-decoration: underline; 56 | text-underline-offset: 1rem; 57 | text-decoration-color: rgb(181, 181, 181); 58 | } 59 | 60 | .logo { 61 | font-size: 2rem; 62 | } 63 | 64 | .logo:hover { 65 | cursor: default; 66 | } 67 | 68 | /* HAMBURGER MENU */ 69 | 70 | #hamburger-nav { 71 | display: none; 72 | } 73 | 74 | .hamburger-menu { 75 | position: relative; 76 | display: inline-block; 77 | } 78 | 79 | .hamburger-icon { 80 | display: flex; 81 | flex-direction: column; 82 | justify-content: space-between; 83 | height: 24px; 84 | width: 30px; 85 | cursor: pointer; 86 | } 87 | 88 | .hamburger-icon span { 89 | width: 100%; 90 | height: 2px; 91 | background-color: black; 92 | transition: all 0.3 ease-in-out; 93 | } 94 | 95 | .menu-links { 96 | position: absolute; 97 | top: 100%; 98 | right: 0; 99 | background-color: white; 100 | width: fit-content; 101 | max-height: 0; 102 | overflow: hidden; 103 | transition: all 0.3 ease-in-out; 104 | } 105 | 106 | .menu-links a { 107 | display: block; 108 | padding: 10px; 109 | text-align: center; 110 | font-size: 1.5rem; 111 | color: black; 112 | text-decoration: none; 113 | transition: all 0.3 ease-in-out; 114 | } 115 | 116 | .menu-links li { 117 | list-style: none; 118 | } 119 | 120 | .menu-links.open { 121 | max-height: 300px; 122 | } 123 | 124 | .hamburger-icon.open span:first-child { 125 | transform: rotate(45deg) translate(10px, 5px); 126 | } 127 | 128 | .hamburger-icon.open span:nth-child(2) { 129 | opacity: 0; 130 | } 131 | .hamburger-icon.open span:last-child { 132 | transform: rotate(-45deg) translate(10px, -5px); 133 | } 134 | 135 | .hamburger-icon span:first-child { 136 | transform: none; 137 | } 138 | 139 | .hamburger-icon span:first-child { 140 | opacity: 1; 141 | } 142 | 143 | .hamburger-icon span:first-child { 144 | transform: none; 145 | } 146 | 147 | /* Sections */ 148 | 149 | section { 150 | padding-top: 4vh; 151 | height: 96vh; 152 | margin: 0 10rem; 153 | box-sizing: border-box; 154 | min-height: fit-content; 155 | } 156 | 157 | .section-container { 158 | display: flex; 159 | } 160 | 161 | 162 | /* PROFILE SECTION */ 163 | 164 | #profile { 165 | display: flex; 166 | justify-content: center; 167 | gap: 5rem; 168 | height: 80vh; 169 | } 170 | 171 | .section__pic-container { 172 | display: flex; 173 | height: 400px; 174 | width: 400px; 175 | margin: auto 0; 176 | } 177 | 178 | .section__text { 179 | align-self: center; 180 | text-align: center; 181 | } 182 | 183 | .section__text p { 184 | font-weight: 600; 185 | } 186 | 187 | .section__text__p1 { 188 | text-align: center; 189 | } 190 | 191 | .section__text__p2 { 192 | font-size: 1.75rem; 193 | margin-bottom: 1rem; 194 | } 195 | 196 | .title { 197 | font-size: 3rem; 198 | text-align: center; 199 | } 200 | 201 | #social-container { 202 | display: flex; 203 | justify-content: center; 204 | margin-top: 1rem; 205 | gap: 1rem; 206 | } 207 | 208 | /* ICONS */ 209 | 210 | .icon { 211 | cursor: pointer; 212 | height: 2rem; 213 | } 214 | 215 | /* BUTTONS */ 216 | 217 | .btn-container { 218 | display: flex; 219 | justify-content: center; 220 | gap: 1rem; 221 | } 222 | 223 | .btn { 224 | font-weight: 600; 225 | transition: all 300ms ease; 226 | padding: 1rem; 227 | width: 8rem; 228 | border-radius: 2rem; 229 | } 230 | 231 | .btn-color-1, 232 | .btn-color-2 { 233 | border: rgb(53, 53, 53) 0.1rem solid; 234 | } 235 | 236 | .btn-color-1:hover, 237 | .btn-color-2:hover { 238 | cursor: pointer; 239 | } 240 | 241 | .btn-color-1, 242 | .btn-color-2:hover { 243 | background: rgb(53, 53, 53); 244 | color: white; 245 | } 246 | 247 | .btn-color-1:hover { 248 | background: rgb(0, 0, 0); 249 | } 250 | 251 | .btn-color-2 { 252 | background: none; 253 | } 254 | 255 | .btn-color-2:hover { 256 | border: rgb(255, 255, 255) 0.1rem solid; 257 | } 258 | 259 | .btn-container { 260 | gap: 1rem; 261 | } 262 | 263 | /* ABOUT SECTION */ 264 | 265 | #about { 266 | position: relative; 267 | } 268 | 269 | .about-containers { 270 | gap: 2rem; 271 | margin-bottom: 2rem; 272 | margin-top: 2rem; 273 | } 274 | 275 | .about-details-container { 276 | justify-content: center; 277 | flex-direction: column; 278 | } 279 | 280 | .about-containers, 281 | .about-details-container { 282 | display: flex; 283 | } 284 | 285 | .about-pic { 286 | border-radius: 2rem; 287 | } 288 | 289 | .arrow { 290 | position: absolute; 291 | right: -5rem; 292 | bottom: 2.5rem; 293 | } 294 | 295 | .details-container { 296 | padding: 1.5rem; 297 | flex: 1; 298 | background: white; 299 | border-radius: 2rem; 300 | border: rgb(53, 53, 53) 0.1rem solid; 301 | border-color: rgb(163, 163, 163); 302 | text-align: center; 303 | } 304 | 305 | .section-container { 306 | gap: 4rem; 307 | height: 80%; 308 | } 309 | 310 | .section__pic-container { 311 | height: 300px; 312 | width: 300px; 313 | margin: auto 0; 314 | } 315 | 316 | .details-container a { 317 | color: blue; /* Set the text color to blue */ 318 | text-decoration: none; /* Remove the default underline */ 319 | border-bottom: 1px solid blue; /* Add a small blue line under the link */ 320 | padding-bottom: .5px; /* Add a little padding to space out the underline */ 321 | } 322 | 323 | 324 | /* PROJECTS SECTION */ 325 | 326 | #projects { 327 | position: relative; 328 | } 329 | 330 | .color-container { 331 | border-color: rgb(163, 163, 163); 332 | background: rgb(250, 250, 250); 333 | } 334 | 335 | .project-img { 336 | border-radius: 2rem; 337 | width: 70%; 338 | height: 70%; 339 | } 340 | 341 | .project-title { 342 | margin: 1rem; 343 | color: black; 344 | } 345 | 346 | .project-btn { 347 | color: black; 348 | border-color: rgb(163, 163, 163); 349 | } 350 | 351 | #projects { 352 | margin-bottom: 350px; /* Adjust this value as needed */ 353 | } 354 | 355 | .btn.btn-color-2.project-btn { 356 | background-color: lightblue; 357 | border: none; /* This removes any default borders */ 358 | color: #000; /* This sets the text color to black, but you can adjust as needed */ 359 | } 360 | 361 | .btn.btn-color-2.project-btn:hover { 362 | background-color: #b0e0e6; /* A slightly darker shade for hover effect */ 363 | } 364 | 365 | 366 | 367 | 368 | 369 | /* FOOTER SECTION */ 370 | 371 | footer { 372 | height: 26vh; 373 | margin: 0 1rem; 374 | } 375 | 376 | footer p { 377 | text-align: center; 378 | } 379 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |
41 | Hello World I Am
44 |Aspiring Data Scientist, Photographer, and Music Journalist
46 |Get To Know More
65 |
73 |
82 | 8 months
Software Developer
@Raize & @Fiverr
4+ years
Cook & Supervisor
@Jamba & @Dominos
93 | B.S. Computer Science
Minor Photography
100 | Udemy ML & Data Science Masterclass
106 | I am Data Science/Software Developer Senior in pursuit of a B.S. in Computer Science. I am also a Quick 107 | Learner, have Strong Communication Skills, and Leadership Skills with a Strong Eagerness for Knowledge. 108 | People know me as a person who is fun to work with, very creative, and a good improviser. 109 |
110 |
119 | Browse My Recent
123 |
133 | A Statistical Analysis of Music Genres Lyrics
136 |
157 | An Automatic AI Generated WordPress Blog Creator
160 |
176 | Shopify Sales, Products, and Info Scrapper
179 |
200 | A bot that displays currently listening, liked music, and recommends similar music.ect (live)
203 |
218 | A web crawler that helps add mass amounts of linkden users to marketing email list
221 |
237 | Complier built using C
240 |
257 |
258 |
14 |
15 |
16 | On my way to becoming a data scientist I started a Udemy course, half way through I had a mini project as a capstone that required me to clean, organize, and analyze data to draw a conclusion. Why it took me 20 min to complete it left an impact on my curiosity. The capstone was not enough. I wanted to do something bigger, new, and a specific thought I have had for a while. Where is the love in music?
20 |This article was inspired by Trucks and Beer, and The Largest Vocabulary In Hip Hop. Special thanks too (Chris) Kyungchan Im for additional help.
21 |Arguably one of the greatest songs in 2003 was "Where Is the Love?" by the Black Eye Peas. A song that literally asked the question where did the love of the world go? I wonder if the use of love and what was loved in rap/hip-hop and country music has changed over the eras. The hypothesis I am using is that the use of the word love will decrease and will center around loving Woman, Alcohol and Money for rap/hip-hop. I then will compare this to the contrast in the form of country music which the prediction I am using will also have the word love decreased over the eras and will center around loving Alcohol, Woman and God.
22 | 23 |Rap/Hip-Hop Predictions:
24 |- Decrease use of love over time
25 |- Woman, Alcohol and Money
26 | 27 |Country Predictions:
28 |- Decrease use of love over time
29 |- Alcohol, Woman and God
30 | 31 | 32 | 33 | 34 |Disclaimer: Music is clearly subjective and has a range of influences from culture and time periods. This analysis is in no way proving that one music genre is better or worse then the other
35 | 36 | 37 |If you don't want to read all the nerdy stuff about Data Science skip to the Results section. I wont judge :)
41 | 42 |I started collecting the top 100 rappers and 100 country artist from the site Ranker.com then added about 30 more from my personal favorites and artist that are currently popular. Then divided the artist among different eras ranging from 80s to 20s for rap and 60s to 20s. Its obvious the 20s are not completed yet but I will be using it to predict how the 20s will look relative to this report. I used chatGPT to help define the eras of each artist and johnwmillr python wrapper for the Genius API to collect the top 25 song lyrics per each artist.
43 | 44 |After cleaning the data using pandas and numpy python extensions. I was able to organize the data by filtering by the lines of lyrics containing the words love, loved, loves, loving, lover, lovers ect. Then separating the words into tables where the Y axis repersents the artist and the X axis repersents the word and its frequency. Small Example below
45 | 46 |
47 |
48 | This process of collecting lyrics for 25 songs form 250 artist took multiple days to collect, as the API would occasionally crash. This table along with the era of each artist gave me enough data to draw conclusions about love use and context. And even draw analysis that are not related to love such as swears, lyrical complexity, and use of hate!
49 | 50 | 51 | 52 |Use of the word love in Rap lyrics over the eras. This includes (Loves,Loved,Loving ect.)
55 |
56 |
57 |
58 | This graph shows a pattern of the use of love increasing by eras with a sudden drop in the 2020s prediction
59 |Use of the word love in Country lyrics over the eras given a data set 20 artist per era. This includes (Loves,Loved,Loving ect.)
60 | 61 |
62 |
63 | This graph shows a strange pattern with a median amount of love in the 60s, a drop in the 70s, then an increase to the peak in the 90s, with a steady decline.
64 | 65 |Now lets see how the graphs compare to eachother
66 | 67 |
68 | The contrast between the two are surprising as there is an incline with rap love use and a decline with country love use with both almost being equal in 2010s. This graph could give the idea that rap could out pace country in love lyric use in the future.
69 | 70 |Rap/HipHop didn't become invented until the 1970s and didn't see a large quantitative amount until 1980s. I could also not find enough 20s country artist to add to 20s era
71 | 72 | 73 |Now to answer the question "Where is the Love"
74 |
75 |
76 |
77 | Rap Bubble
78 |These where the counts for the inital predicitons categories:
79 |Woman(630) = B--tches (154) + girl (141) + b--tch (119) + hoes (67) + babe (59) + shawty (47) + women (43)
80 |Alch(0) = 0
81 |Money(148) = Money (67) + rich (42) + chainz(s) (39)
82 | 83 |These where the actual top word categories :
84 |Music(1018) = Song(s) (169+79) + Track (178) + rap (109) + beat (84) + verse (83) + flow (80) + bars(77) + lyrics (75) + music (42) + album (42)
85 |Woman(630) = B--tches (154) + girl (141) + b--tch (119) + hoes (67) + babe (59) + shawty (47) + women (43)
86 |Miscellaneous(Over 148)
87 | 88 |While Baby can also refer to a man, description, or an actual baby its highest use is a female pet name
89 | 90 | 91 | 92 | 93 |
94 |
95 |
96 | Country Bubble
97 |These where the counts for the inital predicitons categories:
98 |Woman(461) = Baby (168) + Wom(a)n (100+45) + Girl(s) (51+49) + Ladies (48)
99 |Alch(51) = Bar (51)
100 |God(0) = 0
101 | 102 | 103 |These where the actual top word categories :
104 |Woman(461) = Baby (168) + Wom(a)n (100+45) + Girl(s) (51+49) + Ladies (48)
105 |Time and Existence(455) = Life(124) + Night(113) + Today(94) + Live (67), Tonight (57)
106 |Brotherhood/Masculinity(226) = Boys (81) + Brothers (80) + Man (65)
107 | 108 | 109 |Note: Bars in rap and country mean totaly different things
110 | 111 |Starting with what was loved in rap/hiphop, music was the highest category. While initially loving music and what makes music doesn't come to mind when thinking about what rappers and hiphop artist love. It makes more sense when checking really paying attention to the lyrics. There are also a lot of mentions of love songs, love tracks, “love the beat” seen in hiphop/rap lyrics. It was also interesting to find that alcohol didn't come up among the top 36ish most loved lyrics. But with further consideration I can't think of a single rap/hiphop song where that was the subject.
113 |Women for both genres makes perfect sense as it's common knowledge to assume the majority of music is centered around love and in addition both genres are very male driven.A changing trend. My predictions were determined using a surface level bias where I asked a country enjoyer and a rap enjoyer what categories the other genre would love most. In this prediction the country lover was wrong for 2/3 of the categories and generally incorrect about rap average love count declining.
114 |On the country side the predictions also yielded 1/3 options correct. With the prediction on the use of love in country music declining being correct. It was interesting to see God or Christian related things not show up under the love aspect.I don't listen to country but God, Trucks, and Beer seems to be a stereotype. This means one of two things: religious lyrics are not popular in the top songs as we are using the top 25 songs from the top 100 country artists. Or the sentence structure where God or Christianity is contained in does not contain the word love or its siblings (loves,loved ect.). The code I wrote to define a word as loved, that word needs to be in a sentence that has the word love. Time and existence category is most likely from country music More modern country being themed around farming and a rural lifestyle. The brotherhood category was also interesting to see become frequent.
115 | 116 | 117 | 118 |One possible error would be the genuis lyric api wrap I used. There would be times the api would not just take the lyrics of the song but reviews of said song. If sentences in this review contained love it would attribute to the word count. I estimate about 10% of all songs pulled had a comment as it was frequent in some artist but non existent in others. So around 120 comments in rap and 100 in country. While not a huge effect one comment I caught was a whole essay. The impact seems unclear and I dont want to go through all the lyrics for 2200 songs to find comments. Next time there would have to be some precautions added to API to prevent this next time.
120 | 121 |This project was a fun way to put use to and expand my current data science knowledge. Using problem solving to collect, clean, organize and analyze data. I hope this will be not just a paper to show my skills to potential employers, but inspire other beginner data scientists as I was.
123 | 124 |If you enjoyed my paper please check out my website where I have lots of Computer Science and Data Science projects. Also infomation on myself, resume and photography.
125 | 126 | My Website 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | --------------------------------------------------------------------------------