Assume this is my dataframe looks like
DF:
A B C
1 10 10
2 5 5
3 12 12
4 6 7
5 21 22
Actually i need the help of how can i get each rows as np arrays. In each iteration with iterrows() or itertuples(): like
[1,10,10]
[2,5,5]
etc...
I see the thread which all convert to np arrays from the dataframe only. So kindly suggest me how can we achieve this.