IPL Batting First Wins Dataset
IPL 1-9 1st innings score and Win/Lose for the team batting first.
@kaggle.manan904_ipl_batting_first_wins_dataset
IPL 1-9 1st innings score and Win/Lose for the team batting first.
@kaggle.manan904_ipl_batting_first_wins_dataset
I created this dataset to predict the score required by the team batting first to win the match using supervised learning on the past ipl match data.
Ipl match info about 1st innings score,2nd innings score and whether the team batting first won or not.
Helpful in predicting a desired 1st innings score that can be defended.
Thanks https://www.kaggle.com/manasgarg/ipl using which I created this dataset on excel.
Trying my hand on supervised learning.
IPL Fan.
CREATE TABLE match_data (
"n_1st_innings" BIGINT -- 1st Innings,
"result" VARCHAR
);CREATE TABLE match_data_extended (
"match_id" DOUBLE,
"n_1st_innings" DOUBLE -- 1st Innings,
"n_2nd_innnings" DOUBLE -- 2nd Innnings,
"result" VARCHAR
);Anyone who has the link will be able to view this.