how to remove row in dataframe pandas code example
Example 1: delete a row in pandas dataframe
df.drop(df.index[2])
Example 2: remove rows from dataframe
df.drop(['Cochice', 'Pima'])
Example 3: drop variable pandas
# pandas drop a column with drop function
gapminder_ocean.drop(['pop'], axis=1)