Day 16 Pre-class Assignment: Introduction to Data Visualization

Contents

Day 16 Pre-class Assignment: Introduction to Data Visualization#

✅ Your name here

#

Goals for Today’s Pre-Class Assignment#

By the end of this assignment, you should be able to:

  • Understand the best practices of data visualization

  • Understand what types of graphs are available and when to use them

  • Understand how to choose the right data visualization tools

  • Understand how to interact critically with datasets

Assignment instructions#

In today’s assignment we’ll be developing our ability to make effective plots. The most important lesson that we want you to come away with is:

This assignment is due by 7:59 p.m. the day before class, and should be uploaded into the “Pre-class assignments” appropriate submission folder. If you run into issues with your code, make sure to use Teams to help each other out and receive some assistance from the instructors. Submission instructions can be found at the end of the notebook.

Plots are visual stories. A good plot conveys a message that is both convincing and easy to understand.#

Part 0#

Note that this content is a duplicate of the notes on the course website.

As part of today’s pre-class assignment, you will make a short slide deck to present your project ideas to your colleagues. If you’re still having issues coming up with a project idea email your instructor and/or come to office hours and let them know. We’re here to help brainstorm! Do this sooner than later so that they have time to help you out. Just a reminder: if you find a better idea later on in the course and you want to switch to a different project, it is OK to do so. However, please discuss this with the instructor first to ensure adequate time and content.

For the pre-class assignment, you’re expected to prepare 1-3 slides for your proposed project idea. In class, you will be expected to give a very short presentation to a classmate (or two) using these slides. Here is one possible way to construct your slides:

Slide 1: Motivations: What question(s) do you want to answer? Why do you want to study this project?

Slide 2: Model/Computing Method: Briefly describe what model or computational method you plan to use for your project. The class will cover more modeling material as the semester progresses and you might need to use techniques that go beyond the scope of the course so, for now, a rough sketch will do.

Slide 3: Python Tools: What tools do you expect to use for data manipulation and visualization (plots)?

Slides#

I have created a shared google drive slide deck. You can add a section for yourself, and then add your slides after that. Please note you should be prepared to present these slides to your classmates so that you can discuss any concerns you might have about your idea and get their feedback.


Part 1. Best Practices of Data Visualization#

Broadly, a visualization is a visual representation of information. When it comes to data visualizations, Alberto Cairo defines them as “a display of data designed to enable analysis, exploration, and discovery.” Data visualizations aren’t intended mainly to convey messages that are predefined by their designers. Instead, they are often conceived as tools that let people extract their own conclusions from the data (The Truthful Art: Data, Charts, and Maps for Communication pg. 31).” In this preclass, you will learn about the best practices when it comes to creating data visualizations and how to make effective visualizations.

What makes a good graph?#

Edward Tufte talks about what goes into a good visualization in his book “The Visual Display of Quantitative Information”. Visualizations of graphical excellence share these qualities according to Tufte (pg.51):

  • Well-designed presentation of interesting data with substance, statistics, and design

  • Complex ideas are communicated with clarity, precision, and efficiency

  • Gives the viewer the greatest number of ideas in the shortest amount of time by using the least ink and space

  • Multivariate (show mulitple variables)

  • Telling the truth about the data

Let’s examine some visualizations to see if they fit these criteria.

This graph from Climate Central shows the deviation in average temperature from 1961 to 1990 due to climate change over the last 1000 years. It contains information from tree rings, ice cores, and historical records all shown in blue and thermometer readings in red. Tufte’s first criterion is a bit subjective, but one can argue that it’s very well-designed, the data is compelling, and the design choices are clear. The data is complex, but the meaning is clear. The sharp trend in red leads the reader to ask questions of the visualization. There are certainly multiple variables being plotted. We can’t say for certain if the visualization is telling the truth without deeper investigation into the creators of the visualization, but the Earth is certainly warming due to climate change. This visualization passes all of Tufte’s criteria for graphical excellence.

This second graph is courtesy of the subreddit r/dataisugly. The intention of this graph was to show the conditions at which exoplanets form. Let’s apply Tufte’s criteria once again. This graph is not well-designed. The data being shown is certainly complex, but it is not conveyed in a clear, precise, or efficient manner. The only ideas it gives the viewer are to close the tab and ask themselves how something like this could be created. It is overly-multivariate, trying to show at least six different variables. From a astronomer’s perspective, the graph is telling the truth, but not in a clear fashion. Please don’t make graphs like this!

How to avoid making graphs like the one above#

Tufte provides some guidelines on graphical integrity: how to make accurate, truthful, and efficient visualizations (pg. 77):

  • The representation of numbers should be directly proportional to the numerical quantities represented (scaling by the area of shapes can be accidentally misleading if done incorrectly).

  • Clear, detailed, and thorough labeling should be used to defeat distortion and ambiguity.

  • Write out explanations of the data on the graph itself.

  • Label important events in the data.

  • In time-series graphs of money, use standard units (meaning normalized units) and account for inflation

  • The number of dimensions represented should not exceed the number of dimensions in the data

  • Do not quote data out of context.

A note on ethics#

Some of these guidelines seek to instruct in how to make good visualizations, but others go into the ethics of data visualization. Data visualizations are a powerful tool to make arguments and sway opinions, and it is very easy to mislead others, either accidentally or purposefully, with the design choices you make. Cairo states, “If someone hides data from you, it’s probably because he has something to hide (pg. 47).” Make sure your design choices in your graphics don’t accidentally mislead the viewers by saying something you didn’t intend.


Part 2. Choosing the Right Tools for the Job#

Now that you have a basic understanding of some of the best practices when it comes to data visualization, you’re probably wondering how to put these principles into practice. One important factor to consider is choosing the right type of graph for your data. Cairo has some good advice to get started (pg. 124-125):

  1. Think about the task or tasks you want to enable, or the message that you wish to convey. Do you want to compare, to see change or flow, to reveal relationships or connections, to envision temporal or spatial patterns and trends? We could summarize this point with a sentance that sound tautological, but isn’t: plot what you need to plot. And if you don’t know what it is that you need to plot yet, plot many features of your data until the stories they may hide rise up.

  2. Try different graphic forms. If you have more than one task on your wish list, you may need to represent your data in several ways.

  3. Arrange the components of the graphic so as to make it as wasy as possible to extract meaning from it. Whenever it’s appropriate, add interactivity to your visualization so people can organize the data at will.

  4. Test the outcomes yourself and with people who are representative of your audience - even if it is in a non-scientific, non-systematic manner.

With this in mind, let’s explore some of the many types of graphs.

✅  2.1 Explore The Data Visualization Catalogue. Are there any types of graphs that stand out to you? Pick one and describe how it represents data. When would be a good time to use it?#

Put your answer here

Practice with Statistical Graphs#

While there are many tools for making visualizations out there, some better than others, matplotlib, though limited at times, is still a very useful tool to make nice-looking graphs. Let’s get some more practice with some of its capabilities. We’ll come back to these graphs in the in-class assignment later.

Run the code below and, when necessary, fill in the pieces needed to make the code run by making reasonable choices.

# imports
import numpy as np
import matplotlib.pyplot as plt
# First, let's generate some data to plot
N_points = # fill in the number of points to plot
n_bins =  # fill in the number of bins

x = np.random.randn(N_points) # choosing values from a normal distribution

# Now, let's plot the histogram
plt.figure(figsize=[10,6])
plt.hist(x, bins=n_bins)
plt.xlabel('Value')
plt.ylabel('Frequency')
plt.title('A 1D Histogram')

✅  2.2 Try changing the number of points and number of bins. Experiment with a variety of combinations. What happens to the shape of the histogram as you varying these parameters?#

# put your code here

✅  2.3 Try modifying your histogram to outline the bars in black and change the color of the bars themselves. You might need to do a bit of googling and/or read the documentation!#

# put your code here

✅  2.4 Add a vertical line showing the mean value of the distribution. Choose a color that shows up well on your histogram!#

# put your code here

Part 3. Some Notes When Dealing with Datasets#

Making nice visualizations out of your data is important, but the real focus is on the data itself. Not all datasets come in nicely wrapped packages; sometimes you need to put in a lot of work to get it into a format that can be visualized. Part of that formatting is understanding the data itself. Make sure to read the documentation/header/description when you download the data and understand what the creator meant by each column title; this might be different than what you interpret the titles to mean, and it can have significant effects on the results your visualizations show.

Once you understand the data, it’s time to get it in shape. There are three main categories to this process: binning, filtering, and smoothing.

  1. Binning - This refers to grouping the data into different sections. An example could be grouping states by region (ie Midwest, Northeast, South, Central) if you had a data on the 50 states.

  2. Filtering - This refers to creating subsets of data. A large dataset may include columns that isn’t of any use to the project you’re working on. In order to make it more manageable, it’s totally fine to get rid of it by filtering that portion out. pandas is a great tool for this kind of data manipulation.

  3. Smoothing - This refers to getting rid of noise - statistical variance - in your data. Examples of this include calculating averages or fitting curves to show the behavior of certain variables.

✅  3.1 When might you need to engage in these processes? Give an example for each category.#

Put your answer here.


Part 4. Telling a Story with a Plot#

At the beginning of this notebook, the plots tell a (visual) story. In this section, we’ll go through an example of determining a plot’s story. Below is a figure showing information about fuel efficiency.

✅  4.1 Look at the figure and write down what information (or what story) the plot is telling you.#

Here are some tips for things to look for:

  • General trendlines. What are the overall trends you see in the data?

  • Places with dramatic changes in the slope or departures from the “normal.”

  • (For data with multiple variables) Places where one of the variables does (or doesn’t) exist.

Write down what you think the story of this figure is.

🛑 STOP. MAKE SURE YOU COMPLETE THE ABOVE QUESTION BEFORE LOOKING AT THE NEXT PART.#

Looking at this plot, there are a few things that you might have noticed.

  • SUV wasn’t a category in this dataset before 1999.

  • (Median) Fuel efficiency for trucks actually appears to have decreased in the mid/late 80s.

But the biggest thing to notice is that the fuel efficiency of all automobiles has been increasing since the late 2000s/early 2010s. The plot would suggest that there was some kind of change that occurred during this period.

✅  4.2 Do you find this plot easy to read? Is it convincing?#

Write down whether you think the plot is easy to read/convincing.


Part 5. (Re)Introducing Seaborn#

Seaborn is an excellent package for making more sophisticated plots. Seaborn has many built-in features, and many of the default parameters are set up in an aesthetically pleasing way. There is also an extensive gallery of examples.

5.0 How does Seaborn handle data?#

When exploring Seaborn documentation, you may notice that it handles data differently than you have seen before! For exploration purposes, Seaborn actually has some default datasets that you can load directly with the Seaborn load_dataset() function. These default datasets are actually Pandas dataframes that come with Seaborn. How do we know what these datasets are and how to access them?

Run the code below to import seaborn (this is a new import command!) and then display the names of available datasets.

import seaborn as sns # import Seaborn

sns.get_dataset_names() # display all of the names of the built-in datasets that Seaborn has

Now that you know the names of the default datasets you can use to explore what Seaborn can do, let’s use one as an example (we’ll use “mpg”)!

Run the code in the cells below. The first line loads the dataset and the second creates a figure using Seaborn.

sns.set_theme(style="white") # sets the visual theme for Seaborn

mpg = sns.load_dataset("mpg") # loads the 'mpg' default dataset

mpg.head()
# Plots some of the data using Seaborn's relplot function!
sns.relplot(x="horsepower", y="mpg", hue="origin", size="weight",
           sizes=(40, 400), alpha=.5, palette="muted",
           height=6, data=mpg)

✅  5.1 What stands out to you? What do you think the story of this figure is?#

Write down what you think the story being told in this plot?

✅  5.3 What do you think the story is for the plot you made?#

Write down what you think the story being told in this plot?


Part 6. Making your Figure for In-Class#

For the upcoming in-class assignment, you will be working with your group to create the best plot possible (based on the measures discussed above).

✅  6.1 Use materials from Day 12 (Finding Resources Online) or data you might have found for your semester project to create a plot!#

You can use Seaborn or Matplotlib, and you should put your plot in a slide, which you will present to your group in class.

NOTE: If you are using Seaborn, you will need to load your data into a Pandas dataframe and then you can use Seaborn plotting functions with your dataframe as the data input in the plotting function.

### AN EXAMPLE WITH SEABORN AND NON-DEFAULT DATA ###
import pandas as pd
my_dataframe = pd.read_csv('this_is_cool_data.csv')

sns.relplot(x="my_x_column_name", y="my_y_column_name", hue="a_different_column_name", size="another_column_name",
            sizes=(40, 400), alpha=.5, palette="muted",
            height=6, data=my_dataframe)
# Write code for making your plot here using whatever dataset you chose

Assignment wrap-up#

Please fill out the form that appears when you run the code below. You must completely fill this out in order to receive credit for the assignment!

from IPython.display import HTML
HTML(
"""
<iframe 
	src="https://cmse.msu.edu/cmse801-pc-survey" 
	width="800px" 
	height="600px" 
	frameborder="0" 
	marginheight="0" 
	marginwidth="0">
	Loading...
</iframe>
"""
)

Congratulations, you’re done!#

Original content for this assignment was created by Alexa Gordon#

Sources#

  • The Truthful Art: Data, Charts, and Maps for Communication by Alberto Cairo

  • The Visual Display of Quantitative Information by Edward Tufte

  • CMSE 402 assignments

  • Other links throughout the assignment

Copyright © 2023, Department of Computational Mathematics, Science and Engineering at Michigan State University, All rights reserved.