A collection of all collisions between aircraft in wildlife that were reported to the US Federal Aviation Administration between 1990 and 1997, with details on the circumstances of the collision.
data
Format
A data frame with 19302 observations on the following 17 variables.
opid: Three letter identification code for the operator (carrier) of the aircraft.
operator: Name of the aircraft operator.
atype: Make and model of aircraft.
remarks: Verbal remarks regarding the collision.
phase_of_flt: Phase of the flight during which the collision occurred: Approach, Climb, Descent, En Route, Landing Roll, Parked, Take-off run, Taxi.
ac_mass: Mass of the aircraft classified as 2250 kg or less (1), 2251-5700 kg (2), 5701-27000 kg (3), 27001-272000 kg (4), above 272000 kg (5).
The FAA National Wildlife Strike Database contains strike reports that are voluntarily reported to the FAA by pilots, airlines, airports and others. Current research indicates that only about 20\
Wildlife strike reporting is not uniform as some organizations have more robust voluntary reporting procedures. Because of variations in reporting, users are cautioned that the comparisons between individual airports or airlines may be misleading.
Examples
library(dplyr)library(ggplot2)library(forcats)library(tidyr)# Phase of the flight during which the collision occurred, tabularbirds |> count(phase_of_flt, sort =TRUE)# Phase of the flight during which the collision occurred, barplotggplot(birds, aes(y = fct_infreq(phase_of_flt)))+ geom_bar()+ labs(x ="Phase of flight")# Height summary statisticssummary(birds$height)# Phase of flight vs. effect of crashbirds |> drop_na(phase_of_flt, effect)|> ggplot(aes(y = phase_of_flt, fill = effect))+ geom_bar(position ="fill")+ labs(x ="Proportion", y ="Phase of flight", fill ="Effect")