Exercise

Inspecting a DataFrame

We've loaded the credit card records of our four suspects into a DataFrame called credit_records. Let's learn more about the structure of this DataFrame.

The pandas module has been imported under the alias pd. The DataFrame credit_records has already been imported.


How many rows are in credit_records?

Instructions 1/2

undefined XP
    1
    2
  • Use the .info() method to inspect the DataFrame credit_records.