Baselight

UFC Fighters' Statistics Dataset

Comprehensive statistics of UFC fighters scraped from ufcstats.com

@kaggle.asaniczka_ufc_fighters_statistics

Loading...
Loading...

About this Dataset

UFC Fighters' Statistics Dataset

Mixed Martial Arts (MMA) is a popular combat sport, and the Ultimate Fighting Championship (UFC) is the premier organization in the MMA world.

This dataset provides detailed statistics of UFC fighters, including information on their wins, losses, draws, physical attributes, fighting style, and career achievements.

If you find this dataset valuable, don't forget to hit the upvote button! 😊💝

Interesting Task Ideas:

  1. Analyze the relationship between fighters' physical attributes (height, weight, reach) and their fighting performance.
  2. Determine which stances are more effective and analyze the impact of striking accuracy on fight outcomes.
  3. Compare the takedown defense of different fighters and identify trends in takedown accuracy.
  4. Analyze striking accuracy and defense to identify fighters with the best stand-up game.
  5. Investigate the correlation between takedown accuracy and the ability to defend against takedowns.
  6. Identify fighters with high submission attempt rates and explore their success in executing submissions.
  7. Train models to predict fight outcomes based on fighter statistics.

Photo by dylan nolte on Unsplash

Tables

Ufc Fighters Statistics

@kaggle.asaniczka_ufc_fighters_statistics.ufc_fighters_statistics
  • 173.5 KB
  • 4111 rows
  • 18 columns
Loading...

CREATE TABLE ufc_fighters_statistics (
  "name" VARCHAR,
  "nickname" VARCHAR,
  "wins" BIGINT,
  "losses" BIGINT,
  "draws" BIGINT,
  "height_cm" DOUBLE,
  "weight_in_kg" DOUBLE,
  "reach_in_cm" DOUBLE,
  "stance" VARCHAR,
  "date_of_birth" TIMESTAMP,
  "significant_strikes_landed_per_minute" DOUBLE,
  "significant_striking_accuracy" DOUBLE,
  "significant_strikes_absorbed_per_minute" DOUBLE,
  "significant_strike_defence" DOUBLE,
  "average_takedowns_landed_per_15_minutes" DOUBLE,
  "takedown_accuracy" DOUBLE,
  "takedown_defense" DOUBLE,
  "average_submissions_attempted_per_15_minutes" DOUBLE
);

Share link

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