Flight Price Predict (competition Format)
filght price regression problem
@kaggle.kukuroo3_flight_price_predict_competition_format
filght price regression problem
@kaggle.kukuroo3_flight_price_predict_competition_format
Context
This dataset was taken from link and separated into competition format.
The label for the test data is provided in the form of a function.
metrics : r2_score
CREATE TABLE x_test (
"filghtid" BIGINT,
"airline" VARCHAR,
"flight" VARCHAR,
"source_city" VARCHAR,
"departure_time" VARCHAR,
"stops" VARCHAR,
"arrival_time" VARCHAR,
"destination_city" VARCHAR,
"duration" DOUBLE,
"days_left" BIGINT
);CREATE TABLE x_train (
"filghtid" BIGINT,
"airline" VARCHAR,
"flight" VARCHAR,
"source_city" VARCHAR,
"departure_time" VARCHAR,
"stops" VARCHAR,
"arrival_time" VARCHAR,
"destination_city" VARCHAR,
"duration" DOUBLE,
"days_left" BIGINT
);CREATE TABLE y_test (
"filghtid" BIGINT,
"price" BIGINT
);CREATE TABLE y_train (
"filghtid" BIGINT,
"price" BIGINT
);Anyone who has the link will be able to view this.