UFC Rankings
Historical UFC rankings
@kaggle.martj42_ufc_rankings
Historical UFC rankings
@kaggle.martj42_ufc_rankings
This dataset contains the historical rankings of UFC fighters. From their inception in 2013 up until today. The rankings are published weekly, more or less, by the UFC and compiled via a vote by media members. God bless.
In each weight class, the fighters are listed by their rank, except for the champion who is marked as ranked at 0.
The dataset isn't 100% complete, there are weeks missing here and there but it's probably over 95% complete. Rankings are published only after UFC events so every 2-3 week period without new rankings does not necessarily mean missing data.
The data was pulled from The Internet Archive's records of ufc.com.
CREATE TABLE rankings_history (
"date" TIMESTAMP,
"weightclass" VARCHAR,
"fighter" VARCHAR,
"rank" BIGINT
);
Anyone who has the link will be able to view this.