Baselight

UFC Roster Data/Statistics

Complete UFC Roster, Rankings, UFC record and MMA record

@kaggle.axeltorbenson_ufc_roster_datastatistics

Ufc Roster
@kaggle.axeltorbenson_ufc_roster_datastatistics.ufc_roster

  • 21.47 KB
  • 593 rows
  • 13 columns
ranking

Ranking

name

Name

age

Age

weight

Weight

height

Height

ufc_wins

Ufc Wins

ufc_loses

Ufc Loses

ufc_draws

Ufc Draws

ufc_no_contests

Ufc No Contests

mma_wins

Mma Wins

mma_loses

Mma Loses

mma_draws

Mma Draws

mma_no_contests

Mma No Contests

Andrei Arlovski442651.912316134222
Jon Jones352651.9321112711
3Stipe Miocic402651.93144204
Walt Harris402651.9669113101
11Derrick Lewis382651.9117926111
Marcos Rogerio de Lima382651.851072181
Jake Collier342651.9158139
Jarjis Danho392651.911116111
4Curtis Blaydes322651.9312411741
10Marcin Tybura372651.91116247

CREATE TABLE ufc_roster (
  "ranking" DOUBLE,
  "name" VARCHAR,
  "age" BIGINT,
  "weight" VARCHAR,
  "height" DOUBLE,
  "ufc_wins" BIGINT,
  "ufc_loses" BIGINT,
  "ufc_draws" BIGINT,
  "ufc_no_contests" BIGINT,
  "mma_wins" BIGINT,
  "mma_loses" BIGINT,
  "mma_draws" BIGINT,
  "mma_no_contests" BIGINT
);

Share link

Anyone who has the link will be able to view this.