I have a huge dataframe, and I index it like so:
df.ix[]
Depending on the index, sometimes this will have only one row of values.
You can do df.ix[[n]] to get a one-row dataframe of row n.
df.ix[[n]]
n