You are working with a DataFrame called df_rock that contains sonar signals from two object classes: rocks and mines. In the first five columns, you can see the wavelengths that the sonar got from different angles.
Load the given data as a pandas Data Frame, then check how many non-NA values the "labels" column has. You can use .count() for that.
Tip: The .loc method can help you select the required column.