Baselight

Flight Take Off Data - JFK Airport

This data contains flight details taking off from JFK airport.

@kaggle.deepankurk_flight_take_off_data_jfk_airport

M1 Final
@kaggle.deepankurk_flight_take_off_data_jfk_airport.m1_final

  • 371.92 KB
  • 28820 rows
  • 23 columns
month

MONTH

day_of_month

DAY OF MONTH

day_of_week

DAY OF WEEK

op_unique_carrier

OP UNIQUE CARRIER

tail_num

TAIL NUM

dest

DEST

dep_delay

DEP DELAY

crs_elapsed_time

CRS ELAPSED TIME

distance

DISTANCE

crs_dep_m

CRS DEP M

dep_time_m

DEP TIME M

crs_arr_m

CRS ARR M

temperature

Temperature

dew_point

Dew Point

humidity

Humidity

wind

Wind

wind_speed

Wind Speed

wind_gust

Wind Gust

pressure

Pressure

condition

Condition

sch_dep

Sch Dep

sch_arr

Sch Arr

taxi_out

TAXI OUT

1115B6N828JBCHS-1124636324323448483458W253829.86Fair / Windy91714
1115B6N992JBLAX-73712475340333531483458W253829.86Fair / Windy91715
1115B6N959JBFLL401811069301341482483458W253829.86Fair / Windy91722
1115B6N999JQMCO-2168944345343513483458W253829.86Fair / Windy91712
1115DLN880DNATL-4139760360356499463258W243529.91Fair / Windy91713
1115AAN983NNORD-1161740359358460463258W243529.91Fair / Windy91721
1115AAN107NNLAX-13732475360359553463258W243529.91Fair / Windy91726
1115B6N274JBBUF-580301365360445463258W243529.91Fair / Windy172111
1115B6N663JBLGB3682465365365553463258W243529.91Fair / Windy172125
1115B6N283JBFLL31841069370373554463258W243529.91Fair / Windy172129

CREATE TABLE m1_final (
  "month" BIGINT,
  "day_of_month" BIGINT,
  "day_of_week" BIGINT,
  "op_unique_carrier" VARCHAR,
  "tail_num" VARCHAR,
  "dest" VARCHAR,
  "dep_delay" BIGINT,
  "crs_elapsed_time" BIGINT,
  "distance" BIGINT,
  "crs_dep_m" BIGINT,
  "dep_time_m" BIGINT,
  "crs_arr_m" BIGINT,
  "temperature" BIGINT,
  "dew_point" VARCHAR,
  "humidity" BIGINT,
  "wind" VARCHAR,
  "wind_speed" BIGINT,
  "wind_gust" BIGINT,
  "pressure" DOUBLE,
  "condition" VARCHAR,
  "sch_dep" BIGINT,
  "sch_arr" BIGINT,
  "taxi_out" BIGINT
);

Share link

Anyone who has the link will be able to view this.