Want to get involved? We're always looking for ideas and content for Weekly Challenges.
SUBMIT YOUR IDEAMy answer is different because I did a weighted average of ratings (each albums average rating*each albums number of ratings/total number of ratings). The lower section also makes sure genre is unique and doesn't have over lap
The real challenge was to find your way through the quirks and odds to reach the answer(challenge output).
I had to figure out many peculiarities in the dataset before being able to complete this challenge.
1. Different rel_date formats where only the year mattered.
2. Not including 'Various Artists'(This one is not explicit)
3. Improving Genre Output by filtering uniques rather than concatenating all the Artist(s)'s Albums-Genres.(Albums repeated Genres).
4. I was left paranoic so I also checked for duplicated album names(Fairly impossible to be honest but bad data can happen)
Really loved all the workaround and inventive checkups & solutions I came up with during this challenge. Especially how I made a significant improvement to the Genre Column. (Watch the spoilers and Download solution for more details).