So I have a dataframe like this -
To access elements in the first column, is this the best pythonic way -
df['time_6'].iloc[0][0]
?
If I am going to use a For loop to parse through this column, would the best way be to use
.iloc[ii][ii]
?
Thank you
R