Skip to content

Latest commit

 

History

History
53 lines (35 loc) · 2.62 KB

lesson1.md

File metadata and controls

53 lines (35 loc) · 2.62 KB

Week 3 Lesson 1

Introduction to Data Visualization

In this lesson, you will start by learning about the ideas and results of those considered masters in the art of information visualization. Next, you will learn to work with Matplotlib, which is the standard plotting library for Python programs. You will use an iPython notebook to explore the basic Matplotlib Python statements to make and annotate a simple plot. You also will be introduced to the Seaborn plotting library, which enhances the power of MatPlotlib by simplifying the creation of aesthetically attractive visualizations and introducing new plot types. Finally, you will learn to make and interpret scatter plots by using Matplotlib. Scatter plots can highlight trends or correlations between two or more columns of a given data set.

Objectives

By the end of this lesson, you will:

  • Understand the power of visualizations in conveying information.
  • Understand the importance of aesthetics in communicating data.
  • Understand the perils of presentation slides to communicate technical information.
  • Understand how to use Matplotlib within an iPython notebook to make a simple, inline plot.
  • Understand how to use Matplotlib to label the plot axes and to apply a title to a plot
  • Understand how to use Matplotlib to change the plot limits to increase the impact of a plot.
  • Understand how to use Seaborn within an IPython Notebook.
  • Understand how to use Matplotlib to make a scatter plot.
  • Understand the difference between positive, negative, and null correlations.
  • Understand how to graphically identify outliers.
  • Understand how to overplot and label multiple columns on a single scatter plot.

Time Estimate

Approximately 3 hours.

Optional Additional Readings####