import pandas as pd
# Read CSV data file:
df = pd.read_csv('~/nclab-data-read/titanic.csv')
# Port where most passengers embarked:
port = df['Embarked'].mode()[0]
**# Count these passengers:
n_port = df[['Name']].loc[df['Embarked'] == 1].count()[0]**
I believe I have something incorrect in the bottom row, but can't figure out what.