We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0750fc7 commit 2ca04b4Copy full SHA for 2ca04b4
1 file changed
_extras/guide.md
@@ -212,7 +212,7 @@ previous steps visible.
212
* What is the difference between `surveys_df.iloc[0:4, 1:4]` and `surveys_df.loc[0:4, 1:4]`?
213
214
While `iloc` uses integers as indices and slices accordingly, `loc` works with labels. It is
215
- like would be in a dictionary, asking for the key names. Column names 1:4 do not exist,
+ like accessing values from a dictionary, asking for the key names. Column names 1:4 do not exist,
216
resulting in an error. Check also the difference between `surveys_df.loc[0:4]` and `surveys_df.iloc[0:4]`.
217
218
### Advanced Selection Challenges
0 commit comments