I want to get in a new dataframe the rows of an original dataframe where there is a non-real (i.e. string) value in a specific column.
import pandas as pd
import numpy as np
test = {'a':[1,2,3],
'b':[4,5,'x'],
'c':['f','g','h']}
df_test = pd.DataFrame(test)
print(df_test)
I want to get the third row where the value in 'b' column is not numeric (it is 'x').