python eliminate a row in data frame code example
Example 1: remove column from dataframe
df.drop('column_name', axis=1, inplace=True)
Example 2: remove 0th row pandas
df1 = df.iloc[1:]
df.drop('column_name', axis=1, inplace=True)
df1 = df.iloc[1:]