Dot Charts - R Base Graphs


Previously, we described the essentials of R programming and provided quick start guides for importing data into R.


Here, we’ll describe how to draw a Cleveland dot plot in R.


Pleleminary tasks

  1. Launch RStudio as described here: Running RStudio and setting up your working directory

  2. Prepare your data as described here: Best practices for preparing your data and save it in an external .txt tab or .csv files

  3. Import your data into R as described here: Fast reading of data from txt|csv files into R: readr package.

Here, we’ll use the R built-in mtcars data set.

Data

We’ll use mtcars data sets. We start by ordering the data set according to mpg variable.

mtcars <- mtcars[order(mtcars$mpg), ]

R base function: dotchart()

The function dotchart() is used to draw a cleveland dot plot.

dotchart(x, labels = NULL, groups = NULL, 
         gcolor = par("fg"), color = par("fg"))

  • x: numeric vector or matrix
  • labels: a vector of labels for each point.
  • groups: a grouping variable indicating how the elements of x are grouped.
  • gcolor: color to be used for group labels and values.
  • color: the color(s) to be used for points and labels.


Dot chart of one numeric vector

# Dot chart of a single numeric vector
dotchart(mtcars$mpg, labels = row.names(mtcars),
         cex = 0.6, xlab = "mpg")

# Plot and color by groups cyl
grps <- as.factor(mtcars$cyl)
my_cols <- c("#999999", "#E69F00", "#56B4E9")
dotchart(mtcars$mpg, labels = row.names(mtcars),
         groups = grps, gcolor = my_cols,
         color = my_cols[grps],
         cex = 0.6,  pch = 19, xlab = "mpg")

Dot chart of a matrix

dotchart(VADeaths, cex = 0.6,
         main = "Death Rates in Virginia - 1940")

Infos

This analysis has been performed using R statistical software (ver. 3.2.4).


Enjoyed this article? I’d be very grateful if you’d help it spread by emailing it to a friend, or sharing it on Twitter, Facebook or Linked In.

Show me some love with the like buttons below... Thank you and please don't forget to share and comment below!!
Avez vous aimé cet article? Je vous serais très reconnaissant si vous aidiez à sa diffusion en l'envoyant par courriel à un ami ou en le partageant sur Twitter, Facebook ou Linked In.

Montrez-moi un peu d'amour avec les like ci-dessous ... Merci et n'oubliez pas, s'il vous plaît, de partager et de commenter ci-dessous!





This page has been seen 76183 times