Statistical Analysis with R For Dummies
Book image
Explore Book Buy On Amazon
Dot charts are yet another way of visualizing data in the following table. Noted graphics honcho William Cleveland believes that people perceive values along a common scale (as in a bar plot) better than they perceive areas (as in a pie graph). So he came up with the dot chart, shown in the figure.

Types and Frequencies of Cars in the Cars93 data frame

Type Frequency
Compact 16
Large 11
Midsize 22
Small 21
Sporty 14
Van 9
stats-r-dot-chart2
Dot chart for the data in the table.

Looks a little like an abacus laid on its side, doesn't it? This is one of those infrequent cases where the independent variable is on the y-axis and the dependent variable is on the x-axis.

The format for the function that creates a dot chart is

> dotchart(x, labels, <em>arg1, arg2 …</em>)

The first two arguments are vectors, and the others are optional arguments for modifying the appearance of the dot chart. The first vector is the vector of values (the frequencies). The second is pretty self-explanatory — in this case, it's labels for the types of vehicles.

To create the necessary vectors, you turn the table into a data frame:

type.frame <- data.frame(table(Cars93$Type)) > type.frame Var1 Freq 1 Compact 16 2 Large 11 3 Midsize 22 4 Small 21 5 Sporty 14 6 Van 9 After you have the data frame, this line produces the dot chart: > dotchart(type.frame$Freq,type.frame$Var1) The type.frame$Freq specifies that the Frequency column in the data frame is the x-axis, and type.frame$Var1 specifies that the Var1 column (which holds the car-types) is the y-axis.

This line works, too:

> dotchart(type.frame[,2],type.frame[,1]) Remember that [,2] means "column 2" and [,1] means "column 1."

About This Article

This article is from the book:

About the book author:

Joseph Schmuller, PhD, has taught undergraduate and graduate statistics, and has 25 years of IT experience. The author of four editions of Statistical Analysis with Excel For Dummies and three editions of Teach Yourself UML in 24 Hours (SAMS), he has created online coursework for Lynda.com and is a former Editor in Chief of PC AI magazine. He is a Research Scholar at the University of North Florida.

This article can be found in the category: