I have a pandas dataframe of the form:
Where "it", "their" and "charact" are the indexes. How can I select a value based on the index? When I try the following:
corpus_df.iloc['it',1]
I get an error:
ValueError: Location based indexing can only have [integer, integer slice (START point is INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types
