Chapter 3

Getting Graphic

IN THIS CHAPTER

check Using graphs to find patterns

check Learning base R graphics

check Graduating to ggplot2

Data visualization is an important part of statistics. A good graph enables you to spot trends and relationships you might otherwise miss if you look only at numbers. Graphics are valuable for another reason: They help you present your ideas to groups.

This is especially important in the field of data science. Organizations rely on data scientists to make sense of huge amounts of data so that decision-makers can formulate strategy. Graphics enable data scientists to explain patterns in the data to managers and to nontechnical personnel.

Finding Patterns

Data often resides in long, complex tables. Often, you have to visualize only a portion of the table to find a pattern or a trend. A good example is the Cars93 data frame, which resides in the MASS package. (In Chapter 2, I show you how to put this package into your R library.) This data frame holds data on 27 variables for 93 car models that were available in 1993.

Figure 3-1 shows part of the data frame in the Data Editor window that opens after you type

> edit(Cars93)

FIGURE 3-1: Part of the Cars93 data frame. ...

Get Statistical Analysis with R For Dummies now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.