FAIL!

May 26, 2019

These are textbook examples of the presentation of data in ways that encourage bad habits.

No columns

This might look like a data frame, but the individual columns have no meaning and the rows are not a unit of observation.

Should be:

person time sex
id792 4.3 F
id796 4.3 F
id797 4.5 M

… and so on. Make it a habit to show a unique identifier which facilities tracking back mistakes and joining with other data.

No spreadsheet

A data frame with a single variable should still be represented as a table. Among other things, this makes it easier to read in the data with software.

Confusing names

There are two header rows and so the time columns can’t be referenced in the usual way.

Also, it’s hard to read in these data.

No column names

These data are actually organized by columns, but notice how the column names are shown inline, e.g. with \(\sigma = 5\).

We all know what the authors are trying to do here, but they have formatted the presentation the same way as data. That’s the basic mistake. But taking that mistake as an intention to display data, a proper presentation should be

“Data”

background n xbar s
red 35 3.39 0.97
blue 36 3.97 0.63

Codebook

  • n: number of observations
  • xbar: sample mean
  • s: sample standard deviation
  • background: the color of ….

Where the data came from, perhaps even where the original data are stored.

No codebook

Omitting the codebook is practically universal in intro textbooks. Sometimes there is a narration explaining the data, but this is not identified as a separate file as it should be to form good habits.

There should be a reference to the meta-data for a table. Some possibilities:

  • A link to a text/PDF/etc file
  • A package::dataset name in R.
  • A print-out of a file, making it clear that it’s a presentation of a separate file, not part of the data file.
  • If you’re using spreadsheets to hold data tables and you want there to be only one link, put the metadata in a separate tab from the data. (But remember, “tabs” are not a database concept.)

Missing data

Use a consistent format for missing data. NA is standard and works well with graphics and statistics software.

Many problems!

List the many ways in which this “table” violates the conventions for effective data organization.

  1. The rows should be turned into columns.
  2. There are no variable names
  3. If we stipulate that “temperature” is a variable name, the units (deg F) should be included in the metadata, not the variable name.
  4. Time should be a variable and it should be stored in a machine-readable format. The very simplest uses numbers (e.g. 8.00) but others are available depending on the software.
comments powered by Disqus