From 1cb664cc38b81541a2beaf7e07b8d60e0be9b696 Mon Sep 17 00:00:00 2001 From: Ray Johnson Date: Tue, 12 May 2020 04:37:17 -0500 Subject: [PATCH] feat(learn): Data Analysis Example B - Using the 'Loc' Method (#38656) --- .../data-analysis-example-b.english.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/data-analysis-example-b.english.md b/curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/data-analysis-example-b.english.md index f6f6fa7f3d..b288f67bd3 100644 --- a/curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/data-analysis-example-b.english.md +++ b/curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/data-analysis-example-b.english.md @@ -14,13 +14,12 @@ videoId: 0kJz0q0pvgQ ```yml question: - text: Question + text: 'What does the loc method allow you to do?' answers: - - one - - two - - three - solution: 3 + - 'Retrieve a subset of rows and columns by supplying interger-location arguments.' + - 'Access a group of rows and columns by supplying label(s) arguments.' + - 'Returns the first n rows based on the integer argument supplied.' + solution: 2 ``` -