Ipl First Inning Scores
A Comprehensive Dataset for IPL First Inning Analysis
@kaggle.maso0dahmed_ipl_first_inning_scores
A Comprehensive Dataset for IPL First Inning Analysis
@kaggle.maso0dahmed_ipl_first_inning_scores
This comprehensive dataset captures the essence of Indian Premier League (IPL) cricket matches by focusing on the first innings. It provides a rich source of information for predictive modeling and analysis, offering a nuanced understanding of the dynamics that unfold during these crucial phases of the game.
This dataset is particularly valuable for tasks such as predictive modeling, where it can be employed to forecast the total runs a team is likely to score in the first inning based on a myriad of match-related parameters. Additionally, it enables in-depth statistical analysis to uncover patterns and factors influencing team performance in the dynamic landscape of IPL cricket matches.
Note:
total) encapsulates the cumulative total runs made by the batting team, serving as the focal point for predictive endeavors.CREATE TABLE ipl_1 (
"mid" BIGINT,
"date" TIMESTAMP,
"venue" VARCHAR,
"bat_team" VARCHAR,
"bowl_team" VARCHAR,
"batsman" VARCHAR,
"bowler" VARCHAR,
"runs" BIGINT,
"wickets" BIGINT,
"overs" DOUBLE,
"runs_last_5" BIGINT,
"wickets_last_5" BIGINT,
"striker" BIGINT,
"non_striker" BIGINT,
"total" BIGINT
);Anyone who has the link will be able to view this.