What is the difference between `df.loc[]` and `df.iloc[]` in pandas?
-
A
`loc` uses integer positions; `iloc` uses labels
-
B
`loc` uses labels; `iloc` uses integer positions
-
C
They are identical in behavior
-
D
`loc` is faster; `iloc` is for large datasets