Search this site with Google

Chart2000.com: Music Charts 2000 - 2023

This website presents a consolidated list of the albums and songs that have been on top of the music charts since 2000. It employs charts from the USA, UK, Germany, France, Canada, Australia, Italy and Spain to work out the top songs and albums for every day, month and year between 1 Jan 2000 and 31 Dec 2023. This is version 0.3.0071 of the data and was processed on Thu, 11 Jan 2024 12:36:00 GMT.

The site consolidates 2,204,868 weekly chart entries (1,200,055 about albums and 1,004,813 about songs). These entries contain 49,166 distinct artist names, 55,561 song names and 64,306 album names. The site lists the overall top 1000 artists, 2000 songs and 2000 albums (each with a plot to show how success varies through time) as well as providing charts for every year, month and even every day between 1 Jan 2000 and 31 Dec 2023.

This website is the modern equivalent of //tsort.info/, a website that combines music charts starting in 1900. For that site the scarcity of source data (especially for the years before 1950) means that every available chart has to be employed. In contrast this site can rely on the fact that since the year 2000 extensive and trustable charts are available for all the largest music markets. This allows us to estimate the worldwide top 10 songs for every single day.

Most of the pages on this site provide summary information, for example the daily, monthly and annual charts, details about the top songs, albums and artists. All pages have a comment box at the bottom to allow you to ask questions, point out mistakes and suggest improvements.

This page is different from the rest of the site, in that is contains quite a lot of text (the other pages attempt to minimise text in order to make finding the information easier). This page provides the background to explain where the original data came from, how the site is generated and who we are. It has the following sections:

Results

In addition to providing web pages we have also created some data files that let the reader do further analysis (should they want to). The following data files are available for download:

Following a suggestion from one of our readers we also provide CSV files listing the top songs and albums of each decade covered:

All this data is copyright and should only be used if the original source (i.e. this web site) is credited and the version number is mentioned (which for this data is 0.3.0071). We have no issue with applying this data for personal use, or with people that use the data and tell everyone where it came from, those who use these results and attempt to pass them off as their own work are liable to have action taken against them.

Source Data

The charts used are the best ones available for each country, we have only used charts that are considered "notable" according to the definitions used by Wikipedia. This has limited the data that we can get hold of. At the moment the following chart data is being used:

 SourceCoverage
USA//www.billboard.com Top 100 songs and top 200 albums each week
UK//www.officialcharts.com Top 100 songs and albums each week
Germany//www.offiziellecharts.de Top 100 songs and albums each week
France//lescharts.com At least top 100 songs and top 75 albums each week
CanadaWikipedia and //www.billboard.com RPM number 1 singles for 2000. Billboard top 100 singles after 2007. Top 10 albums from 2000 - 2007 and at least top 25 albums after 2007
Australia//australian-charts.com Top 50 songs and albums each week
Italy//italiancharts.com Top 20 songs and albums each week
Spain//spanishcharts.com Top 100 albums each week from 2005 and top 50 songs (only top 20 between 2000 and 2008)
Netherlands//www.dutchcharts.nl Top 100 albums and singles each week

Many of these sites have dates with no entries and individual positions missing in otherwise good charts. In addition the names of artists, songs and albums are inconsistent (both between charts and even from week to week in the same chart).

Matching names

The first and most obvious challenge with all these sources is inconsistency. Take as an example the song "It wasn't me", in the US, UK and French charts we have the following entries:

Chart Week # Artist Song
Billboard 16 Dec 2000 4 Shaggy Featuring Ricardo 'RikRok' Ducent It Wasn t Me
13 Jan 2001 2 Shaggy Feat. Ricardo 'RikRok' Ducent It Wasn't Me
UK Chart 18 Feb 2001 37 Shaggy It Wasn't Me
25 Feb 2001 37 Shaggy Ft Rikrok It Wasn't Me
France 17 Mar 2001 4 Shaggy feat. RikRok It Wasn't Me

To a human being it is obvious that all these entries refer to the same song, by the same combination of artists. It is, however, quite hard for a computer program to correctly identify that fact without also generating false positive matches. Even the fact that the name in the first row is missing the apostrophe would make a naïve program fail. When entries are laid out next to each other these types of anomalies are easy to spot. In this case these five entries were hidden in the 100 positions listed in each of the weeks shown.

During the period covered by this site there was a large number of songs that were attributed to "featured" artists. This makes matching artist names particularly difficult (and also makes properly assigning the credit rather problematic). We've attempted to assign each song to a combination of artists in a consistent way (and not use the word "featuring").

Calculating Scores

Say we select a random date, for the sake of argument the 12th Feb 2009 (just because it was the 200th anniversary of the birth of a great man). What did the various pop charts look like on that particular Thursday?

List of top 5 songs in 8 countries

In these eight countries the top 5 songs were those shown above. Now, before we go any further, I would like to apologise to any reader who understands Japanese, I am confident that the entries as listed contain some stupid mistakes. There are a few other things that are obvious, even from this short list:

If we want to consolidate these types of charts then a few base ground rules will be required. First the correct handling of non-ASCII characters raises all sorts of issues, so all entries will have to be converted to ASCII. In cases where accents should be used it is easy enough for the reader to fix the issues later. Secondly the chart from Japan is just too difficult to convert. Now luckily this doesn't impact us much as most Japanese hits appear nowhere else. It unfortunate but to make the processing tractable we just have to ignore Japanese charts until someone shows us how to deal with them.

Having identified all the songs that were in the charts on a particular day how should we present them? One option would be to just list them, but given that we have both many more entries within each chart than just these 5 and more than just these 8 charts that could be excessive. The obvious way to identify the "biggest hit" is to assign each item some kind of score and only list the highest achievers.

Sales Curve

In order to work out which song to give most credence to we have to convert positions in weekly charts into some kind of "score". Obviously the number 1 record in a particular chart gets more points than the number 2 record and so on, and just as clearly the difference between say the 10th and 11th position is greater than that between the 30th and 31st. So we know that the score function has to be some kind of descending curve that flattens out, like the curve of 1/x or 0.5x.

Sales vs Position data

Luckily we have some data that relates sales volume of music to positions in a chart, this is from our companion site, //tsort.info/. If we try to match this curve with either a reciprocal or power law one then the shape fails to match, both those curves overemphasise the "middle ranking" positions.

Model of sales v position

The simplest formula that we found to match this data is:

Formula 1-log(position)/3

When we actually tried using this formula to assign scores we found that it was overestimating the impact of the lower positions in the chart, so in our calculations we replaced the 3 with 2.5 and ensured that we limited it to positions above 300;

Country Weights

Since the year 2000 the IFPI (International Federation of the Phonographic Industry) has published an annual report that provides estimates of the revenue generated by the music industry in different countries. This does not provide a complete chart for all years so we have had to interpolate some values. With those interpolations we have the following (numbers are millions of US dollars);

#NameTLD200020012002 200320042005200620072008 200920102011201220132014
1USAus14042134121260911848 12153111959651.47985.65977.44562.0 3635.24372.94481.84473.54898.3
2Japanjp6496.95253.65000.94909.7 5167.84883.54495.24174.55171.14244.5 4096.94087.74422.03012.02627.9
3UKuk2828.72808.72936.03215.7 3508.73330.43051.12696.42274.91730.5 1388.11433.71325.81303.51334.6
4Germanyde2420.62128.62090.8 2022.12149.02146.42029.12142.22370.0 1945.81713.61473.71297.91365.11404.8
5Francefr1694.71828.32070.12114.7 1979.31940.31661.71471.01342.51157.5 999.61002.2907.6956.2842.8
6Canadaca819.3659.9621.2676.0 693.8708.3667.8561.8530.0401.6343.2 434.0453.5424.1342.5
7Australiaau561.3522.5532.2673.8 716.7637.7583.6564.8555.3456.2408.0 475.2507.4430.8376.1
8Italyit532.2524.7564.9644.6 652.5639.8556.9493.3427.0293.8275.4 239.9217.5238.8235.2
9Spaines562.9613.0551.0595.9 572.8547.1464.8374.3374.3266.8183.2 190.0166.6150.7181.1
10Nether-landsnl455.0435.7440.3498.8 507.7423.1383.4385.0365.5340.6270.2 240.2216.3205.6204.8
11Brazilbr724.7423.5388.9304.9 374.2390.8322.7246.5349.0246.9258.7 262.6257.2227.9246.5
12Mexicome665.9565.8462.1346.5 360.0410.5357.1273.9217.1160.3157.9 141.2144.5135.4130.3
13Russiaru197.0223.0258.1326.2 490.8387.6405.0418.8395.2185.7126.2 130.1128.8117.5117.0
14Swedense322.9286.5287.3295.0 267.9235.0214.5206.5205.1162.3136.8 155.3176.7194.2189.4
15Austriaat289.1253.2251.2282.1 288.6276.9277.2277.2257.8225.7184.1 118.996.2119.7114.9
16Belgiumbe266.8233.4233.4250.7 275.1324.6314.1231.4249.3202.9 187.6140.5121.5114.1111.2
17Switzer-landch264.0274.1253.2 256.3258.8262.6228.0216.7230.6192.4 166.1158.3128.5115.6108.2
18Norwayno232.3216.2251.1255.7 273.8249.6219.7224.6203.0159.9 131.4115.1118.3120.0119.9
19South Koreakr299.7265.8221.6 162.4132.8111.180.780.7118.493.3 116.9199.5187.5211.3265.8
20South Africaza150.4120.6115.0 160.4236.5253.2242.7237.1195.7162.8 171.8102.0101.092.191.7
21Denmarkdk233.3193.0168.8176.9 187.4177.7169.7169.7150.9126.995.9 98.997.995.094.6
22Indiain236.7229.3172.3144.5 152.5156.2145.2144.7126.289.791.0 141.2146.7113.3100.2
23Polandpl156.5118.787.990.7 92.099.7102.6128.8172.4123.3124.4 128.2127.0115.8115.3
24Irelandie142.2126.3127.9129.2 81.1149.0145.3130.8142.887.777.9 80.379.572.572.2
25Turkeytr120.8153.0121.2142.5 166.2147.5123.4119.6103.280.773.0 75.374.567.967.7
26Finlandfi115.8114.1114.6140.7 133.6130.8122.4123.9139.398.379.5 82.081.174.073.7
27Taiwantw243.8169.9161.7139.8 142.5109.171.467.061.253.956.3 58.057.552.452.2
28Greecegr90.371.380.386.2 89.3143.0137.6164.6134.0107.274.1 76.475.669.068.7
29Argentinaar171.3108.727.952.3 83.9108.296.3121.5130.189.282.7 85.384.477.076.7
30Chinacn79.575.0163.1198.3 211.8119.770.856.557.328.823.2 23.992.484.3105.2

These values provide a scaling factor for comparing a chart entry in one place with one in a different year and location. It goves us a measure of the importance of different countries. It also gives us confidence that if we have taken account of the top 10 countries any undiscovered entries in countries below the Netherlands will have little impact on the overall results. This is important since we don't have a reliable source for Brazil's charts.

Decline in music revenue 2000-2014

This also allows us to see how the revenues of the music business have dramatically dropped since the year 2000. Another interesting element is that revenue has dropped by 65% in the USA and almost 50% in the UK while over the same period Germany's revenue only dropped 40%. This means that in 2013 Germany overtook the UK to become the 3rd largest market, in 2018 the UK grew enough to retake its 3rd slot. In 2007 Australia overtook Canada to become the 6th largest. So the relative importance of these different territories changed between 2000 and 2014.

Revenue by country 2000-2014

If we average the revenue from each country over this period it is obvious that the sales from the top five countries dominate the total figures. Out of those five the obvious anomaly is Japan, as we have already said most music that is a hit there does not show up in any of the other major countries.

Anomalies

There are two reasons why the total scores for songs, albums and artists can be inconsistent with the sum of their parts. The main one is because of the way scores get assigned to contributing artists. Suppose for example we consider the song "Blurred Lines" by Robin Thicke, T.I. & Pharrell Williams, on its own this gets a score of something like 16,500, so the artist responsible gets assigned that score. In this case the artist "Robin Thicke, T.I. & Pharrell Williams" only had one hit but this was sufficient to make them artist number 281. But the artists "Robin Thicke" and "Pharrell Williams" were notable enough on their own to have individual entries. So we assign an additional 8,250 to each of them for the work they put in to "Blurred Lines". We have had to take a very simplistic approach here, the headline artist gets the full tally of points, any further artists get 50% of the points (however many of them there are). This factor means that an artist which appears in numerous collaborations might get a higher score than one above them in the list.

The second anomaly has to do with the way the "success curve" curves are generated. In order to create the effect we wanted we had to divide the year into a number of equally sized chunks. Processing on a daily basis would give too much detail, using weeks would make handling the switch from one year to the next "challenging" and months have odd lengths through the year. The underlying fact is that unfortunately 365¼ days won't divide evenly into anything. So what we did was split each year into 40 sections (9.125 days each for most years and 9.15 days for leap years). Because we can only process individual days this means that the actual periods are sometimes 9 days and other times 10 days. When we stitch these together there is a potential to get some rounding errors.

Putting it all together

So now we have all the elements required to calculate a score over a given period. We first split the timeframe into individual days, then assign scores to each song or album that appears in any chart on that day. The score assigned is calculated from the position and the music revenue in that particular country for the year in question. Here is the Perl code used:

my $year_val_M = market_size($country,$year);
my $num1_val_k = ($year_val_M*10)/365;
return $num1_val_k*(1-log($position)/(log(10)*2.5));

In this case the year value is returned in millions of dollars. We assume that a number one is worth 1% of the daily take (this is not always true but it is about correct and just makes the maths easier). The position then adjusts that (so number 2 is worth 0.87%, number 3 0.81% and so on). We sum up all the scores from charts that day and that provides an overall score for that item on that day in all the charts it appears in.

By adding up all the scores from days in a given month (or year) we can get an idea of which songs and albums were the most successful for any time period.

Indicative Revenue (IR)

As you will have seen the total score is an attempt to measure the complete revenue generated by a song or album over a certain period. It does take inflation and currency conversion into account and can approximately be related to total revenue generated across the whole music chain in thousands of dollars. While this is a reasonable mechanism to compare one song with another it would not be valid to use these scores to compare song revenue against album revenue or to deduce the actual dollar value extracted by particular artists, record companies or retailers.

The IFPI estimated annual revenue for recorded music in each country is the basis of the calculations. The ranking positions of each album and single are processed using the zipf ranking to give it a score. The IFPI revenue is then allocated by an algorithm to each item in each country, then the sum of all those is presented in the IR number. The IR numbers are internally consistent enabling valid comparisons across this system, and across time.

Our rough guess is that each unit of Indicative Revenue score represents something like $5,000 of TOTAL revenue generated across the whole music delivery chain (in year 2000 dollars). It is reasonable to expect that artists will get at the very most about 10% of this revenue.

Image Data

In order to allow readers to generate further insights we have created a "data file" that holds the numerical data used to generate each success plot picture. This can be downloaded by following the link in the text that follows each success plot. This data is in "CSV" format and holds the indicative value for each artist, album or song for the periods they were in the charts.

To take an example the artist "Michael W Smith" has a file called "michael_w_smith.csv" with the first few lines being

artistyearperiod album_irsong_ir
Michael W Smith20000429.7470.0
Michael W Smith20001334.7570.0
Michael W Smith20002271.3110.0

This shows that during the period 1 Jan 2000 to 9 Jan 2000 his average daily indicative revenue from albums was 429.747 from singles it was 0.0.

The one strange element here is the "period", in order to ensure that the plots are consistent each year is divided into 40 sections, during most years these are nominally 9.125 days long, during leap years they are 9.15 days. In practice this means that most periods are 9 days with a few 10 day ones interspersed. Here is a table that identifies when each period starts within the year.

periodLeap Year Non-Leap Year
Startlength Startlength
001 Jan9 01 Jan9
110 Jan9 10 Jan9
219 Jan9 19 Jan9
328 Jan9 28 Jan9
406 Feb9 06 Feb9
515 Feb9 15 Feb9
624 Feb10 24 Feb9
705 Mar9 05 Mar10
814 Mar9 15 Mar9
923 Mar9 24 Mar9
1001 Apr9 02 Apr9
1110 Apr9 11 Apr9
1219 Apr9 20 Apr9
1328 Apr10 29 Apr9
1408 May9 08 May9
1517 May9 17 May10
1626 May9 27 May9
1704 Jun9 05 Jun9
1813 Jun9 14 Jun9
1922 Jun10 23 Jun9
2002 Jul9 02 Jul9
2111 Jul9 11 Jul9
2220 Jul9 20 Jul9
2329 Jul9 29 Jul10
2407 Aug9 08 Aug9
2516 Aug9 17 Aug9
2625 Aug10 26 Aug9
2704 Sep9 04 Sep9
2813 Sep9 13 Sep9
2922 Sep9 22 Sep9
3001 Oct9 01 Oct9
3110 Oct9 10 Oct10
3219 Oct9 20 Oct9
3328 Oct10 29 Oct9
3407 Nov9 07 Nov9
3516 Nov9 16 Nov9
3625 Nov9 25 Nov9
3704 Dec9 04 Dec9
3813 Dec9 13 Dec9
3922 Dec10 22 Dec10

The Related Site

This site should be considered as a complement to the //tsort.info/ site. This site deals only with charts that are more recent than 1 Jan 2000, while that site is especially good for combining chart positions from multiple sources over a longer period to create reliable results.

Site chart2000.comtsort.info
Period1 Jan 2000 - 31 Dec 2023 1900 - Last year, but results become unreliable after about 2012
ChartsOnly notable charts, one for each major country Any chart that is both available and seems reliable, this becomes more relaxed for earlier time periods and countries that are seldom covered
Chart TypesWeekly charts only Any chart that is applicable: including weekly, monthly and annual charts, lists of gold records, Oscar, Grammy, Brit, Juno and other awards and so on
CalculationCombine daily scores using a justified model and the known music market size in each country Custom tuned algorithm that provides reasonable results for a the wide range of input dates and chart types employed
StyleClean, data focused (san-serif)Detailed, focused on interesting results (serif)

Most of the charts available from before 2000 do not have weekly data (or where they do it is hard to deal with). So the //tsort.info/ algorithm relies on having a relative position and possibly a count of the duration. For the this site's data we are in a much better position, there is enough data to allow us to track the position of songs and albums for every individual day since 2000 in most of the major countries.

We attempt to keep this site as up to date as possible, we gather and process the data at the start of each month. This covers the charts up to the end of the previous month, so when you visit last month's charts should be available.

Fair Use

We rely on data from a number of sources and we believe that our use of these public resources is "Fair Use" because this site presents a transformative view of a small proportion of each source's overall content. This site is an "original work of authorship" that presents a "compilation work". The content here consolidates facts presented within the sources without duplicating the particular form that the sources present them in (and facts are not copyrightable).

The sources provide more than 1,000,000 entries providing weekly positions of 27,000 artist names with 28,000 song titles and 36,500 album names. The output data here lists about 18,000 entries (about 8,000 albums and 9,000 songs) assigned to 2,000 song artists and 1,200 album artist (900 or so artists have both song and album entries).

Contact

You can contact us to discuss any issues, suggest data fixes or complain about the positioning of your favourite artist by filling in the form at the bottom of each page.

For any other queries you can also email


Comment on the contents of the 'Chart2000.com: Music Charts 2000 - 2023' page
Subject: Email to Reply To (optional):  

Previous Comments (newest first)

29 Apr 2023

re: Incomplete data?

My bad, I think it's because each month is limited to 50 songs per month.

I don't suppose it's possible to provide a file with the top 100 songs for each month?

No, at 50 per month it is clear that our listing is a reasonable subset of all our sources, so does not break copyright. At 100 per mont that would be less easy to argue.


24 Jan 2022

Message

Hello, can you please also provide a file of chart2000 just as tsort-chart-2-8-0044.csv on this site, which contains a complete set of the data published on site chart2000.com in a form that is convenient (since it is in a single place) and easy to manipulate? I've checked your Top Items file and it's not complete, some of the top 100 songs for every year were not listed. And when will you update the chart for rest of the year 2021?

The structure of this site makes it rather hard to list all the items here, for example would you want such a file to contain the daily listings?

We try and provide CSV files with all the varients.


27 Sep 2021

Most successful artist of the 2010s?

Based on your data, who are the top 5 charting artists of the 2000s? and the 2010s?+

See the files


22 Sep 2021

CSV file usage

Hi, I would like to ask if it is okay to use one of your csv dataset for aschool project that I have. I will definitely credit this website in however format you need. I love the work that you've done. Thanks!

You can use the CSV files for whatever you want as long as you credit this website (and list the version number from the bottom of the page)


19 May 2020

Column Name Questions

Hi, I'm using your data for a college project and we were just wondering what your columns represent. What is the "position" column is off of? I'm also trying to figure out what the country columns (F-K) mean. Thank you!

The sources are described in the "Notes" page. The position shows the peak that item reached in the period listed.


1 Nov 2018

German

German Charts have not fixed at all

The fact that a site puts the string "Official" in their name does not make them the definitive chart. We will have a look at that site and, if it possible to use it and it looks trustworthy we will consider using it.


26 Jul 2017

German Charts

In Your Calculations the German Charts are extremely under-represented.Here You can find the complete Top-100 Singles- and Albumcharts: www.offiziellecharts.de I wish you will include the full german ccharts in your calculations. By the Way - very good side!!

Best Wishes

Herby

We'll take a look at it, thanks