Module 2 Working with Data

2.1 Data Management

In this session

  1. Learning Objectives
  2. Value Statement
  3. File Naming
  4. Creating a Working Folder Structure
  5. Metadata
  6. Version Control
  7. Summary

2.1.1 Data Management: Learning Objectives

  1. Learn good practices to store, name, and keep track of different versions of your data files.

  2. Understand the importance of metadata and use a template to create your own format.

2.1.2 Data Management: Value Statement

  1. Learning how to properly store, name, and version control your files is the basis to developing systematic procedures to analyze and visualize data.

  2. Creating metadata files is essential to capturing key information about the context and content of a data file. Every data file should be accompanied by its metadata, which provides data about data. By doing this, you can enable others to better understand your data and work more efficiently.

2.1.3 File Naming

  1. While there is not a unique way to properly name your files, it is important to be consistent within your organization to help your colleagues recognize which data each file contains. Some of the best practices to do this include:
    1. Use descriptive names that would make sense to any reader. For example, don’t use acronyms or abbreviations.
    2. Avoid the use of special characters, such as !@#$%^&*() and others, as these are sometimes not supported by some software.
    3. Make consistent use of capitalization. Are you going to use capital letters in every word? Maybe only at the beginning of the file name? For example: My_File1.xlsx vs. my_file1.xslx. While neither is wrong, it is good to choose one format and stick to it
    4. Use underscores instead of blank spaces, just as in the example above.
    5. If you want to keep track of versions, don’t use endings such as “final”, “v5”, etc. Instead, we suggest that you either use the date in format YYYYMMDD, or use a version control system, as we will see in a later section.
    6. Don’t start a file name with a number, though it is fine to use numbers elsewhere in the name, as in the examples above.

2.1.4 Creating a Working Folder Structure

  1. It is important to create a folder structure that will allow you and your colleagues to easily organize and retrieve any files that you are working with.

  2. There are some key principles to creating an efficient folder structure:

    1. Store your raw data in its own folder. Every time that you get new data, the first thing you should do is to create a backup by adding it to your raw data folder. This will allow you to always be able to come back to the original file and look for processing errors.
    2. Create a separate folder for “working” files. These are the files where you will change column names, clean data errors, and merge multiple files when necessary. For example, if your team performs annual assessments of reef fish biomass, you may want to store separate files for each year, but combine them in a “master” file, which should be located in your “working” files folder.
    3. Having a consistent file structure across projects, such as folders for script outputs or figures, can make it easier for colleagues and collaborators to understand where to find the files they need.
  3. In the example file structure below, each project has its own folder. Within each project folder, there are folders for code, data, and output files. The Code folder could store scripts for data cleaning or analysis, the Data folder has subfolders for the raw dataset and a version that has been tidied, and the Output folder could store plots or other results.

2.1.5 Metadata

  1. Metadata are documentation describing the content, context, and structure of data to enable future interpretation and reuse of the data. Generally, metadata describe who collected the data, what data were collected, when and where they were collected, and why they were collected so that anyone who looks at the data can understand what they mean.

  2. Along with this class, we provide you with a metadata template, downloadable here. Please notice that this template can be adjusted to reflect your organization’s needs, therefore some of the requested information might change accordingly. Below, you will find an example of a filled out metadata template for the data that we will be using in Module 3.

  3. Make sure to always share the metadata along with your data files. Some recommendations to do this include:

    1. If working in Excel, create a new tab named “metadata” and put the information there.
    2. If working in other data formats, create a new file with the metadata, store it in the same folder, and name it exactly the same as the data file, adding “_metadata” at the end.

2.1.6 Version Control

  1. Version control is the process of tracking and organizing the changes you make to files over time. Throughout the lifetime of a project, using a system to keep track of different versions of your files and how and why you changed them can make it easier to revert to earlier versions of files or work collaboratively on the same files. Software like Git and the associated interface GitHub provide a version control framework, particularly useful for code scripts. If you are interested in learning more about Git and GitHub, this lesson and these modules (Git collaboration, Git branches) from a course by NCEAS that focuses on using Git with R, are some starting points. For a broader overview of reproducible science, including the utility of version control, see this paper by Lowndes and colleagues.

2.1.7 Data Management: Summary

  1. Well done! Having a good folder structure, file naming practices, and version control capabilities are valuable tools to enable easy collaboration and to streamline workflows.

  2. Remember that using metadata is extremely important, this is the only way to make sure that you and your team know exactly what is included in a data file. Never share a database without its corresponding metadata.

2.2 Data Cleaning

In this session

  1. Learning Objectives
  2. Value Statement
  3. Benefits of Clean Data
  4. Data Types
  5. Best Practices
  6. Common Cleaning Procedures
  7. Summary

2.2.1 Data Cleaning: Learning Objectives

  1. Learn the benefits of having clean data sets and best practices for organizing and naming in data sheets.

  2. Learn best practices for cleaning data files.

2.2.2 Data Cleaning: Value Statement

  1. Maintaining clean data sets reduces errors, facilitates searching and analysis, and eases reuse.

2.2.3 Benefits of Clean Data

  1. Let’s start by defining what we mean by “clean data”. Clean data are as consistent, complete, and accurate as possible. Cleaning data is the process of reviewing data sets to standardize formatting, remove duplication, and fix or remove inaccuracies before using or analyzing the data set. Creating clean data sets involves steps in setting up your data organization and in reviewing data before analysis.

  2. Having clean data has many benefits:

    • Reduces errors from redundant updates
    • Enforces data integrity
    • Helps you and future researchers handle large, complex datasets
    • Enables powerful search filtering
  3. Much has been written on effective data management to enable reuse of data. The following two papers offer words of wisdom:

2.2.4 Data Types

  1. Before we get into cleaning data, let’s go over the different ways computers can classify data. The primary data types are

    • Numeric: integers, decimals

      • Any kind of numeric field, except Boolean (binary or true/false statements). Examples include integer, double, floating, etc.
    • Text: strings, including special characters

    • Yes/no, true/false

      • Also known as logical or boolean
    • Spatial location: coordinates, country name, city name, ZIP code

    • Date and time

2.2.5 Data Cleaning: Best Practices

Data sheet set-up, column names, and data values

  1. In brief, some of the best practices to follow are:

    • Design your tables to add new observations as rows, not columns. A column should be only one variable and a row should be only one observation.

      For example, Table 1 below does not follow this design. The highlighted box has information for two types of variables in it and the Observations column has many rows with multiple observations listed. In Table 2, the data has been reentered so that each column has only one data type - see the moved note in orange - and the Species column now has only one observation per row.

    • Name columns in a clear way that is easy for both people and computers to interpret.

      • Use descriptive column names that would make sense to any reader. For example, don’t use acronyms or abbreviations.

      • Avoid the use of special characters, such as !@#$%^&*() and others.

      • Make consistent use of capitalization. Are you going to use capital letters in every word? Maybe only at the beginning of the column name?

      • Use underscores instead of blank spaces.

        For example: Number of fish → Number_of_fish

    • When entering data, make sure there is only one type of value in each column, for example all numeric values or all character strings.

    • As a good practice, we recommend that you and your organization agree on a format and follow it diligently.

2.2.6 Common Cleaning Procedures

  1. When analyzing data, it is important to make sure that there has been a thorough check of the records to ensure that they are as clean and ready as possible. While there is no straightforward way to make sure that all data is clean (given the unique nature of each dataset), there are some guidelines that can be followed.

  2. This first set of recommendations deals with the overall structure of the database:

    • Verify that your column names follow the conventions stated in the section above.

    • Verify that there are no empty columns in your dataset, and if there are, eliminate them.

    • If you have a column with the date, verify that it is in the right format and that your software (e.g., Excel, Access, Tableau) is reading it accordingly.

      • Word of caution: when working with international collaborators, check the format of dates. Many places use DD/MM/YYYY as the standard date format. The US uses MM/DD/YYYY as the standard date format.

      • Tableau can recognize different date formats. Sometimes it is easier to capture data in 3 separate columns (year, month, and day), which can then be linked together directly in Tableau.

    • Verify that your database is in long format, as opposed to wide format.

      • Wide format is a condensed way of presenting data but contains observations in both the column headers and the entered values. Also called block format, wide format is sometimes how data is collected in the field and can be an efficient way of presenting data in a table in a report but is less useful for analysis.

      • In long format, columns only include the type of data and not any information about your actual observations. Having information about your observations in the column headers makes it hard to use that information when analyzing data in Tableau or coding software like R.

      • The same data set often has more rows and fewer columns when in long format compared to wide format, as you can see in the example below. Wide format, shown in Table 1, presents the data efficiently - we can see the whole table - but contains information about the type of meal and type of food in the column headers, which is moved to the rows in long format, shown in Table 2.

  1. Next, let’s explore some common methods to verify your individual data records:

    • If the column is numeric:

      • Verify that there are no text values.

      • Plot a histogram with binned values in the x-axis and frequency in the y-axis. If there are very few observations for very low/high values, those are likely outliers or mistakes in the data, like the single high value in the example below. Find them in your raw data and decide whether it is something you should include.

    • If the column is text:

      • Verify that there are no numeric values.

      • Create a list with all the unique elements and sort them out in alphabetical order. From this list, verify that there are no leading or trailing spaces, misspellings, or typos. If you find any, go back to your raw data and correct accordingly.

    • Make sure to distinguish between values that are zero and data that was not collected. Zeros should be used for values that were measured and found to be zero, for example the number of fish on a transect you swam but saw no fish. Data that was not collected, for example the number of fish you saw at a site you skipped sampling, should be recorded as NA or another symbol you use consistently throughout your data set.

2.2.7 Data Cleaning: Summary

  1. Congratulations! You’ve now cleaned your data set, storing and presenting it in a way that will be easier to handle, reduce errors, and be easier for others to interpret - both future collaborators and those within your organization. Now that you’ve cleaned your data set you are ready to start analyzing it.

2.3 Normalization and Standardization

In This Session

  1. Learning Objectives
  2. Value Statement
  3. Introduction to Tidy Data
  4. Normalization
  5. Data Organization
  6. Standardization
  7. Exercise
  8. Summary

2.3.1 Normalization and Standardization: Learning Objectives

  1. Understand the basics of tidy data, particularly normalization and standardization (the processes of normalization and standardization we refer to here are specific to data management and distinct from the other meanings involving rescaling and recentering data as used in statistics).

  2. Learn how to design and create effective data tables.

2.3.2 Normalization and Standardization: Value Statement

  1. Normalizing and standardizing data eases analysis and reduces errors. It is also the basis for having datasets that can be easily updated as more data becomes available.

2.3.3 Introduction to Tidy Data

  1. Tidy data describes a method of organizing databases and data tables that makes data analysis, searching, and reuse easier.

  2. The tidy data approach is also known as the relational data model, which is used by relational databases like mySQL, Microsoft Access, and Oracle to store and organize data. If you’d like a more detailed look at the relational data model, see this lesson by NCEAS.

  3. You don’t have to have a large and complex data set or be using a relational database, however, to see the benefits of having tidy data!

2.3.4 Normalization

  1. One characteristic of tidy data is normalization - a process of streamlining data structures and reducing redundancy. Normalized data are essentially data in the long format we discussed in the previous session: each column contains only one type of measurement, each row contains one observation, and data are stored in different tables such that each data point appears only once in the database.

  2. Three practices to keep in mind when designing your tables are:

    • Add rows, not columns, for new observations.

    • Put values for only one variable in each column.

    • Record each piece of data only once in the database.

  3. We covered the first two points in the previous session when discussing best practices for designing data tables. The third point addresses how you store your data in different tables and how they interact. To record each piece of data only once in your database, you need to have distinct collections of data stored in different tables that then link to one another.

    • As an example of separately storing distinct collections of data, say you visit several sites and do multiple dives at each site. On each dive, you record the fish you see and information about each fish, such as species and length. In this case, you would store information about the sites in one table, information about each dive in another table, and information about the fish recorded on each dive in a third table.
      • Storing data only once in a database makes it less likely that there will be errors, especially if you have to alter data later on. For example, if you want to change the format of site coordinates or if the taxonomy of one of the species you sample is updated, you will only have to change entries in one place rather than across multiple tables.
      • After you have normalized your data and identified the relevant tables (e.g., sites, species and dives), there needs to be an identifier that serves as the link between each set of tables. In the example below, the Dive number links the Fish info table and the Dive info table - to get information about the dive when analyzing fish, you can pull the data from the Dive info table for the dive of the correct number. Similarly, Site name links the Site info table and the Dive info table. The schematic below shows these tables and how they relate.

2.3.5 Data Organization

  1. Once you have your data tables normalized, make sure that they are arranged in a way that a computer can easily interpret.

    • Make sure that each table is stored separately. For example, if you are using a spreadsheet software, each table should have its own sheet or tab. Multiple tables on the same sheet are hard for software programs like Tableau to read in and understand.

    • Do calculations, like statistics or marginal sums, outside of your data spreadsheet. They are not observations, like the other rows, but rather data analysis.

2.3.6 Standardization

  1. Once you have your data organized in a tidy fashion, it’s time to make sure the actual data values are standardized. Standardizing data involves many of the data cleaning steps from the previous session:

    • Checking that you use consistent entries for the same data values (“Yes” vs. “Y” vs. “yes” → choose just one).

    • Checking for data points that are outside the realm of possibility and are likely to be errors, like a dog recorded as weighing 500 kg.

    • Verifying that all values within a column are the same data type.

2.3.7 Exercise

  1. Time to practice with an untidy data set! Use what you’ve learned about data cleaning to normalize and standardize the data set here. Download the tidied version here.

2.3.8 Normalization and Standardization: Summary

  1. Well done! Here is a checklist summarizing what we’ve learned about data organizing and tidying in this module. Now that you’ve learned about best practices for managing and storing data, it’s time to move onto Tableau.