This seems like a ridiculously easy question... but I\'m not seeing the easy answer I was expecting.
So, how do I get the value at an nth row of a given column in Pa
In a general way, if you want to pick up the first N rows from the J column from pandas dataframe the best way to do this is:
pandas dataframe
data = dataframe[0:N][:,J]