Predicting Copa America 2024 Using ML
A Machine Learning Approach to Forecasting Copa America 2024 Results.
@kaggle.parasharmanas_predicting_copa_america_2024_using_ml
A Machine Learning Approach to Forecasting Copa America 2024 Results.
@kaggle.parasharmanas_predicting_copa_america_2024_using_ml
CREATE TABLE fifa_ranking_2024_04_04 (
"rank" DOUBLE,
"country_full" VARCHAR,
"country_abrv" VARCHAR,
"total_points" DOUBLE,
"previous_points" DOUBLE,
"rank_change" BIGINT,
"confederation" VARCHAR,
"rank_date" TIMESTAMP
);
CREATE TABLE goalscorers (
"date" TIMESTAMP,
"home_team" VARCHAR,
"away_team" VARCHAR,
"team" VARCHAR,
"scorer" VARCHAR,
"minute" DOUBLE,
"own_goal" VARCHAR,
"penalty" VARCHAR
);
CREATE TABLE results (
"date" TIMESTAMP,
"home_team" VARCHAR,
"away_team" VARCHAR,
"home_score" BIGINT,
"away_score" BIGINT,
"tournament" VARCHAR,
"city" VARCHAR,
"country" VARCHAR,
"neutral" BOOLEAN
);
CREATE TABLE shootouts (
"date" TIMESTAMP,
"home_team" VARCHAR,
"away_team" VARCHAR,
"winner" VARCHAR,
"first_shooter" VARCHAR
);
Anyone who has the link will be able to view this.