difference between the working of loc and iloc with data frame
Answers
Answered by
0
Answer:
loc gets rows (or columns) with particular labels from the index. iloc gets rows (or columns) at particular positions in the index (so it only takes integers).
Similar questions