Avik Debnath, PGP34259
# reading the data
airline.df <- read.csv("BOMDELBOM.csv")
# dimension of the dataframe
dim(airline.df)
[1] 305 23
# column names of the dataframe
colnames(airline.df)
[1] "FlightNumber" "Airline" "DepartureCityCode"
[4] "ArrivalCityCode" "DepartureTime" "ArrivalTime"
[7] "Departure" "FlyingMinutes" "Aircraft"
[10] "PlaneModel" "Capacity" "SeatPitch"
[13] "SeatWidth" "DataCollectionDate" "DateDeparture"
[16] "IsWeekend" "Price" "AdvancedBookingDays"
[19] "IsDiwali" "DayBeforeDiwali" "DayAfterDiwali"
[22] "MarketShare" "LoadFactor"