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
To get e.g the value from column 'test' and row 1 it works like
df[['test']].values[0][0]
as only df[['test']].values[0] gives back a array
df[['test']].values[0]