upon inspecting dataset:
see list of observations in reference section below
use pandas
data-frames to import observation labels for all x-rays:
df = pd.read_csv('csv-path/train.csv')
some useful pandas
tools for exploring data:
# extract column headers
headers = df.columns
# see the categories and their respective counts in each column
for title in headers:
print(df[title].value_counts())