ComenzarEmpieza gratis

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 the engine_types_labels list.

Create a histogram of the frequency of strikes of aircraft of each engine type.

Este ejercicio forma parte del curso

Python for MATLAB Users

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# 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
Editar y ejecutar código