How do I get a list of row lables in pandas?
I have a table with column labels and row labels. To return the column lables I use the dataframe "column" attribute. It is possible to return the list of column labels with the attribute columns, but i couldn't find similiar attributes for rows.
This should work. df.index.values
This returns index in the form of numpy array numpy.ndarray, run this type(df.index.values) to check. 
Try the attribute index
df.index.values
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With