how to remove a row containing '?' in pandas code example
Example 1: remove rows from pandas dataframe that have text
df[df.columnName != 'text']
Example 2: remove rows from dataframe
df.drop(['Cochice', 'Pima'])
df[df.columnName != 'text']
df.drop(['Cochice', 'Pima'])