Cricinfo Most T20 Fifties Data
Scraped data for most t20 fifties from ESPNcricinfo.
@kaggle.abdullahwasi_cricinfo_most_t20_fifties_data
Scraped data for most t20 fifties from ESPNcricinfo.
@kaggle.abdullahwasi_cricinfo_most_t20_fifties_data
Scraped from https://www.espncricinfo.com/records/most-fifties-in-career-283488 on 24 jan 2024 12 pm IST.
Doesn't include 50+ column from the URL. All entries are in the form of strings that will need to be converted to integers for analysis.
For more recent data drop an upvote , follow and message me.
CREATE TABLE t20batters (
"playername" VARCHAR,
"span" VARCHAR,
"mat" BIGINT,
"inns" BIGINT,
"no" BIGINT,
"runs" BIGINT,
"hs" VARCHAR,
"ave" DOUBLE,
"bf" BIGINT,
"sr" DOUBLE,
"n_100" BIGINT -- 100,
"n_50" BIGINT -- 50,
"n_0" BIGINT -- 0,
"n_4s" BIGINT -- 4s,
"n_6s" BIGINT -- 6s
);CREATE TABLE t20batters12032024 (
"playername" VARCHAR,
"span" VARCHAR,
"mat" BIGINT,
"inns" BIGINT,
"no" BIGINT,
"runs" BIGINT,
"hs" VARCHAR,
"ave" DOUBLE,
"bf" BIGINT,
"sr" DOUBLE,
"n_100" BIGINT -- 100,
"n_50" BIGINT -- 50,
"n_0" BIGINT -- 0,
"n_4s" BIGINT -- 4s,
"n_6s" BIGINT -- 6s
);Anyone who has the link will be able to view this.