datamatters24 commited on
Commit
626122f
·
verified ·
1 Parent(s): 5310b9a

Refresh 2026-04-19

Browse files
README.md ADDED
@@ -0,0 +1,156 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc0-1.0
3
+ task_categories:
4
+ - tabular-classification
5
+ language:
6
+ - en
7
+ tags:
8
+ - sports
9
+ - wrestling
10
+ - wwe
11
+ - aew
12
+ - wcw
13
+ - ecw
14
+ - match-data
15
+ - relational
16
+ pretty_name: Ringside Analytics — Pro Wrestling Match Archive
17
+ size_categories:
18
+ - 100K<n<1M
19
+ configs:
20
+ - config_name: matches
21
+ data_files: matches.parquet
22
+ - config_name: match_participants
23
+ data_files: match_participants.parquet
24
+ - config_name: wrestlers
25
+ data_files: wrestlers.parquet
26
+ - config_name: events
27
+ data_files: events.parquet
28
+ - config_name: promotions
29
+ data_files: promotions.parquet
30
+ - config_name: wrestler_aliases
31
+ data_files: wrestler_aliases.parquet
32
+ - config_name: titles
33
+ data_files: titles.parquet
34
+ - config_name: title_reigns
35
+ data_files: title_reigns.parquet
36
+ - config_name: alignment_turns
37
+ data_files: alignment_turns.parquet
38
+ ---
39
+
40
+ # Ringside Analytics — Pro Wrestling Match Archive
41
+
42
+ A relational snapshot of professional wrestling history from 1980 to the present:
43
+ **292K matches, 611K wrestler-match participations, 35K events, and 12.8K
44
+ wrestlers** across WWE, AEW, WCW, ECW, NXT, TNA, and others. Sourced from
45
+ public Cagematch.net scrapes and the alexdiresta profightdb dump, normalized
46
+ into a Postgres schema, and exported as parquet files that preserve the
47
+ relational structure (one file per table, joinable by `id`).
48
+
49
+ This is the source-of-truth companion to the trained model at
50
+ [theodorerubin/ringside-analytics-match-winner](https://www.kaggle.com/models/theodorerubin/ringside-analytics-match-winner).
51
+ If you want to train your own model, reshape the features, or just explore
52
+ 40+ years of booking patterns — start here.
53
+
54
+ ## Files
55
+
56
+ | File | Rows | Description |
57
+ |---|---:|---|
58
+ | `matches.parquet` | 292,780 | One row per match. Type, stipulation, duration, title match flag, Cagematch rating. |
59
+ | `match_participants.parquet` | 611,515 | One row per wrestler-per-match. `result` is the label for outcome prediction. |
60
+ | `wrestlers.parquet` | 12,814 | Ring name, real name, gender, debut date, status. |
61
+ | `wrestler_aliases.parquet` | 13,230 | Alternate ring names with active-period bounds. |
62
+ | `events.parquet` | 35,064 | Event name, date, venue, city, country, event type. |
63
+ | `promotions.parquet` | 6 | WWE, AEW, WCW, ECW, NXT, TNA with founding / defunct dates. |
64
+ | `titles.parquet` | 121 | Championship belts per promotion. |
65
+ | `title_reigns.parquet` | 1,753 | Reign start/end + number of defenses. |
66
+ | `alignment_turns.parquet` | 631 | Face / heel / tweener transitions per wrestler. |
67
+ | `manifest.json` | — | Export manifest: row counts, columns, UTC timestamp. |
68
+
69
+ ## Schema (join keys)
70
+
71
+ ```
72
+ promotions.id ─┬─< wrestlers.primary_promotion_id
73
+ ├─< events.promotion_id
74
+ ├─< titles.promotion_id
75
+ └─< wrestler_aliases.promotion_id
76
+
77
+ wrestlers.id ──┬─< match_participants.wrestler_id
78
+ ├─< wrestler_aliases.wrestler_id
79
+ ├─< title_reigns.wrestler_id
80
+ └─< alignment_turns.wrestler_id
81
+
82
+ events.id ─────┬─< matches.event_id
83
+ └─< alignment_turns.event_id (nullable)
84
+
85
+ matches.id ────── match_participants.match_id
86
+
87
+ titles.id ─────── title_reigns.title_id
88
+ ```
89
+
90
+ ## Starter queries
91
+
92
+ ```python
93
+ import pandas as pd
94
+
95
+ matches = pd.read_parquet("matches.parquet")
96
+ participants = pd.read_parquet("match_participants.parquet")
97
+ wrestlers = pd.read_parquet("wrestlers.parquet")
98
+
99
+ # Every match The Rock has wrestled, with opponents
100
+ rock_id = wrestlers.query("ring_name == 'The Rock'")["id"].iloc[0]
101
+ rock_matches = participants[participants["wrestler_id"] == rock_id]
102
+ ```
103
+
104
+ ```sql
105
+ -- If you load these into DuckDB:
106
+ SELECT w.ring_name, COUNT(*) AS wins
107
+ FROM match_participants mp
108
+ JOIN wrestlers w ON w.id = mp.wrestler_id
109
+ WHERE mp.result = 'win'
110
+ GROUP BY 1
111
+ ORDER BY 2 DESC
112
+ LIMIT 20;
113
+ ```
114
+
115
+ ## Provenance
116
+
117
+ - **Cagematch.net** (public HTML scrape, non-commercial use): the bulk of
118
+ match-level data for 1990-present.
119
+ - **alexdiresta/all-wwe-and-wwf-matches** Kaggle dataset (profightdb dump):
120
+ cross-validation + pre-1990 coverage.
121
+ - **Normalization + dedup**: entity resolution on wrestler names,
122
+ match-type classification into a fixed ENUM, and natural-key deduplication
123
+ to collapse records across sources.
124
+
125
+ The ETL code and scraper are open source at
126
+ [tedrubin80/wrastlingfirst](https://github.com/tedrubin80/wrastlingfirst).
127
+
128
+ ## Caveats
129
+
130
+ - **Kayfabe, not athletics.** Pro wrestling is scripted. A `result` field
131
+ records *who was booked to win*, not who would win an athletic contest.
132
+ - **Temporal coverage is uneven.** 2000-present is well-covered; 1980s are
133
+ thinner, especially for regional/territory promotions.
134
+ - **Gender imbalance.** Women's division sample size is smaller — expect
135
+ wider confidence intervals for any women's-division model.
136
+ - **Ratings are crowd-sourced** (Cagematch user ratings). They're a proxy
137
+ for match quality as perceived by Internet wrestling fans — biased toward
138
+ work-rate and away from entertainment/story.
139
+
140
+ ## License
141
+
142
+ Released under **CC0 1.0** (public domain dedication). Attribution is
143
+ appreciated but not required. Note that the underlying sources
144
+ (Cagematch.net, profightdb) have their own terms; this archive is a
145
+ derivative work made available for research and entertainment.
146
+
147
+ ## Citation
148
+
149
+ ```bibtex
150
+ @dataset{ringside_analytics_2026,
151
+ author = {Rubin, Theodore},
152
+ title = {Ringside Analytics: Pro Wrestling Match Archive (1980--present)},
153
+ year = {2026},
154
+ url = {https://www.kaggle.com/datasets/theodorerubin/ringside-analytics}
155
+ }
156
+ ```
alignment_turns.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6712956789a3f3751a0f281dcd07f9b2554dc2d36064453a81d080b3cc68ed1c
3
+ size 33142
events.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:215f48523cca6033023958b00c30e2113e48003dd2badf01ad35414ca730a239
3
+ size 744308
manifest.json ADDED
@@ -0,0 +1,155 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "generated_at": "2026-04-19T19:44:10.971094+00:00",
3
+ "source": "postgresql://ringside (local)",
4
+ "tables": {
5
+ "promotions": {
6
+ "rows": 6,
7
+ "columns": [
8
+ "id",
9
+ "name",
10
+ "abbreviation",
11
+ "founded",
12
+ "defunct",
13
+ "parent_org",
14
+ "created_at",
15
+ "updated_at"
16
+ ],
17
+ "file": "promotions.parquet",
18
+ "size_mb": 0.01
19
+ },
20
+ "wrestlers": {
21
+ "rows": 12814,
22
+ "columns": [
23
+ "id",
24
+ "ring_name",
25
+ "real_name",
26
+ "gender",
27
+ "birth_date",
28
+ "debut_date",
29
+ "status",
30
+ "primary_promotion_id",
31
+ "brand",
32
+ "billed_from",
33
+ "image_url",
34
+ "created_at",
35
+ "updated_at"
36
+ ],
37
+ "file": "wrestlers.parquet",
38
+ "size_mb": 0.27
39
+ },
40
+ "wrestler_aliases": {
41
+ "rows": 13230,
42
+ "columns": [
43
+ "id",
44
+ "wrestler_id",
45
+ "alias",
46
+ "promotion_id",
47
+ "active_from",
48
+ "active_to",
49
+ "created_at"
50
+ ],
51
+ "file": "wrestler_aliases.parquet",
52
+ "size_mb": 0.35
53
+ },
54
+ "events": {
55
+ "rows": 35064,
56
+ "columns": [
57
+ "id",
58
+ "name",
59
+ "promotion_id",
60
+ "date",
61
+ "venue",
62
+ "city",
63
+ "state",
64
+ "country",
65
+ "event_type",
66
+ "cagematch_id",
67
+ "created_at",
68
+ "updated_at"
69
+ ],
70
+ "file": "events.parquet",
71
+ "size_mb": 0.71
72
+ },
73
+ "matches": {
74
+ "rows": 292780,
75
+ "columns": [
76
+ "id",
77
+ "event_id",
78
+ "match_order",
79
+ "match_type",
80
+ "stipulation",
81
+ "duration_seconds",
82
+ "title_match",
83
+ "rating",
84
+ "cagematch_id",
85
+ "created_at",
86
+ "updated_at"
87
+ ],
88
+ "file": "matches.parquet",
89
+ "size_mb": 2.87
90
+ },
91
+ "match_participants": {
92
+ "rows": 611515,
93
+ "columns": [
94
+ "id",
95
+ "match_id",
96
+ "wrestler_id",
97
+ "team_number",
98
+ "result",
99
+ "entry_order",
100
+ "elimination_order",
101
+ "created_at"
102
+ ],
103
+ "file": "match_participants.parquet",
104
+ "size_mb": 5.65
105
+ },
106
+ "titles": {
107
+ "rows": 121,
108
+ "columns": [
109
+ "id",
110
+ "name",
111
+ "promotion_id",
112
+ "established",
113
+ "retired",
114
+ "active",
115
+ "created_at",
116
+ "updated_at"
117
+ ],
118
+ "file": "titles.parquet",
119
+ "size_mb": 0.01
120
+ },
121
+ "title_reigns": {
122
+ "rows": 1753,
123
+ "columns": [
124
+ "id",
125
+ "title_id",
126
+ "wrestler_id",
127
+ "won_date",
128
+ "lost_date",
129
+ "defenses",
130
+ "won_at_event_id",
131
+ "lost_at_event_id",
132
+ "created_at",
133
+ "updated_at"
134
+ ],
135
+ "file": "title_reigns.parquet",
136
+ "size_mb": 0.04
137
+ },
138
+ "alignment_turns": {
139
+ "rows": 631,
140
+ "columns": [
141
+ "id",
142
+ "wrestler_id",
143
+ "from_alignment",
144
+ "to_alignment",
145
+ "turn_date",
146
+ "event_id",
147
+ "description",
148
+ "source",
149
+ "created_at"
150
+ ],
151
+ "file": "alignment_turns.parquet",
152
+ "size_mb": 0.03
153
+ }
154
+ }
155
+ }
match_participants.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d61637a82bfcabb71b4f27b8741cc2bf50c5eab241fade2e58231cd1023d7a73
3
+ size 5926487
matches.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9dede822b9364f66b4e1dd1dcc139e4ea5775fcb62eb3193f9889be06b429ded
3
+ size 3012553
promotions.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7831da2c5be3136575b1d45b0e6d55523e7b5b49c6efa23f9b98bdfb0ae20a9
3
+ size 5376
title_reigns.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca8b89c4224b49747aeeb6760c31feb4595e1cd05b5554276866a26c198e4746
3
+ size 37753
titles.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed04795c12d1f5897555748b387f84d0ff915f0e68c50d7fa86d7ecd209e2202
3
+ size 8115
wrestler_aliases.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f35483f47349c0a7d7b20dbca26e1347733e2c8c2d3bac5fba7444de3ac93d72
3
+ size 362031
wrestlers.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1bb075a24f0cc15bd9123ac9c16ca030ab101af9b428d30ee37b8d9953e51c8a
3
+ size 280835