Session Ready
Exercise

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.

Instructions 1/3
undefined XP
  • 1
  • 2
  • 3
  • Create the histogram with one bin for each unique value in engine_types.