Distances between null and data plots

Examining distances between null and true data plots

Introduction

Numerically describing the content of data plots is very difficult. These functions are an attempt to measure in the special situation of a lineup, how the true data plot differs or not from the null plots.

Metrics are calculated in association with lineups to help understand what people see in the data plots, and assess the quality of a lineup, because the null plots represent a finite sample from a null distribution, and this finiteness may affect how observers read the lineups.

The distance metrics included in the nullabor package cover some of the types of plots used in the first 10 Turk studies: scatterplots, side-by-side boxplots, regression lines overlaid on scatterplots, and colored scatterplots. A generic approach based on binning the plot space and calculating data density should (roughly) work universally for 2D displays.

When a null-generating method is given the functions can simulate more draws from the null to provide an empirical distribution of the distance values for the null plots. This would be used to guage how far the data plot is to the null plots relative to how far null plots are from each other. This might be used to assess whether the data plot in lineup shuld be detected or not by a human observer.

The functions reg_dist, bin_dist, uni_dist, box_dist, sep_dist are ways of calculating how different one plot is from another. These are used to get a sense if the actual data plot is different from the null plots, in as far as we can determine numerically. The functions distmet and distplot compute a rough estimate of the distribution of the distance measures for the data and the null generating mechanism, and make a plot where the values for the actual data plot and the null plots in a lineup are shown. This helps a little to evaluate whether we would expect people to easily pick the data plot from the lineup and thus help to organize the setting up and analysing the results from Amazon Turk experiments http://mamajumder.github.io/html/experiments.html some.

Distance metrics

There are five different distance metrics in nullabor package, named bin_dist, box_dist, reg_dist, sep_dist and uni_dist. The different distance metrics are constructed so that they can identify the different properties of the data. uni_dist works for univariate data while the others works for all types of bivariate data. Binned distance is a generic distance which can be used in any situations while the other distance metrics are constructed so that they can identify the effect of graphical elements in a plot like an overlaid regression line or presence of defined clusters. To calculate some of the metrics, additional informations like a class variable or the number of bins should be provided.

Distance for univariate data

uni_dist is a distance metric which calculates the euclidean distance between the first four central moments of two univariate data. A typical usage would be when one needs to calculate the distance between the two histograms drawn from two datasets.

## [1] 2.32858

Distance based on regression parameters

reg_dist is a distance metric which calculates the euclidean distance between the regression parameters of a model fitted to one plot and that of another plot. It is advisable to use this distance in situations where a regression line is overlaid on a scatterplot.

## [1] 0.8373443

Distance based on boxplots

box_dist is a distance metric which works for side-by-side boxplots with two levels. The first quartile, median and the third quartile are calculated for each box and the absolute distances of these are calculated for the two boxes. box_dist calculates the euclidean distance between these absolute distances for the two plots. The boxplot distance should be used in situations where a side-by-side boxplot is used to compare the distribution of a variable at two different levels.

## [1] 10.44916

Distance based on separation

sep_dist is a distance metric based on the separation between clusters. The separation between clusters is defined by the minimum distances of a point in the cluster to a point in another cluster. The separation between the clusters for a given dataset is calculated. An euclidean distance is calculated between the separation for the given dataset and another dataset. The number of clusters in the dataset should be provided. If not, the hierarchical clustering method is used to obtain the clusters.

## [1] 0.2051674

Binned Distance

bin_dist is a generic distance which works for any situation for any dataset. For a given bivariate dataset, X and Y variables are divided into p and q bins respectively to obtain pq cells. The number of points falling in each cell are counted for a given dataset. bin_dist between two datasets calculates the euclidean distance between the cell counts of these two data. The values of p and q should be provided as arguments.

## [1] 9.165151

Calculating the mean distances for the plots in the lineup

It is interesting to see whether the true plot in a lineup is different from all the null plots. To find this the distances between the true plot and all the null plots are calculated and the mean of these distances is calculated. Similarly, for each null plot, the distance between the null plot and all the other null plots is calculated and averaged to obtain the mean distance for each null plot. calc_mean_dist calculates the mean distance corresponding to each plot in the lineup. If the mean distance of the true plot is larger than the mean distances of all the null plots, the lineup is considered easy. If one of the null plots has a larger mean distance than the true plot, the lineup is considered difficult.

## # A tibble: 20 x 2
##    plotno mean.dist
##     <int>     <dbl>
##  1      1    0.0391
##  2      2    0.0609
##  3      3    0.0538
##  4      4    0.0400
##  5      5    0.146 
##  6      6    0.0484
##  7      7    0.0417
##  8      8    0.0775
##  9      9    0.0337
## 10     10    0.727 
## 11     11    0.0761
## 12     12    0.0359
## 13     13    0.131 
## 14     14    0.0353
## 15     15    0.0486
## 16     16    0.0905
## 17     17    0.0675
## 18     18    0.0773
## 19     19    0.0611
## 20     20    0.0361

Calculating difference measure for lineups

The mean distances for each plot in the lineup are obtained using calc_mean_dist.calc_diff calculates the difference between the mean distance for the true plot and the maximum mean distance for the null plots.

## [1] 0.7470634

Optimum number of bins

Binned distance is highly affected by the choice of the number of bins. The number of bins is provided by the user and this can be subjective. This motivates to design a way to select the optimum number of bins to be used. opt_diff finds the optimal number of bins in both x and y direction which should be used to calculate the binned distance. The binned distance is calculated for each combination of provided choices of number of bins in x and y direction and finds the difference using calc_diff for each combination. The combination for which the difference is maximum should be used.

Distribution of distance metrics

Measuring the quality of a lineup is interesting. But it may also be important to compare a few lineups. The distmet function provides the empirical distribution of the distance metrics based on the mean distance of the true plot and the mean distance from the null plots. The lineup data, the null generating mechanism and the choice of the distance metric has to be provided. Users have the flexibility of using their distance metrics. The position of the true plot in the lineup has to be provided as well. If the distance metrics require additional arguments, those have to be provided as well.

Copy and paste the output of lineup.dat to get the position of the true plot

## # A tibble: 6 x 2
##   plotno mean.dist
##    <int>     <dbl>
## 1      1    0.0425
## 2      2    0.0260
## 3      3    0.101 
## 4      4    0.0287
## 5      5    0.0445
## 6      6    0.0238
## [1] 0.5630604
## [1]  3 14  7 20  9
## [1] 0.04354260 0.14584853 0.01408281 0.03237923 0.04095079 0.08011018
## [1] 10

Plotting the empirical distribution of the distance metric

distplot functions plots the empirical distribution of the distance metric, given the output of distmet function. The distribution is shown in grey along the distance for the true plot in orange and the distances for the null plots in black.

References

Roy Chowdhury, N. and Cook, D. and Hofmann, H. and Majumder, M. and Zhao, Y. (2014) Utilizing Distance Metrics on Lineups to Examine What People Read From Data Plots, http://arxiv.org/abs/1408.1889.