Determine engine types in wildlife strikes
Since 1992, the Federal Aviation Administration has been tracking wildlife strikes by commercial and military aircraft. This data helps prevent catastrophic crashes and decreases the impact on endangered species.
Some data related to wildlife strikes in California is loaded into the session. For each strike, the FAA records the engine type of the aircraft involved.
- The list
engine_types_labels
contains descriptors of the five different types of engines. - The NumPy array
engine_types
contains the integers 0 through 4, specifying the type of engine, where the integer corresponds to the index of theengine_types_labels
list.
Create a histogram of the frequency of strikes of aircraft of each engine type.
This exercise is part of the course
Python for MATLAB Users
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Create the histogram with one bin for each unique value in engine_types
plt.____()
plt.____(____, bins = [0,1,2,3,4,5])
# Show the plot