Pandas Dro Pow

# Drop a row by index
# e.g. drop row having index number 16
df.drop([16], inplace=True)
D Goglia