LoslegenKostenlos loslegen

Visualizing your data

Once you have gained access to our data, you need to explore, analyze, and understand it. In this exercise, you will apply the skills learned in this chapter to perform a simple exploratory data analysis on the heart disease dataset. Your task is to generate visualizations and summaries of the dataset.

pandas and matplotlib.pyplot have been imported for you as pd and plt, respectively. The heart disease dataset is stored as a pandas DataFrame called heart_disease_df and will be available in each exercise for the remainder of the course.

Diese Übung ist Teil des Kurses

End-to-End Machine Learning

Kurs anzeigen

Interaktive Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

# Print the first 5 rows of the DataFrame
____

# Print information about the DataFrame
____
Code bearbeiten und ausführen