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_labelscontains descriptors of the five different types of engines. - The NumPy array
engine_typescontains the integers 0 through 4, specifying the type of engine, where the integer corresponds to the index of theengine_types_labelslist.
Create a histogram of the frequency of strikes of aircraft of each engine type.
Este exercício faz parte do curso
Python for MATLAB Users
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# 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