2024 Olympic Predictions For Track & Field
Using calculate trend lines from previous years to predict the winning results
@kaggle.bonniesindelar_2024_olympic_predictions_for_track_field
Using calculate trend lines from previous years to predict the winning results
@kaggle.bonniesindelar_2024_olympic_predictions_for_track_field
CREATE TABLE field_event_predictions (
"event" VARCHAR,
"eval_dates" VARCHAR,
"start_eval_date" BIGINT,
"end_eval_date" BIGINT,
"years_evaluated" BIGINT,
"trend_line_equation" VARCHAR,
"m" DOUBLE,
"b" DOUBLE,
"n_2024_prediction" DOUBLE
);
CREATE TABLE running_event_predictions (
"event" VARCHAR,
"eval_dates" VARCHAR,
"start_eval_date" BIGINT,
"end_eval_date" BIGINT,
"years_evaluated" BIGINT,
"trend_line_equation" VARCHAR,
"m" DOUBLE,
"b" VARCHAR,
"n_2024_prediction" DOUBLE,
"mm_ss_format" VARCHAR
);
Anyone who has the link will be able to view this.