From ded962ef9ee8f6f4b4ad4dabd6b7ad2486421295 Mon Sep 17 00:00:00 2001 From: Ray Johnson Date: Mon, 27 Apr 2020 08:43:00 -0500 Subject: [PATCH] Data Analysis Example A, Shape Property of DataFrames (#38654) --- .../data-analysis-example-a.english.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/data-analysis-example-a.english.md b/curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/data-analysis-example-a.english.md index 8a51e65cbe..604bc7a080 100644 --- a/curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/data-analysis-example-a.english.md +++ b/curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/data-analysis-example-a.english.md @@ -14,12 +14,13 @@ videoId: nVAaxZ34khk ```yml question: - text: Question + text: 'What does the shape of our dataframe tell us?' answers: - - one - - two - - three - solution: 3 + - 'The size in gigabytes the dataframe we loaded into memory is.' + - 'How many rows and columns our dataframe has.' + - 'How many rows the source data had before loading.' + - 'How many columns the source data had before loading.' + solution: 2 ```