remove data from dataframe code example
Example 1: remove column from dataframe
df.drop('column_name', axis=1, inplace=True)
Example 2: remove rows from dataframe
df.drop(['Cochice', 'Pima'])
df.drop('column_name', axis=1, inplace=True)
df.drop(['Cochice', 'Pima'])