GGR274 Lab 9: Tell us a stroy! (Part 1)#


Introduction#

From this week, you’ll train your ability of result interpretation during lab.

  • This is part 1 of the communication exercise. You will identify one important insight from a previous tutorial or assignment and prepare a presentation in this tutorial. You will then communicate your story in class during the next tutorial (lab 10), and improve your illustration in the last tutorial (lab 11).

Logistics#

This lab notebook is submitted by next Thursday (March 20) 23:59, containing the following:

  • The code to produce the visualization plot, i.e., dataset loading and data analysis;

  • One presentation slide containing the figure;

  • A one page write-up explaining why you picked the chart and why the audience should care.

Submission instructions:

  1. Download this file (Lab_9.ipynb) from JupyterHub. (See our JupyterHub Guide for detailed instructions.)

  2. Submit this file to MarkUs under the lab09 assignment. (See our MarkUs Guide for detailed instructions.)

Marking scheme#

You’ll get half point if you submit the notebook with all the questions completed. You’ll get the other half point if you attend your lab section. You TA will be checking your submission and recording your attendance.


Create a data vizualization#

  1. Identify an interesting question relevant to any dataset seen in class, tutorials or assignments thus far. This could be your project question (recommended) or another question.

  2. Create one data vizualization that you think answers the question. Your vizualization should fill the screen, and have a large clear title. The title should communicate the key piece of information that you will be presenting.

  3. You will give a 1 minute lightening presentation next tutorial (lab 10).

1. Write some codes to prepare the data#

  • Load necessary packages

  • Load dataset

  • Data cleaning (selecting the important columnes, reclassify the values, …)

## Write your code here

2. Plot the data#

  • Use dataframe.plot or matplotlib.pyplot package to plot your data

  • Select an appropriate way to plot (box, histogram, line, …)

## Write your code here

3. Guidance for presentation#

Imagine you are giving a talk to answer the research question. You have come to a point in the talk where you are going to use the vizualization.

Speaker says: “The key point is that ______________________________________.”

(Summarize one main idea communicated by your vizualization)

Speaker says, “Here we see ________________________________.”

(Summarize one interesting feature of your vizualization)

You will present your visuliazation in next class.

4. Write-up#

Write a short document (500 words max.) explaining your choice of the question and visualization for this communication exercise.

Write the document here