Today we’ll be answering the age-old question: “What is the most metal guitar tuning?”

Immortal meme eating invisible sandwich.
Immortal in their natural habitat. Credit: Loudwire.

For anyone that’s walked into a Guitar Center, you know that there’s a 100% chance that you will hear numerous renditions of “Enter Sandman” where the guitar player has usually taken creative liberties by adding some extra notes that weren’t in the original song. If you have a keen enough ear to hear above all of those Sandmans, you may have heard a sound much like a dying giraffe followed by a series of lower notes, usually with a healthy dose of distortion. If so, you have heard a guitarist in the wild attempting to down tune.

For those non-guitarists, a standard guitar has six strings, each of which is tuned to a particular note. The majority of songs featuring a guitar in Western music are more often than not tuned to what is called “standard tuning”. In metal, it’s common that the guitarists will tune some of their strings to a lower note to obtain a heavier sound. The following is a table consisting of standard tuning at the top, where each letter in the first row corresponds to the note that the string is tuned to. For instance, in standard tuning, a guitar is tuned to (E A D G B E) where the notes correspond to the top (or thickest) string to the bottom (or thinnest) string. The “step” column in the table indicates how far the strings have been detuned respective to standard tuning. Going from E to D# corresponds to a half-step and tuning from E to D corresponds to a whole step and so on.

Step S6 S5 S4 S3 S2 S1
0 E A D G B E
-0.5 D# G# C# F# A# D#
-1 D G C F A D
-1.5 C# F# B E G# C#
-2 C F A# D# G C
-2.5 B E A D F# B
-3 A# D# G# C# F A#
-3.5 A D G C E A

Nowadays you’ll find bands that take this to another level by adding extra strings to their guitars in the lower register and tuning so low as to be bowel movement inducing. It’s awesome, and I suggest you listen to it now.

Metal Data

I decided to get my data from metaltabs.com, a site that I used myself when learning how to play songs no one would want to hear at a bonfire. For those unfamiliar, guitar tablature or guitar “tabs”, is like sheet music for guitar players, only instead of musical score, it consists of numbers on six lines (each line corresponds to a guitar string) and the numbers indicate where to place your fingers. Here’s an example of what a section of a guitar tab might look like.

A snippet of tablature for the song Into the Dead Sky by At the Gates.
Excerpt of "Into the Dead Sky" by At the Gates.

I cooked up a Python script (which may be downloaded on my Github page here) that processes every guitar tab on the metaltabs site. For each tab, my script reads in the tab file and attempts to determine the tuning of the song based on certain keywords.

Since these tabs are user submitted, there’s no real consistency in the way this information is presented. So obtaining the tuning is somewhat of a heuristic. For instance, to indicate a song is in standard tuning, the tab may indicate this in many different ways, some of which may be:

  • “tune guitar to E standard”,
  • “using regular tuning”,
  • “standard”,
  • “E,A,D,G,B,E”,
  • “Free bird tuning”
  • etc.

Each of these means the same thing, but are stated in a relatively different manner. I wrote some quick and dirty scripts that go through the output file generated to tidy some things up and make them more consistent for processing purposes. The resulting file may also be found on my Github repo.

How Metal is it?

First, let’s take a look at how standard tuning compares with other lower tunings where all of the strings on the guitar are tuned down.

Histogram for metal guitar tunings.

Surprisingly, the most common tuning here is standard. As we follow the X-axis to the right, the guitar tunings get progressively lower. The bands on the far right of the graph have such low string tension that the strings become a tripping hazard on stage.

In the above graph, I haven’t included the “drop tunings”, that is, the tunings where the top or lowest string is tuned one full step below the remaining five. For instance drop D is the typical (E A D G B E) tuning where now the E-string is lowered to a D, giving (D A D G B E). I expected these to be much more popular than they were, especially since dropping just one string instead of all six seems like less hassle. Here is a graph of just the tunings where the lowest string is dropped.

Histogram for drop tunings.

Again, as we travel to the right on the X-axis, the tuning gets progressively lower. While standard tuning seems to be the most used tuning in comparison to any other, if we compare standard against all alternate lower tunings, we have the following graph.

Histogram comparing standard tuning versus alternate tunings.

So lower tunings overall are more popular than standard, but standard tuning is still used frequently enough.

What have we learned?

Standard tuning is more metal than I initially suspected.