Skip to content
Advertisement

How to Filter pandas dataframe [Error : list indices must be integers or slices, not str]

I have dataframe loaded in colab, my data look like this

JavaScript

this is my code

JavaScript

when I want to take some of the dataframe and put it into new dataframe I get this Error

TypeError———–Traceback (most recent call last) in ()
1 tm_df1 = pd.DataFrame()
—-> 2 tm_df1 = tm_df1.append(tm_df[type(tm_df[‘parent_name_1’]) == ‘Apple’])
TypeError: list indices must be integers or slices, not str

Advertisement

Answer

If you want to filter out the rows with parent_name_1= “Apple”

use :

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement