Getting Started

Avik Debnath, PGP34259

Reading The Data

# reading the data
airline.df <- read.csv("BOMDELBOM.csv")

Number of Rows And Columns In The Dataframe

# dimension of the dataframe
dim(airline.df)
[1] 305  23

Column Names Of The Dataframe

# 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"         

Scatter Plot For The Variable Price

plot of chunk unnamed-chunk-4