import pandas as pd import numpy as np import seaborn as sns import matplotlib.pyplot as plt In [7]: df = pd.read_csv("data/diabetes.csv") df.shape Out[7]: (768, 9) In [8]: df.head() Out[8]: PregnanciesGlucoseBloodPressureSkinThicknessInsulinBMIDiabetesPedigreeFunctionAgeOutcome01234 6 148 72 35 0 33.6 0.627 50 1 1 85 66 29 0 26.6 0.351 31 0 8 183 64 0 0 23.3 0.672 32 1 1 89 66 23 94 28.1 0.167 ..