Baselight

Airplane Price Prediction

Predict Price of Different Airplanes Using Plane Specification

@kaggle.rafsunahmad_plane_price_prediction

Plane Price
@kaggle.rafsunahmad_plane_price_prediction.plane_price

  • 37.48 KB
  • 517 rows
  • 16 columns
model_name

Model Name

engine_type

Engine Type

hp_or_lbs_thr_ea_engine

HP Or Lbs Thr Ea Engine

max_speed_knots

Max Speed Knots

rcmnd_cruise_knots

Rcmnd Cruise Knots

stall_knots_dirty

Stall Knots Dirty

fuel_gal_lbs

Fuel Gal/lbs

all_eng_rate_of_climb

All Eng Rate Of Climb

eng_out_rate_of_climb

Eng Out Rate Of Climb

takeoff_over_50ft

Takeoff Over 50ft

landing_over_50ft

Landing Over 50ft

empty_weight_lbs

Empty Weight Lbs

length_ft_in

Length Ft/in

wing_span_ft_in

Wing Span Ft/in

range_n_m

Range N.M.

price

Price

100 Darter (S.L. Industries)Piston14510491463645090013002,050118025/337/53701300000
7 CCM ChampPiston85898344156007208001,35082020/736/11901230000
100 Darter (S.L. Industries)Piston90907837196504758501,30081021/535/02101600000
7 AC ChampPiston85887837196205008501,30080021/535/02101300000
100 Darter (S.L. Industries)Piston65837433143706328851,22074021/535/01751250000
PA-60-700P Aerostar (preliminary)Piston65787233153605838801,25078620/436/11801100000
PA-601P pressurized Aerostar ('77 service ceiling=26,350)Piston350264230801651,820308021006,315427534/1036/88682500000
100 Darter (S.L. Industries)Piston290262247771651,755225020766,000412534/936/710202800000
PA-601, 601A, turbochg AerostarPiston290257235771651,460249020306,000405634/1036/811012500000
100 Darter (S.L. Industries)Piston290257237771651,460249020306,000395834/1036/811743000000

CREATE TABLE plane_price (
  "model_name" VARCHAR,
  "engine_type" VARCHAR,
  "hp_or_lbs_thr_ea_engine" VARCHAR,
  "max_speed_knots" VARCHAR,
  "rcmnd_cruise_knots" DOUBLE,
  "stall_knots_dirty" DOUBLE,
  "fuel_gal_lbs" BIGINT,
  "all_eng_rate_of_climb" VARCHAR,
  "eng_out_rate_of_climb" DOUBLE,
  "takeoff_over_50ft" DOUBLE,
  "landing_over_50ft" VARCHAR,
  "empty_weight_lbs" DOUBLE,
  "length_ft_in" VARCHAR,
  "wing_span_ft_in" VARCHAR,
  "range_n_m" DOUBLE,
  "price" DOUBLE
);

Share link

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