-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWikipedia_MLB_Clean.csv
More file actions
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 325.
1596 lines (1596 loc) · 58.8 KB
/
Wikipedia_MLB_Clean.csv
File metadata and controls
1596 lines (1596 loc) · 58.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
URL,#_of_valid_wiki_pages_linked,#_of_supported_languages,word_count
Major_League_Baseball,2167,66,22129
Minor_League_Baseball,1091,17,14202
MLB_(disambiguation),12,7,443
2025_Major_League_Baseball_season,649,4,8903
Baseball,2013,135,19238
National_League_(baseball),604,31,7078
American_League,521,30,3976
Rob_Manfred,192,7,5279
1271_Avenue_of_the_Americas,779,5,11712
New_York_City,3660,258,41819
WBSC_Americas,378,9,2234
Los_Angeles_Dodgers,2421,43,18682
New_York_Yankees,4149,57,36279
Major_League_Baseball_on_ABC,978,1,6803
ESPN_Major_League_Baseball,1024,1,6961
MLB_on_Fox,1434,5,14882
MLB_on_FS1,983,1,5605
MLB_on_TBS,846,1,10520
MLB_Network,1513,7,8898
Toronto_Blue_Jays_on_Sportsnet,308,1,1731
TVA_Sports,189,2,3505
Major_League_Baseball_on_TSN,574,1,1954
R%C3%A9seau_des_sports,502,2,3815
MLB_Network_Showcase,293,1,2055
List_of_current_Major_League_Baseball_broadcasters#International_broadcasters,2279,1,8532
Friday_Night_Baseball,455,2,3229
MLB_Sunday_Leadoff,721,1,3296
United_States,2648,322,31997
Canada,1795,305,24330
Major_professional_sports_leagues_in_the_United_States_and_Canada,873,7,20703
Opening_Day,356,3,4019
Major_League_Baseball_postseason,317,5,4575
World_Series,954,42,12206
Best-of-seven,466,5,12969
Midtown_Manhattan,1588,37,12721
Commissioner_of_baseball,659,7,10368
Cincinnati_Red_Stockings,380,5,3260
Reserve_clause,98,1,3024
Dead-ball_era,233,6,2836
Home_run,630,26,8790
Black_Sox_Scandal,749,12,7033
Match_fixing,551,33,11590
1919_World_Series,871,6,6181
Great_Depression_in_the_United_States,1080,8,15419
World_War_II,2608,233,27846
Jackie_Robinson,2799,49,21455
Baseball_color_line,1353,1,8758
Major_League_Baseball_relocations_of_1950s%E2%80%931960s,328,1,4386
Major_League_Baseball_Players_Association,254,5,3235
Collectively_bargain,297,22,3488
Free_agency,61,21,2489
Artificial_turf,288,38,9017
Anabolic_steroid,2106,45,24092
Mitchell_Report,279,5,3990
Performance-enhancing_substance,318,9,5124
Professional_sports,313,23,6181
List_of_professional_sports_leagues_by_revenue,375,1,5371
National_Football_League,1331,74,14867
National_Basketball_Association,1749,97,16119
List_of_attendance_figures_at_domestic_professional_sports_leagues,764,1,6707
MLB_Draft_League,324,2,1703
World_Baseball_Softball_Confederation,649,22,4389
World_Baseball_Classic,1570,30,10741
List_of_World_Series_champions,1487,6,5387
2024_World_Series,2087,6,12654
History_of_baseball_in_the_United_States,796,3,19091
American_Civil_War,1621,148,26682
National_Association_of_Base_Ball_Players,271,5,3405
Professional_baseball,209,5,1583
National_Association_of_Professional_Base_Ball_Players,297,8,2914
Chicago_Cubs,2369,39,24053
Atlanta_Braves,1795,37,12992
Jefferson_Street_Grounds,35,1,1461
Philadelphia,3328,173,29730
Baltimore_Orioles_(19th_century),320,10,2480
American_Association_(19th_century),242,11,3320
Ban_Johnson,452,5,2610
Branch_Rickey,1705,12,11796
Union_Association,354,6,3057
Players%27_League,296,7,2468
Federal_League,421,8,3930
Retrosheet,29,1,1148
Nate_Silver,451,16,12416
Negro_league_baseball,1257,11,10528
Negro_National_League_(1920%E2%80%931931),202,1,2283
Negro_National_League_(1933%E2%80%931948),162,1,2184
Eastern_Colored_League,109,1,1354
American_Negro_League,57,1,770
East%E2%80%93West_League,142,1,1720
Negro_Southern_League_(1920%E2%80%931936),134,1,2933
Negro_American_League,149,1,1930
Walter_Johnson,1459,17,7275
Cy_Young,2137,25,9381
Christy_Mathewson,1894,18,8598
Mordecai_Brown,1028,8,4038
Grover_Cleveland_Alexander,1795,12,6146
USD,1896,167,14536
Spitball,321,4,1901
Grandfather_clause,153,12,1671
West_Side_Grounds,417,3,4195
Huntington_Avenue_Grounds,701,7,2402
Boston_Red_Sox,2300,54,23454
Single_(baseball),352,8,1439
Bunt_(baseball),338,9,2687
Stolen_base,416,14,5667
Hit_and_run_(baseball),237,4,1960
Baltimore_chop,1954,7,74145
Chicago_White_Sox,1621,37,15934
Game_fixing,545,33,11594
Shoeless_Joe_Jackson,274,11,4845
Eddie_Cicotte,522,4,2457
Lefty_Williams,152,2,1193
Buck_Weaver,78,2,1538
Arnold_%22Chick%22_Gandil,119,2,2912
Fred_McMullin,75,1,1147
Swede_Risberg,74,2,1278
Oscar_%22Happy%22_Felsch,80,1,1241
Ray_Chapman,116,9,2005
Cleveland_Indians,1831,33,20179
Babe_Ruth,2342,60,24715
Major_League_Baseball_rosters,1732,1,9666
4F_(military_conscription),191,16,10177
Pete_Gray,87,4,3119
Blackout_(wartime),86,14,1903
Kenesaw_Mountain_Landis,684,13,13694
Franklin_D._Roosevelt,3298,179,26937
Stan_Musial,1721,22,13932
Bob_Feller,1438,12,11872
Ted_Williams,1922,25,17005
Joe_DiMaggio,1969,44,12335
Brooklyn_Dodgers,1077,5,8763
Negro_league,1229,11,10532
Racial_antagonism,526,16,4136
Montreal_Royals,263,3,2604
Leo_Durocher,1816,9,8818
Ford_C._Frick,475,5,3253
Happy_Chandler,1072,17,12994
Pee_Wee_Reese,1393,11,6008
Major_League_Baseball_Rookie_of_the_Year_Award,1236,12,8004
Larry_Doby,1180,9,12594
Satchel_Paige,932,16,16270
Roy_Campanella,1036,13,5680
Don_Newcombe,1025,12,4440
Cy_Young_Award,647,18,4195
Women_in_baseball,317,2,7945
1959_World_Series,1386,8,5876
Los_Angeles_Memorial_Coliseum,3784,35,21156
Boston,2325,174,23856
St._Louis,2155,119,20390
Boston_Braves,660,1,5010
Milwaukee_Braves,625,1,5583
St._Louis_Browns,522,1,6846
Baltimore_Orioles,1490,39,11428
Philadelphia_Athletics,797,1,7313
Kansas_City_Athletics,594,1,6572
1958_Major_League_Baseball_season,545,5,3353
Walter_O%27Malley,897,6,9254
History_of_the_New_York_Giants_(NL),942,2,6333
Horace_Stoneham,293,1,3398
Minnesota,2262,189,18807
Polo_Grounds,2088,13,14047
San_Francisco_mayor,843,6,4218
George_Christopher_(mayor),103,7,1486
Time_(magazine),516,93,7597
St._Louis_Cardinals,3582,36,25408
History_of_the_Washington_Senators,524,2,4015
Minneapolis%E2%80%93St._Paul,1591,29,12611
Minnesota_Twins,1302,32,15214
Los_Angeles_Angels,1250,36,9960
Anaheim,1275,99,10907
Washington_Senators_(1961%E2%80%931971),405,1,4274
Houston_Astros,1811,33,23808
New_York_Mets,2425,36,19647
Louisville_Colonels,218,8,1553
Gulf_Coast,1310,20,4653
Oakland_Athletics,1284,1,17560
1969_Major_League_Baseball_expansion,813,1,5949
Seattle_Pilots,347,2,4092
Milwaukee_Brewers,871,30,8834
Kansas_City_Royals,1259,32,14487
Montreal_Expos,906,11,16796
San_Diego_Padres,1115,33,10854
Dallas%E2%80%93Fort_Worth_metroplex,1738,31,11568
Texas_Rangers_(baseball),1277,36,14676
1977_Major_League_Baseball_expansion,468,1,3315
Toronto_Blue_Jays,1471,37,12031
Seattle_Mariners,1173,36,12471
Carl_Yastrzemski,1836,16,7757
Detroit_Tigers,1857,36,37486
Denny_McLain,971,4,7347
Dizzy_Dean,1822,11,8089
Bob_Gibson,2141,19,11459
Earned_run_average,147,14,2363
Designated_hitter,423,15,7953
Multi-purpose_stadium,395,13,8391
Foul_territory,235,9,2032
Ground_ball,262,3,3216
In_the_hole,1883,7,74146
Complete_game,173,8,1827
Closer_(baseball),268,6,3944
Willie_Mays,3001,34,21158
George_Foster_(baseball),1075,6,6403
1981_Major_League_Baseball_strike,121,2,2263
Pete_Rose,2366,21,16241
Ty_Cobb,1367,33,15245
Cincinnati_Reds,1638,34,15842
Pittsburgh_drug_trials,534,2,2887
Mark_McGwire,2080,22,10830
Doping_in_baseball,208,2,5110
Florida_Marlins,1323,35,8952
Miami,2012,169,21713
Colorado_Rockies,788,33,6745
Denver,1611,157,21277
Arizona_Diamondbacks,780,33,7046
Phoenix_Arizona,1488,154,22649
Tampa_Bay_Devil_Rays,1017,33,13440
Tampa_Bay_area,695,14,7003
2001_Major_League_Baseball_contraction_plan,450,1,2994
Washington_Nationals,1083,33,13579
Statcast,35,2,3035
Hawk-Eye,288,24,6070
FanGraphs,54,5,3049
Exit_velocity,100,1,1190
Defensive_shift,234,1,1383
Pitch_clock#Major_League_Baseball,254,2,2111
2017_World_Series,1894,8,15053
Houston_Astros_sign_stealing_scandal,1134,5,16890
2018_Houston_Astros_season,1221,2,7220
General_manager_(baseball),257,3,2099
Jeff_Luhnow,75,2,2340
Field_manager,517,9,1716
A._J._Hinch,776,8,4889
Oakland_Athletics_relocation_to_Las_Vegas,510,1,13158
West_Sacramento_California,312,40,4151
New_Las_Vegas_Stadium,412,1,3088
Las_Vegas_Valley,893,17,9824
Potential_Major_League_Baseball_expansion,560,1,9495
Timeline_of_Major_League_Baseball,1488,1,11608
Miami_Marlins,1303,35,8948
Philadelphia_Phillies,2292,36,22596
Pittsburgh_Pirates,1681,35,14176
San_Francisco_Giants,1871,37,11437
Tampa_Bay_Rays,991,33,13434
Cleveland_Guardians,1714,33,20175
Athletics_(baseball),1568,35,10462
List_of_current_Major_League_Baseball_stadiums,410,8,2898
American_League_East,2101,12,7238
Baltimore_Maryland,2078,136,28422
Oriole_Park_at_Camden_Yards,689,22,7862
Boston_Massachusetts,2316,174,23860
Fenway_Park,2271,28,18281
New_York_New_York,3615,258,41815
Yankee_Stadium,1442,38,15327
Tampa_Florida,1818,107,21890
George_M._Steinbrenner_Field,598,4,3249
Toronto_Ontario,2107,175,26384
Rogers_Centre,1915,34,17202
American_League_Central,1590,12,5205
Chicago_Illinois,2997,229,27480
Rate_Field,863,19,12592
Cleveland_Ohio,2262,121,22596
Progressive_Field,700,21,6631
Detroit_Michigan,1663,147,24974
Comerica_Park,682,26,8663
Kansas_City_Missouri,1662,106,20044
Kauffman_Stadium,389,22,5380
Minneapolis_Minnesota,2134,127,28735
Target_Field,745,20,13567
American_League_West,1634,13,5827
Sutter_Health_Park,386,5,2418
Houston_Texas,2023,160,25772
Daikin_Park,665,22,8289
Anaheim_California,1266,99,10904
Angel_Stadium,1783,23,9141
Seattle_Washington,1773,153,24684
T-Mobile_Park,531,24,8365
Arlington_Texas,777,92,9351
Globe_Life_Field,334,16,3266
National_League_East,1783,12,6186
Cumberland_Georgia,203,4,1531
Truist_Park,552,15,8305
Miami_Florida,1996,169,21717
LoanDepot_Park,756,19,10633
Citi_Field,1125,26,12587
Philadelphia_Pennsylvania,3304,173,29734
Citizens_Bank_Park,806,23,7691
Washington_D.C.,3089,247,29100
Nationals_Park,491,21,7595
National_League_Central,1760,12,5763
Wrigley_Field,1564,28,18695
Cincinnati_Ohio,1916,112,20208
Great_American_Ball_Park,465,19,4523
American_Association_(1882%E2%80%931891),209,11,3314
Milwaukee_Wisconsin,1828,125,20480
American_Family_Field,435,19,6815
Pittsburgh_Pennsylvania,2499,120,23709
PNC_Park,710,24,8825
St._Louis_Missouri,2135,119,20395
Busch_Stadium,546,22,6425
National_League_West,1775,11,7028
Chase_Field,616,21,5046
Denver_Colorado,1603,157,21281
Coors_Field,463,23,6026
Los_Angeles_California,2417,227,25459
Dodger_Stadium,1227,28,10638
San_Diego_California,1866,139,20232
Petco_Park,637,21,7351
San_Francisco_California,2274,185,29139
Oracle_Park,1272,26,11297
Major_League_Baseball_Constitution,4,1,734
Umpire_(baseball),518,7,8977
Major_League_Baseball_television_contracts,2136,1,12294
U.S._Supreme_Court,2229,77,35697
Federal_Baseball_Club_v._National_League,370,1,3272
Interstate_commerce,838,1,10334
Antitrust,597,42,10233
Continental_League,1478,3,5083
MLB_Advanced_Media,153,1,3318
Editorial_independence,127,7,683
DirecTV,916,26,10327
Secaucus_New_Jersey,561,38,13043
Major_League_Baseball_All-Star_Game,420,17,8077
Interleague_play,305,7,8691
Milwaukee_Brewers#1994–98:_Realignment_/_"We're_taking_this_thing_National",784,30,8834
National_Hockey_League,1132,73,15693
Baseball_rules,432,7,11285
Regulation_of_sport,108,2,964
2021%E2%80%9322_Major_League_Baseball_lockout,195,1,5944
Major_League_Baseball_uniforms,128,1,4824
Baseball_uniform,358,15,3385
Position_player,69,3,579
Manager_(baseball),505,9,1712
Uniform_number_(Major_League_Baseball),402,2,6407
Third_jersey,810,10,13565
Throwback_uniform,445,2,5581
Flannel,351,35,1760
Jersey_(sport),47,5,670
Straw_hat,458,29,2407
Baseball_cap,636,32,3212
Detroit_Wolverines,189,8,1343
Washington_Nationals_(1886%E2%80%9389),87,5,816
Brooklyn_Bridegrooms,978,5,8767
Baseball_stadium,819,10,13676
Road_game,34,4,1200
FTX,229,23,10225
Major_League_Baseball_schedule,267,2,5298
List_of_Major_League_Baseball_seasons,619,2,2577
Spring_training,531,4,6740
Vero_Beach,303,40,4796
Cactus_League,530,4,6744
Grapefruit_League,529,4,6744
Series_(baseball),206,1,895
Playoff,552,37,16616
MLB#League_organization,1388,66,22132
MLB_Wild_Card,86,1,2095
Game_163,793,3,5104
John_F._Kennedy,3867,174,32574
First_pitch,836,5,5124
DC_Stadium,2628,25,26131
1933_World%27s_Fair,427,15,5415
Arch_Ward,171,1,1290
The_Chicago_Tribune,1283,51,13224
Ted_Williams_Most_Valuable_Player_Award,514,6,2358
Hank_Aaron,2534,49,15307
All-Star_Final_Vote,591,1,6469
2002_Major_League_Baseball_All-Star_Game,1058,4,3935
1933_Major_League_Baseball_All-Star_Game,652,3,2694
Win%E2%80%93loss_record,47,3,1288
Wild_Card_Series,425,1,3532
American_League_Division_Series,604,8,3487
National_League_Division_Series,612,8,3537
American_League_Championship_Series,652,13,3140
National_League_Championship_Series,656,13,3177
Pennant_(sports),92,2,920
Commissioner%27s_Trophy_(MLB),294,4,2621
Division_Series,107,5,2287
NFL,1311,74,14870
League_Championship_Series,113,5,1282
Pennant_(sports)#Baseball,90,2,920
List_of_Major_League_Baseball_games_played_outside_the_United_States_and_Canada,306,1,3513
MLB_Japan_All-Star_Series,80,4,898
MLB_Taiwan_All-Star_Series,130,2,1207
2019_MLB_London_Series,1708,1,6157
All-star_game,200,13,2985
Playoff_format#Best-of_formats,449,5,12966
Nippon_Professional_Baseball,1199,26,9202
Samurai_Japan,1604,21,6803
MLB_China_Series,451,3,1462
Chinese_Taipei_national_baseball_team,633,15,4952
Chicago_Tribune,1280,51,13219
Sydney_Cricket_Ground,2221,23,16692
London_Stadium,1344,66,19400
Gocheok_Sky_Dome,109,13,1008
Chan_Ho_Park,331,11,4465
Kiwoom_Heroes,124,9,1523
LG_Twins,208,9,2350
List_of_Major_League_Baseball_players_suspended_for_performance-enhancing_drugs,554,1,11681
Rafael_Palmeiro,857,7,6360
Sammy_Sosa,1187,22,7067
Roger_Maris,1404,20,8759
Barry_Bonds,2105,32,20707
Game_of_Shadows,139,2,1737
San_Francisco_Chronicle,257,31,4073
Lance_Williams_and_Mark_Fainaru-Wada,39,1,1641
Growth_hormone,566,55,7065
Gary_Sheffield,1160,9,7128
Jason_Giambi,530,11,5780
Senate_Majority_Leader,1837,19,5733
U.S._Congress,2210,99,21284
Major_League_Baseball_drug_policy,49,1,1821
HGH_treatment_for_athletic_enhancement,126,1,1936
ESPN,1119,54,8077
Yankees%E2%80%93Red_Sox_rivalry,2191,2,27128
John_M._Dowd,128,3,3839
Testosterone_(medication),2665,12,15169
Alex_Rodriguez,2686,28,25303
David_Ortiz,2292,23,19137
Manny_Ramirez,1405,24,14900
Major_League_Baseball_on_television,2075,1,12287
List_of_current_Major_League_Baseball_broadcasters,2178,1,8532
Baseball_Night_in_America,694,1,2623
Baseball_Tonight,691,2,4388
Sunday_Night_Baseball,1396,1,7058
Regional_sports_network,914,1,8677
Sportsnet,1096,7,7192
Rogers_Communications,821,16,7237
TSN2,538,2,3138
Internet_television,622,37,7567
MLB_Game_of_the_Week_Live_on_YouTube,328,1,2249
Apple_Inc.,2802,153,30725
Apple_TV%2B,1466,40,12634
NBC_Sports,1810,13,9120
Peacock_(streaming_service),1428,25,11707
2023_Major_League_Baseball_season,977,10,17654
Max_(streaming_service),2192,33,25396
Warner_Bros._Discovery,1065,52,10477
2024_Major_League_Baseball_season,816,9,16213
The_Roku_Channel,694,1,5052
TelevisaUnivision,744,6,6003
UniM%C3%A1s,513,4,7259
TUDN,630,4,3338
Vix_(streaming_service),781,2,7115
Univision,949,35,18534
Fox_Deportes,827,3,3730
Major_League_Baseball_blackout_policy,222,1,2201
Syndication_exclusivity,354,1,3878
Blackout_(broadcasting),648,1,8519
Major_League_Baseball_on_the_radio,899,1,3984
1921_Pittsburgh_Pirates_season,539,1,3656
1921_Philadelphia_Phillies_season,424,1,1901
KDKA_(AM),1314,4,11936
Pittsburgh,2484,120,23705
Harold_Arlin,96,1,3144
WABC_(AM),994,5,11403
Newark_New_Jersey,2506,100,35044
1921_World_Series,954,5,4525
History_of_the_New_York_Giants_(baseball),882,2,6333
Grantland_Rice,280,6,2965
Telegraph,557,76,10883
1922_World_Series,917,5,3689
1923_World_Series,938,6,3870
Westinghouse_Broadcasting,1148,1,8293
Graham_McNamee,123,5,1990
Color_commentator,27,4,1153
1998_in_baseball,829,2,10129
Major_League_Baseball_on_ESPN_Radio,687,1,3061
TUDN_Radio,608,1,2363
New_York_Yankees_Radio_Network,914,1,3551
XM_Satellite_Radio,458,4,6556
MLB_Network_Radio,290,1,2052
MLB.tv,391,4,3425
French_language,1695,271,16396
KMPC,480,1,2693
Disney_Media_Networks,467,4,4284
ESPN_(Latin_America),880,4,3634
ESPN_Caribbean,383,2,1931
ESPN_Brazil,900,3,4431
Star%2B,921,10,4171
Fox_Sports,391,3,2724
Canal_9_(Danish_TV_channel),909,3,5400
Imagen_Televisi%C3%B3n,285,8,4271
Mexico,1687,317,27425
Fox_Sports_(Argentina),201,2,2051
Televen,111,8,1786
Venevisi%C3%B3n,283,75,2419
Altice_Dominicana_S.A.,54,2,1005
Movistar_Plus%2B,509,10,2539
Channel_5_(UK),1184,26,12720
Mlb#Postseason,1214,66,22132
British_Summer_Time,100,25,3286
Johnny_Gould,53,1,1168
Josh_Chetwynd,106,1,3506
MLB_on_Five,148,1,2477
BT_Sport_ESPN,667,2,7793
BT_Sport,1108,13,9646
Virgin_Media#Virgin_TV,1471,19,12329
ESPN_America,446,12,2283
ESPN_Australia,561,1,2287
BeIN_Sports_Arabia,85,9,2150
Sport1_(Germany),175,9,2130
Sport1_(Eastern_Europe),404,1,1833
Australian_Baseball_League,758,5,7664
Baseball_Assistance_Team,52,1,1339
Baseball_in_Canada,551,1,3609
Baseball_in_the_United_States,344,2,3573
Bob_Feller_Act_of_Valor_Award,121,1,2743
Comparison_of_Major_League_Baseball_and_Nippon_Professional_Baseball,215,1,2422
List_of_all-time_Major_League_Baseball_win%E2%80%93loss_records,238,1,2088
List_of_American_and_Canadian_cities_by_number_of_major_professional_sports_franchises,1308,3,7765
List_of_former_Major_League_Baseball_stadiums,536,1,4368
List_of_Major_League_Baseball_awards,255,2,5866
List_of_Major_League_Baseball_managers,553,1,12472
List_of_Major_League_Baseball_retired_numbers,553,2,8022
List_of_Major_League_Baseball_spring_training_ballparks,281,2,2200
List_of_professional_sports_leagues,1426,1,6060
List_of_professional_sports_teams_in_the_United_States_and_Canada,2666,1,11651
Major_League_Baseball_attendance_records,239,1,3832
Major_League_Baseball_draft,326,9,6213
MLB_Industry_Growth_Fund,68,1,730
Reviving_Baseball_in_Inner_Cities,120,1,1661
Hurricane_Milton,757,28,12370
Tropicana_Field,1033,22,12905
St._Petersburg_Florida,1250,88,17413
Oakland_Coliseum,1283,26,14453
Oakland_California,1636,115,19987
The_New_York_Times,1738,104,24223
Associated_Press,549,76,10788
University_of_Illinois_Press,171,10,1025
Scarecrow_Press,78,13,1324
Wayback_Machine,219,107,8336
Society_for_American_Baseball_Research,245,4,2651
Baseball_Prospectus,84,1,5304
SIU_Press,17,1,566
Chicago_History_Museum,348,5,3782
Triumph_Books,8,2,398
Jackie_Robinson_Foundation,68,1,836
ESPN_Classic,815,11,5293
Oxford_University_Press,377,59,6653
Bleacher_Report,172,9,4602
National_Baseball_Hall_of_Fame_and_Museum,870,21,9612
Sports_Illustrated,419,36,6787
FiveThirtyEight,196,12,11773
The_Wall_Street_Journal,1560,77,17778
Yahoo!,488,107,6340
Spartanburg_Herald-Journal,364,1,1867
The_Kentucky_Post,416,1,6222
Jim_Crane,275,1,3714
The_Anderson_Independent-Mail,355,1,1607
SportsLogos.net,18,1,940
Baseball_Almanac,7,1,791
Voice_of_America,902,72,15668
USA_Today,804,57,10967
Yahoo!_Sports,140,10,2216
The_Washington_Post,1111,92,15384
Sirius_XM_Radio,714,14,9392
Tweet_(social_media),236,5,5178
Twitter,1142,167,29050
Digital_Spy,197,23,1991
Sports_Business_Daily,123,1,1435
Jim_Bouton,201,8,3743
Richard_M._Cohen,28,2,831
Neft_David,10,2,762
James_Bill,211,6,5558
Ernest_Lanigan,138,1,1240
Hy_Turkin,33,1,824
S._C._Thompson,18,1,673
Jackie_Robinson_Day,164,6,4237
Civil_Rights_Game,576,1,3970
MLB_London_Series,935,3,4428
MLB_Mexico_City_Series,931,1,3154
MLB_Seoul_Series,684,1,2614
MLB_Little_League_Classic,284,1,3262
MLB_at_Field_of_Dreams,1909,4,6899
MLB_at_Rickwood_Field,1274,1,6249
Players_Weekend,137,1,3294
List_of_American_League_pennant_winners,841,2,7774
List_of_National_League_pennant_winners,854,1,8342
List_of_Major_League_Baseball_postseason_teams,707,1,2607
List_of_Major_League_Baseball_franchise_postseason_streaks,228,1,3799
List_of_Major_League_Baseball_franchise_postseason_droughts,596,1,4475
List_of_Major_League_Baseball_postseason_series,1041,1,5257
List_of_Major_League_Baseball_postseason_sweeps,453,1,2142
List_of_Major_League_Baseball_postseason_records,470,1,4141
List_of_Major_League_Baseball_game_sevens,572,1,3906
Major_League_Baseball_Authentication_Program,77,1,2079
The_Official_Professional_Baseball_Rules_Book,60,1,2288
Rule_5_draft,200,6,2373
List_of_highest-paid_Major_League_Baseball_players,173,1,4132
Hot_stove_league,57,3,1374
Major_League_Baseball_luxury_tax,58,1,3731
MLB_lockout,56,2,991
Major_League_Baseball_logo,61,2,1208
MLB_Local_Media,309,1,3517
World_Baseball_Classic_Inc.,79,1,1210
Major_League_Baseball_transactions,69,2,4469
Free_agency_(Major_League_Baseball),56,1,2131
Forbes_list_of_the_most_valuable_MLB_clubs,143,1,2664
Winter_Meetings,91,3,2378
Instant_replay_in_Major_League_Baseball,107,1,4650
2024_Major_League_Baseball_uniform_controversy,62,1,2517
List_of_Major_League_Baseball_mascots,356,1,12627
Major_League_Baseball_rivalries,365,1,13849
Pride_Night#Major_League_Baseball,733,1,5463
History_of_the_American_League,182,1,3781
List_of_Major_League_Baseball_tie-breakers,690,3,5100
Major_League_Baseball_tie-breaking_procedures,53,1,2502
List_of_Major_League_Baseball_career_records,225,1,2010
List_of_members_of_the_Baseball_Hall_of_Fame,1496,8,12051
National_Baseball_Commission,70,1,2305
Organized_baseball,39,1,1374
List_of_first_black_Major_League_Baseball_players,109,1,1774
List_of_Negro_league_baseball_players_who_played_in_Major_League_Baseball,208,1,2445
List_of_female_Major_League_Baseball_principal_owners,61,1,1713
Biogenesis_scandal,148,4,2486
BALCO_scandal,153,5,2909
Barry_Bonds_perjury_case,37,1,4128
Toolson_v._New_York_Yankees_Inc.,351,1,5480
Flood_v._Kuhn,790,1,25414
History_of_baseball_team_nicknames,390,1,17736
Live-ball_era,26,2,1511
Golden_age_of_baseball,37,1,1805
List_of_defunct_and_relocated_Major_League_Baseball_teams,189,1,4299
Expansion_of_Major_League_Baseball,325,1,9488
1961_Major_League_Baseball_expansion,307,1,3336
1962_Major_League_Baseball_expansion,349,1,3198
1993_Major_League_Baseball_expansion,215,1,2373
1998_Major_League_Baseball_expansion,187,1,1934
Expansion_of_Major_League_Baseball#Potential_future_expansion_sites,316,1,9488
Commissioner_of_Baseball,356,7,10363
List_of_American_League_presidents,30,1,1020
List_of_National_League_presidents,41,1,1175
Western_League_(1885%E2%80%931899),125,4,2263
Baltimore_Orioles_(1901%E2%80%931902),40,1,1466
Milwaukee_Brewers_(1894%E2%80%931901),303,1,1430
Washington_Senators_(1901%E2%80%931960),475,2,4008
Major_League_Baseball_Wild_Card_Game#American_League,323,1,3540
List_of_American_League_Wild_Card_winners,315,1,1915
Bill_Giles_(baseball),94,1,1521
19th-century_National_League_teams,32,2,1291
New_York_Giants_(baseball),856,2,6324
Major_League_Baseball_Wild_Card_Game#National_League,321,1,3540
List_of_National_League_Wild_Card_winners,341,1,1959
History_of_the_Baltimore_Orioles,625,1,11595
History_of_the_Boston_Red_Sox,923,1,16236
History_of_the_New_York_Yankees,925,1,17732
History_of_the_Tampa_Bay_Rays,365,1,6543
History_of_the_Toronto_Blue_Jays,603,1,12453
History_of_the_Chicago_White_Sox,790,1,12698
History_of_the_Cleveland_Guardians,622,1,11062
History_of_the_Detroit_Tigers,742,1,26863
History_of_the_Kansas_City_Royals,465,1,7766
History_of_the_Minnesota_Twins,495,1,6075
History_of_the_Athletics,665,1,14811
History_of_the_Houston_Astros,610,1,16878
History_of_the_Los_Angeles_Angels,456,1,9748
History_of_the_Seattle_Mariners,484,1,9364
History_of_the_Texas_Rangers_(baseball),489,1,9436
History_of_the_Atlanta_Braves,719,1,11790
History_of_the_Miami_Marlins,541,1,10997
History_of_the_New_York_Mets,845,1,16090
History_of_the_Philadelphia_Phillies,636,1,12652
History_of_the_Washington_Nationals,431,1,8798
History_of_the_Chicago_Cubs,904,1,19985
History_of_the_Cincinnati_Reds,616,1,8778
History_of_the_Milwaukee_Brewers,481,1,13482
History_of_the_Pittsburgh_Pirates,603,1,10178
History_of_the_St._Louis_Cardinals_(1875%E2%80%931919),692,1,7987
History_of_the_St._Louis_Cardinals_(1920%E2%80%931952),759,1,8084
History_of_the_St._Louis_Cardinals_(1953%E2%80%931989),672,1,5931
History_of_the_St._Louis_Cardinals_(1990%E2%80%93present),759,1,9491
History_of_the_Arizona_Diamondbacks,313,1,7231
History_of_the_Colorado_Rockies,399,1,10078
History_of_the_Los_Angeles_Dodgers,726,1,10874
History_of_the_San_Diego_Padres,495,1,10365
History_of_the_San_Francisco_Giants,659,1,11034
New_York_Mutuals,101,5,1626
Philadelphia_Athletics_(1860%E2%80%931876),329,5,2782
Hartford_Dark_Blues,93,5,1504
St._Louis_Brown_Stockings,130,3,2805
Louisville_Grays,46,4,971
Indianapolis_Blues,51,4,805
Milwaukee_Grays,85,3,943
Syracuse_Stars_(National_League),100,5,1057
Cincinnati_Reds_(1876%E2%80%931879),68,6,1155
Cincinnati_Stars,24,1,800
Worcester_Worcesters,57,5,1457
Providence_Grays,143,7,2373
Buffalo_Bisons_(National_League),123,7,1289
Cleveland_Blues_(National_League),50,6,804
Troy_Trojans_(National_League),79,4,1371
St._Louis_Maroons/Indianapolis_Hoosiers,119,3,1589
Kansas_City_Cowboys_(National_League),16,3,718
Washington_Nationals_(1886%E2%80%931889),27,5,811
Cleveland_Spiders,151,7,2803
Baltimore_Orioles_(1882%E2%80%931899),214,10,2474
Washington_Senators_(1891%E2%80%931899),68,4,1214
1876_Major_League_Baseball_season,244,3,1583
1877_Major_League_Baseball_season,227,3,1537
1878_Major_League_Baseball_season,229,3,1503
1879_Major_League_Baseball_season,253,3,1379
1880_Major_League_Baseball_season,255,3,1500
1881_Major_League_Baseball_season,251,3,1408
1882_Major_League_Baseball_season,303,3,1702
1883_Major_League_Baseball_season,340,3,1842
1884_Major_League_Baseball_season,587,4,3076
1885_Major_League_Baseball_season,364,3,2249
1886_Major_League_Baseball_season,337,3,1994
1887_Major_League_Baseball_season,370,4,2521
1888_Major_League_Baseball_season,354,3,2036
1889_Major_League_Baseball_season,352,3,1915
1890_Major_League_Baseball_season,503,3,2803
1891_Major_League_Baseball_season,379,3,2231
1892_Major_League_Baseball_season,318,3,2210
1893_Major_League_Baseball_season,254,2,1759
1894_Major_League_Baseball_season,253,2,1704
1895_Major_League_Baseball_season,262,2,1773
1896_Major_League_Baseball_season,253,2,1598
1897_Major_League_Baseball_season,258,2,1727
1898_Major_League_Baseball_season,242,2,1520
1899_Major_League_Baseball_season,247,2,1809
1900_Major_League_Baseball_season,228,2,1510
1901_Major_League_Baseball_season,299,8,2202
1902_Major_League_Baseball_season,283,8,1889
1903_Major_League_Baseball_season,291,7,2399
1904_Major_League_Baseball_season,274,6,1950
1905_Major_League_Baseball_season,289,6,1991
1906_Major_League_Baseball_season,285,7,2117
1907_Major_League_Baseball_season,273,7,1947
1908_Major_League_Baseball_season,295,7,2918
1909_Major_League_Baseball_season,272,7,2220
1910_Major_League_Baseball_season,276,7,2124
1911_Major_League_Baseball_season,272,6,2090
1912_Major_League_Baseball_season,282,5,1985
1913_Major_League_Baseball_season,277,5,2130
1914_Major_League_Baseball_season,371,5,2636
1915_Major_League_Baseball_season,376,5,2678
1916_Major_League_Baseball_season,273,5,2042
1917_Major_League_Baseball_season,252,5,1847
1918_Major_League_Baseball_season,266,5,2197
1919_Major_League_Baseball_season,294,5,3282
1920_Major_League_Baseball_season,297,5,3221
1921_Major_League_Baseball_season,264,6,2110
1922_Major_League_Baseball_season,259,6,2056
1923_Major_League_Baseball_season,264,4,2176
1924_Major_League_Baseball_season,285,6,2051
1925_Major_League_Baseball_season,288,5,2056
1926_Major_League_Baseball_season,280,5,2112
1927_Major_League_Baseball_season,293,5,2153
1928_Major_League_Baseball_season,285,5,2045
1929_Major_League_Baseball_season,293,5,2584
1930_Major_League_Baseball_season,283,5,2144
1931_Major_League_Baseball_season,286,5,2423
1932_Major_League_Baseball_season,288,5,2063
1933_Major_League_Baseball_season,295,5,2243
1934_Major_League_Baseball_season,300,5,2332
1935_Major_League_Baseball_season,286,5,2332
1936_Major_League_Baseball_season,273,5,2200
1937_Major_League_Baseball_season,303,5,2162
1938_Major_League_Baseball_season,310,5,2172
1939_Major_League_Baseball_season,338,5,3372
1940_Major_League_Baseball_season,296,5,2421
1941_Major_League_Baseball_season,274,5,2272
1942_Major_League_Baseball_season,275,5,2245
1943_Major_League_Baseball_season,283,5,2239
1944_Major_League_Baseball_season,279,5,2157
1945_Major_League_Baseball_season,296,5,2515
Post-war,80,21,1533
1946_Major_League_Baseball_season,297,5,2483
1947_Major_League_Baseball_season,302,7,3001
1948_Major_League_Baseball_season,285,6,2342
1949_Major_League_Baseball_season,401,6,6157
1950_Major_League_Baseball_season,296,6,2542
1951_Major_League_Baseball_season,311,6,2936
1952_Major_League_Baseball_season,285,6,2452
1953_Major_League_Baseball_season,290,6,2664
1954_Major_League_Baseball_season,281,6,2656
1955_Major_League_Baseball_season,284,7,2352
1956_Major_League_Baseball_season,288,7,2844
1957_Major_League_Baseball_season,329,5,3507
1959_Major_League_Baseball_season,324,6,2930
1960_Major_League_Baseball_season,655,5,8388
1961_Major_League_Baseball_season,381,5,4083
1962_Major_League_Baseball_season,326,5,2832
1963_Major_League_Baseball_season,490,6,5101
1964_Major_League_Baseball_season,443,6,4816
1965_Major_League_Baseball_season,402,6,4460
1966_Major_League_Baseball_season,394,6,3972
1967_Major_League_Baseball_season,324,6,3102
1968_Major_League_Baseball_season,323,6,2841
1969_Major_League_Baseball_season,455,6,5282
1970_Major_League_Baseball_season,489,6,5013
1971_Major_League_Baseball_season,450,6,4826
1972_Major_League_Baseball_season,619,6,7276
1973_Major_League_Baseball_season,244,6,2330
1974_Major_League_Baseball_season,232,6,2237
1975_Major_League_Baseball_season,226,6,2262
1976_Major_League_Baseball_season,250,6,3110
1977_Major_League_Baseball_season,363,6,4271
1978_Major_League_Baseball_season,398,6,4622
1979_Major_League_Baseball_season,320,6,3998
1980_Major_League_Baseball_season,389,7,4645
1981_Major_League_Baseball_season,457,7,5029
1982_Major_League_Baseball_season,301,6,2187
1983_Major_League_Baseball_season,321,7,2559
1984_Major_League_Baseball_season,307,6,2294
1985_Major_League_Baseball_season,410,6,3363
1986_Major_League_Baseball_season,329,6,2476
1987_Major_League_Baseball_season,351,6,3146
1988_Major_League_Baseball_season,386,9,4381
1989_Major_League_Baseball_season,397,7,4278
1990_Major_League_Baseball_season,356,7,3559
1991_Major_League_Baseball_season,441,7,4817
1992_Major_League_Baseball_season,362,7,3683
1993_Major_League_Baseball_season,299,8,2538
Major_League_Baseball_Wild_Card#One_wild_card_per_league_(1994–2011),57,1,2090
1994_Major_League_Baseball_season,334,8,3929
1995_Major_League_Baseball_season,458,9,4839
1996_Major_League_Baseball_season,398,8,3882
1997_Major_League_Baseball_season,431,9,4600
1998_Major_League_Baseball_season,524,9,7153
1999_Major_League_Baseball_season,498,9,6843
2000_Major_League_Baseball_season,564,9,9105
2001_Major_League_Baseball_season,324,10,2796
2002_Major_League_Baseball_season,295,10,2781
2003_Major_League_Baseball_season,361,11,2910
2004_Major_League_Baseball_season,324,11,2761
2005_Major_League_Baseball_season,324,12,3167
2006_Major_League_Baseball_season,421,12,3523
2007_Major_League_Baseball_season,536,12,7895
2008_Major_League_Baseball_season,624,12,10656
2009_Major_League_Baseball_season,545,12,7801
2010_Major_League_Baseball_season,627,13,12102
2011_Major_League_Baseball_season,664,13,13655
Major_League_Baseball_Wild_Card#Two_wild_cards_per_league_(2012–present),57,1,2090
2012_Major_League_Baseball_season,638,13,13735
2013_Major_League_Baseball_season,634,12,15568
2014_Major_League_Baseball_season,615,11,12603
2015_Major_League_Baseball_season,661,11,12722
2016_Major_League_Baseball_season,853,11,14180
2017_Major_League_Baseball_season,732,12,12549
2018_Major_League_Baseball_season,650,13,12082
2019_Major_League_Baseball_season,777,12,16396
2020_Major_League_Baseball_season,690,12,17766
2021_Major_League_Baseball_season,805,11,19426
2022_Major_League_Baseball_season,735,12,15757
Pitch_clock,235,2,2111
Baseball_statistics,575,8,5118
List_of_Major_League_Baseball_single-game_records,250,1,2989
List_of_Major_League_Baseball_single-season_records,374,1,2441
List_of_Major_League_Baseball_record_breakers_by_season,157,1,1778
List_of_Major_League_Baseball_records_considered_unbreakable,385,2,13704
List_of_Major_League_Baseball_titles_leaders,428,1,3145
List_of_Major_League_Baseball_career_batting_average_leaders,232,2,1565
List_of_Major_League_Baseball_career_hits_leaders,409,2,2040
3000-hit_club,224,8,3650
List_of_Major_League_Baseball_progressive_career_hits_leaders,888,1,2055
List_of_Major_League_Baseball_career_at_bat_leaders,226,2,1318
List_of_Major_League_Baseball_career_singles_leaders,223,1,1262
List_of_Major_League_Baseball_career_doubles_leaders,212,3,1330
List_of_Major_League_Baseball_career_triples_leaders,633,2,5605
List_of_Major_League_Baseball_career_home_run_leaders,413,4,2058
500_home_run_club,198,11,2680
600_home_run_club,174,1,2630
List_of_Major_League_Baseball_progressive_career_home_runs_leaders,1112,1,5147
List_of_Major_League_Baseball_leaders_in_home_runs_by_pitchers,226,1,2819
List_of_Major_League_Baseball_career_extra_base_hits_leaders,201,1,1208
List_of_Major_League_Baseball_career_runs_batted_in_leaders,405,3,2055
List_of_Major_League_Baseball_career_bases_on_balls_leaders,196,2,1241
List_of_Major_League_Baseball_career_intentional_bases_on_balls_leaders,201,1,1169
List_of_Major_League_Baseball_career_on-base_percentage_leaders,216,2,1577
List_of_Major_League_Baseball_career_slugging_percentage_leaders,202,2,1148
List_of_Major_League_Baseball_career_OPS_leaders,198,2,1216
List_of_Major_League_Baseball_career_times_on_base_leaders,200,1,1238
List_of_Major_League_Baseball_career_total_bases_leaders,197,3,1206
List_of_Major_League_Baseball_career_hit_by_pitch_leaders,209,2,1225
List_of_Major_League_Baseball_career_strikeouts_by_batters_leaders,205,2,1289
List_of_Major_League_Baseball_career_plate_appearance_leaders,203,1,1328
List_of_Major_League_Baseball_career_games_played_leaders,199,2,1254
List_of_Major_League_Baseball_batting_champions,1106,5,14926
List_of_Major_League_Baseball_annual_doubles_leaders,497,2,3368
List_of_Major_League_Baseball_annual_triples_leaders,566,2,3638
List_of_Major_League_Baseball_annual_home_run_leaders,1031,4,11441
List_of_Major_League_Baseball_annual_runs_batted_in_leaders,968,4,10954
List_of_Major_League_Baseball_players_with_a_.400_batting_average_in_a_season,224,1,3261
List_of_Major_League_Baseball_doubles_records#Doubles_in_one_season,245,2,2141
List_of_Major_League_Baseball_single-season_triples_leaders,197,1,1191
50_home_run_club,163,3,3568
List_of_Major_League_Baseball_progressive_single-season_home_run_leaders,149,1,1849
List_of_Major_League_Baseball_single-game_home_run_leaders,175,2,3252
List_of_Major_League_Baseball_single-inning_home_run_leaders,196,1,6353
List_of_Major_League_Baseball_players_to_hit_for_the_cycle,680,2,15385
List_of_Major_League_Baseball_single-game_grand_slam_leaders,116,2,2133
List_of_Major_League_Baseball_single-game_runs_batted_in_leaders,132,1,2742
List_of_Major_League_Baseball_single-inning_runs_batted_in_leaders,166,1,2872
List_of_Major_League_Baseball_single-game_hits_leaders,374,1,14193
Hitting_streak,315,4,2770
List_of_Major_League_Baseball_hit_records,407,4,4646
List_of_Major_League_Baseball_home_run_records,469,2,4924
List_of_Major_League_Baseball_doubles_records,229,2,2141
List_of_Major_League_Baseball_triples_records,268,2,2645
List_of_Major_League_Baseball_runs_batted_in_records,218,1,2430
List_of_Major_League_Baseball_career_runs_scored_leaders,420,2,2137
List_of_Major_League_Baseball_career_stolen_bases_leaders,194,3,1486
List_of_Major_League_Baseball_annual_runs_scored_leaders,407,2,2802
List_of_Major_League_Baseball_annual_stolen_base_leaders,658,5,3099
List_of_Major_League_Baseball_single-game_runs_scored_leaders,115,1,1228
List_of_Major_League_Baseball_runs_records,174,1,3096
List_of_Major_League_Baseball_stolen_base_records,367,1,5142
List_of_Major_League_Baseball_career_wins_leaders,189,2,1403
300-win_club,164,7,2711
List_of_Major_League_Baseball_career_losses_leaders,164,2,1104
List_of_Major_League_Baseball_career_games_started_leaders,167,2,1226
List_of_Major_League_Baseball_career_games_finished_leaders,171,1,1164
List_of_Major_League_Baseball_career_innings_pitched_leaders,162,2,1133
List_of_Major_League_Baseball_career_strikeout_leaders,166,2,1321
3000_strikeout_club,146,6,2086
Hold_(baseball),176,4,1540
List_of_Major_League_Baseball_career_saves_leaders,171,1,1276
300_save_club,149,5,2667
List_of_Major_League_Baseball_career_complete_games_leaders,157,1,1143
List_of_Major_League_Baseball_career_shutout_leaders,102,2,873
List_of_Major_League_Baseball_career_ERA_leaders,155,2,1191
List_of_Major_League_Baseball_career_FIP_leaders,153,1,1131
List_of_Major_League_Baseball_career_WHIP_leaders,154,2,1188
List_of_Major_League_Baseball_career_bases_on_balls_allowed_leaders,153,2,1138
List_of_Major_League_Baseball_career_hit_batsmen_leaders,153,1,1217
List_of_Major_League_Baseball_career_wild_pitches_leaders,149,1,1089
List_of_Major_League_Baseball_career_batters_faced_leaders,148,1,1107
List_of_Major_League_Baseball_annual_wins_leaders,1264,4,11790
List_of_Major_League_Baseball_annual_saves_leaders,657,4,3362
List_of_Major_League_Baseball_annual_shutout_leaders,979,1,3747
List_of_Major_League_Baseball_annual_strikeout_leaders,988,4,11378
List_of_Major_League_Baseball_annual_ERA_leaders,937,4,11098
List_of_Major_League_Baseball_single-season_wins_leaders,102,1,1376
List_of_Major_League_Baseball_single-season_losses_leaders,127,1,1321
300_strikeout_club,193,1,2305
List_of_Major_League_Baseball_no-hitters,1318,2,19929
List_of_Major_League_Baseball_perfect_games,766,2,15168
List_of_Major_League_Baseball_single-game_strikeout_leaders,111,2,3870
List_of_Major_League_Baseball_single-inning_strikeout_leaders,573,2,6840
List_of_Major_League_Baseball_pitchers_who_have_thrown_an_immaculate_inning,701,5,8079
Scoreless_innings_streak,80,1,1432
List_of_Major_League_Baseball_wins_records,238,1,3082
List_of_Major_League_Baseball_career_games_played_as_a_pitcher_leaders,221,1,2882
List_of_Major_League_Baseball_career_games_played_as_a_catcher_leaders,168,1,2363
List_of_Major_League_Baseball_career_games_played_as_a_first_baseman_leaders,177,1,2343
List_of_Major_League_Baseball_career_games_played_as_a_second_baseman_leaders,176,1,2261
List_of_Major_League_Baseball_career_games_played_as_a_third_baseman_leaders,191,1,2466
List_of_Major_League_Baseball_career_games_played_as_a_shortstop_leaders,158,1,2103
List_of_Major_League_Baseball_career_games_played_as_an_outfielder_leaders,187,1,2576
List_of_Major_League_Baseball_career_games_played_as_a_left_fielder_leaders,188,1,2391
List_of_Major_League_Baseball_career_games_played_as_a_center_fielder_leaders,192,1,2476
List_of_Major_League_Baseball_career_games_played_as_a_right_fielder_leaders,185,1,2437
List_of_Major_League_Baseball_career_putouts_leaders,1211,1,14854
List_of_Major_League_Baseball_career_assists_leaders,1192,1,14044
List_of_Major_League_Baseball_career_double_plays_leaders,1146,1,11934
List_of_Major_League_Baseball_career_fielding_errors_leaders,1180,1,9241
List_of_Major_League_Baseball_career_passed_balls_leaders,141,1,1449
List_of_Major_League_Baseball_annual_putouts_leaders,445,1,2936
List_of_Major_League_Baseball_annual_assists_leaders,426,1,2916
List_of_Major_League_Baseball_annual_fielding_errors_leaders,479,1,2958
List_of_Major_League_Baseball_managerial_wins_and_winning_percentage_leaders,258,2,2808
List_of_Major_League_Baseball_managers_with_most_career_ejections,117,1,1031
Triple_Crown_(baseball),408,10,6749
20%E2%80%9320%E2%80%9320_club,54,4,2383
20%E2%80%9350_club,56,1,1431
30%E2%80%9330_club,153,8,3235
40%E2%80%9340_club,113,6,2229
40%E2%80%9340_club#50–50_season,113,6,2229
List_of_Major_League_Baseball_consecutive_games_played_leaders,80,1,2487
List_of_Major_League_Baseball_longest_winning_streaks,212,1,2602
List_of_Major_League_Baseball_longest_losing_streaks,107,1,1965
List_of_Major_League_Baseball_individual_streaks,129,1,3449
List_of_Major_League_Baseball_attendance_records,99,1,3825
List_of_Major_League_Baseball_umpiring_leaders,1067,1,4554
List_of_Major_League_Baseball_career_WAR_leaders,294,1,1988
Chief_Bender,786,9,4659
Bert_Blyleven,1788,12,7306
Ray_Brown_(Negro_leagues_pitcher),559,3,1942
Jim_Bunning,1925,20,10320
Steve_Carlton,1833,12,9329
Jack_Chesbro,952,7,5469
John_Clarkson,1215,9,5206
Andy_Cooper,492,3,2827
Stan_Coveleski,946,11,6003
Leon_Day,476,4,3735
Mart%C3%ADn_Dihigo,823,6,3804
Don_Drysdale,1761,12,8154
Dennis_Eckersley,1604,11,7140
Red_Faber,623,8,3213
Rollie_Fingers,1256,9,7489
Whitey_Ford,1545,13,7004
Bill_Foster_(baseball),473,3,2463
Pud_Galvin,498,8,2126
Tom_Glavine,1215,12,6283
Lefty_Gomez,1080,10,5144
Goose_Gossage,735,6,5297
Burleigh_Grimes,993,8,4098
Lefty_Grove,1346,10,5374