2020-08-13 12:00:20 +02:00
---
id: 5e9a093a74c4063ca6f7c14e
2021-02-06 04:42:36 +00:00
title: Data Analysis Example B
2020-08-13 12:00:20 +02:00
challengeType: 11
videoId: 0kJz0q0pvgQ
2021-01-13 03:31:00 +01:00
dashedName: data-analysis-example-b
2020-08-13 12:00:20 +02:00
---
2020-12-16 00:37:30 -07:00
# --description--
2020-08-13 12:00:20 +02:00
2021-02-06 04:42:36 +00:00
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
2020-08-13 12:00:20 +02:00
More resources:
2021-02-06 04:42:36 +00:00
- [Notebooks on GitHub ](https://github.com/ine-rmotr-curriculum/FreeCodeCamp-Pandas-Real-Life-Example )
- [How to open Notebooks from GitHub using Google Colab. ](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb )
2020-08-13 12:00:20 +02:00
2020-12-16 00:37:30 -07:00
# --question--
2020-08-13 12:00:20 +02:00
2020-12-16 00:37:30 -07:00
## --text--
2020-08-13 12:00:20 +02:00
2020-12-16 00:37:30 -07:00
What does the `loc` method allow you to do?
## --answers--
2021-02-06 04:42:36 +00:00
Retrieve a subset of rows and columns by supplying integer-location arguments.
2020-12-16 00:37:30 -07:00
---
Access a group of rows and columns by supplying label(s) arguments.
---
Returns the first `n` rows based on the integer argument supplied.
## --video-solution--
2