Introduction to DataExplorer

Boxuan Cui

2018-10-18

This document introduces the package DataExplorer, and shows how it can help you with different tasks throughout your data exploration process.

There are 3 main goals for DataExplorer:

  1. Exploratory Data Analysis (EDA)
  2. Feature Engineering
  3. Data Reporting

The remaining of this guide will be organized in accordance with the goals. As the package evolves, more content will be added.

Data

We will be using the nycflights13 datasets for this document. If you have not installed the package, please do the following:

install.packages("nycflights13")
library(nycflights13)

There are 5 datasets in this package:

If you want to quickly visualize the structure of all, you may do the following:

library(DataExplorer)
data_list <- list(airlines, airports, flights, planes, weather)
plot_str(data_list)

You may also try plot_str(data_list, type = "r") for a radial network.


Now let’s merge all tables together for a more robust dataset for later sections.

merge_airlines <- merge(flights, airlines, by = "carrier", all.x = TRUE)
merge_planes <- merge(merge_airlines, planes, by = "tailnum", all.x = TRUE, suffixes = c("_flights", "_planes"))
merge_airports_origin <- merge(merge_planes, airports, by.x = "origin", by.y = "faa", all.x = TRUE, suffixes = c("_carrier", "_origin"))
final_data <- merge(merge_airports_origin, airports, by.x = "dest", by.y = "faa", all.x = TRUE, suffixes = c("_origin", "_dest"))

Exploratory Data Analysis

Exploratory data analysis is the process to get to know your data, so that you can generate and test your hypothesis. Visualization techniques are usually applied.

To get introduced to your newly created dataset:

introduce(final_data)
rows 336,776
columns 42
discrete_columns 16
continuous_columns 26
all_missing_columns 0
total_missing_values 809,170
complete_rows 906
total_observations 14,144,592
memory_usage 94,560,448

To visualize the table above (with some light analysis):

plot_intro(final_data)

You should immediately notice some surprises:

  1. 0.3% complete rows: This means only 0.3% of all rows are not completely missing!
  2. 5.7% missing observations: Given the 0.3% complete rows, there are only 5.7% total missing observations.

Missing values are definitely creating problems. Let’s take a look at the missing profiles.

Missing values

Real-world data is messy, and you can simply use plot_missing function to visualize missing profile for each feature.

From the chart, speed variable is mostly missing, and probably not informative. Looks like we have found the culprit for the 0.3% complete rows. Let’s drop it:

Note: You may store the missing data profile with profile_missing(final_data) for additional analysis.

Distributions

Bar Charts

To visualize frequency distributions for all discrete features:

## 5 columns ignored with more than 50 categories.
## dest: 105 categories
## tailnum: 4044 categories
## time_hour: 6936 categories
## model: 128 categories
## name: 102 categories

Upon closer inspection of manufacturer variable, it is not hard to identify the following duplications:

  • AIRBUS and AIRBUS INDUSTRIE
  • CANADAIR and CANADAIR LTD
  • MCDONNELL DOUGLAS, MCDONNELL DOUGLAS AIRCRAFT CO and MCDONNELL DOUGLAS CORPORATION

Let’s clean it up and look at the manufacturer distribution again:

Feature dst_origin and tzone_origin contains only 1 value, so we should drop them:

Frequently, it is very beneficial to look at bivariate frequency distribution. For example, to look at discrete features by arr_delay:

## 5 columns ignored with more than 50 categories.
## dest: 105 categories
## tailnum: 4044 categories
## time_hour: 6936 categories
## model: 128 categories
## name: 102 categories

The resulting distribution looks quite different from the regular frequency distribution.

Histograms

To visualize distributions for all continuous features:

Immediately, you could observe that there are datetime features to be further treated, e.g., concatenating year, month and day to form date, and/or adding hour and minute to form datetime.

For the purpose of this vignette, I will not go deep into the analytical tasks. However, we should treat the following features based on the output of the histograms.

  • Set flight to categorical, since that is the flight number with no mathematical meaning:
  • Remove year_flights and tz_origin since there is only one value:

QQ Plot

Quantile-Quantile plot is a way to visualize the deviation from a specific probability distribution. After analyzing these plots, it is often beneficial to apply mathematical transformation (such as log) for models like linear regression. To do so, we can use plot_qq function. By default, it compares with normal distribution.

Note: The function will take a long time with many observations, so you may choose to specify an appropriate sampled_rows:

You may also view the QQ plot by another feature:

Correlation Analysis

To visualize correlation heatmap for all non-missing features:

You may also choose to visualize only discrete/continuous features with:

Principle Component Analysis

While you can always do plot_prcomp(na.omit(final_data)) directly, but PCA works better with cleaner data. To perform and visualize PCA on some selected features:

Slicing & dicing

Often, slicing and dicing data in different ways could be crucial to your analysis, and yields insights quickly.

Boxplots

Suppose you would like to build a model to predict arrival delays, you may visualize the distribution of all continuous features based on arrival delays with a boxplot:

Among all the subtle changes in correlation with arrival delays, you could immediately spot that planes with 300+ seats tend to have much longer delays (16 ~ 21 hours). You may now drill down further to verify or generate more hypotheses.

Feature Engineering

Feature engineering is the process of creating new features from existing ones. Newly engineered features often generate valuable insights.

For functions in this section, it is preferred to use data.table objects as input, and they will be updated by reference. Otherwise, output object will be returned matching the input class.

Replace missing values

Missing values may have meanings for a feature. Other than imputation methods, we may also set them to some logical values. For example, for discrete features, we may want to group missing values to a new category. For continuous features, we may want to set missing values to a known number based on existing knowledge.

In DataExplorer, this can be done by set_missing. The function automatically matches the argument for either discrete or continuous features, i.e., if you specify a number, all missing continuous values will be set to that number. If you specify a string, all missing discrete values will be set to that string. If you supply both, both types will be set.

Group sparse categories

From the bar charts above, we observed a number of discrete features with sparse categorical distributions. Sometimes, we want to group low-frequency categories to a new bucket, or reduce the number of categories to a reasonable range. group_category will do the work.

Take manufacturer feature for example, suppose we want to group the long tail to another category. We could try with bottom 20% (by count) first:

As we can see, manufacturer will be shrinked down to 4 categories, i.e., AIRBUS, BOEING, EMBRAER, and OTHER. If you like this threshold, you may specify update = TRUE to update the original dataset:

Instead of shrinking categories by frequency, you may also group the categories by another continuous metric. For example, if you want to bucket the carrier with bottom 20% distance traveled, you may do the following:

Similarly, if you like it, you may add update = TRUE to update the original dataset.

Dummify data (one hot encoding)

To transform the data into binary format (so that ML algorithms can pick it up), dummify will do the job. The function preserves original data structure, so that only eligible discrete features will be turned into binary format.

## 11 features with more than 5 categories ignored!
## dest: 105 categories
## tailnum: 4044 categories
## carrier: 16 categories
## flight: 3844 categories
## time_hour: 6936 categories
## name_carrier: 16 categories
## manufacturer: 32 categories
## model: 128 categories
## engine: 7 categories
## name: 102 categories
## tzone_dest: 8 categories

Note the maxcat argument. If a discrete feature has more categories than maxcat, it will not be dummified. As a result, it will be returned touched.

Drop features

After viewing the feature distribution, you often want to drop features that are insignificant. For example, features like dst_dest has mostly one value, and it doesn’t provide any valuable information. You can use drop_columns to quickly drop features. The function takes either names or column indices.

Data Reporting

To organize all the data profiling statistics into a report, you may use the create_report() function. It will run most of the EDA functions and output a html file.

create_report(final_data)

To maximize the usage of this function, always supply a response variable (if applicable) to automate various bivariate analyses. For example,

create_report(final_data, y = "arr_delay")

You may also customize each individual section by passing their corresponding arguments as a list. They will later be passed to do.call to be invoked. The default config file is listed below. Simply copy and edit as necessary.

## Customize report configuration
config <- list(
    "introduce" = list(),
    "plot_str" = list(
        "type" = "diagonal",
        "fontSize" = 35,
        "width" = 1000,
        "margin" = list("left" = 350, "right" = 250)
    ),
    "plot_missing" = list(),
    "plot_histogram" = list(),
    "plot_qq" = list(sampled_rows = 1000L),
    "plot_bar" = list(),
    "plot_correlation" = list("cor_args" = list("use" = "pairwise.complete.obs")),
    "plot_prcomp" = list(),
    "plot_boxplot" = list(),
    "plot_scatterplot" = list(sampled_rows = 1000L)
)
## Create final report
create_report(final_data, y = "arr_delay", config = config)