[Solved] AppliedPlotting Week 3-Building a Custom Visualization

30 $

SKU: [Solved] AppliedPlotting Week 3-Building a Custom Visualization Category: Tag:

1 Assignment 3 – Building a Custom Visualization

In this assignment you must choose one of the options presented below and submit a visual as well as your source code for peer grading. The details of how you solve the assignment are up to you, although your assignment must use matplotlib so that your peers can evaluate your work. The options differ in challenge level, but there are no grades associated with the challenge level you chose. However, your peers will be asked to ensure you at least met a minimum quality for a given technique in order to pass. Implement the technique fully (or exceed it!) and you should be able to earn full grades for the assignment.

Ferreira, N., Fisher, D., & Konig, A. C. (2014, April). Sample-oriented task-driven visualizations: allowing users to make better, more confident decisions. In Proceedings of the SIGCHI Conference on Human Factors in Computing Systems (pp. 571-580). ACM. (video)

In this paper the authors describe the challenges users face when trying to make judgements about probabilistic data generated through samples. As an example, they look at a bar chart of four years of data (replicated below in Figure 1). Each year has a y-axis value, which is derived from a sample of a larger dataset. For instance, the first value might be the number votes in a given district or riding for 1992, with the average being around 33,000. On top of this is plotted the 95% confidence interval for the mean (see the boxplot lectures for more information, and the yerr parameter of barcharts).

Figure 1 from (Ferreira et al, 2014).

A challenge that users face is that, for a given y-axis value (e.g. 42,000), it is difficult to know which x-axis values are most likely to be representative, because the confidence levels overlap and their distributions are different (the lengths of the confidence interval bars are unequal). One of the solutions the authors propose for this problem (Figure 2c) is to allow users to indicate the y-axis value of interest (e.g. 42,000) and then draw a horizontal line and color bars based on this value. So bars might be colored red if they are definitely above this value (given the confidence interval), blue if they are definitely below this value, or white if they contain this value.

Figure 2c from (Ferreira et al. 2014). Note that the colorbar legend at the bottom as well as the arrows are not required in the assignment descriptions below.

Easiest option: Implement the bar coloring as described above – a color scale with only three colors, (e.g. blue, white, and red). Assume the user provides the y axis value of interest as a parameter or variable.

Harder option: Implement the bar coloring as described in the paper, where the color of the bar is actually based on the amount of data covered (e.g. a gradient ranging from dark blue for the distribution being certainly below this y-axis, to white if the value is certainly contained, to dark red if the value is certainly not contained as the distribution is above the axis).

Even Harder option: Add interactivity to the above, which allows the user to click on the y axis to set the value of interest. The bar colors should change with respect to what value the user has selected.

Hardest option: Allow the user to interactively set a range of y values they are interested in, and recolor based on this (e.g. a y-axis band, see the paper for more details).

Note: The data given for this assignment is not the same as the data used in the article and as a result the visualizations may look a little different.

In [1]: # Use the following data for this assignment:

import pandas as pd import numpy as np import matplotlib.pyplot as plt

np.random.seed(12345)

df = pd.DataFrame([np.random.normal(32000,200000,3650), np.random.normal(43000,100000,3650), np.random.normal(43500,140000,3650), np.random.normal(48000,70000,3650)], index=[1992,1993,1994,1995])

df

Out[1]: 0 1 2 3

  • -8941.531897 127788.667612 -71887.743011 -79146.060869
  • -51896.094813 198350.518755 -123518.252821 -129916.759685
  • 932066 192947.128056 389950.263156 -93006.152024
  • -69708.439062 -13289.977022 -30178.390991 181256

4 5 6 7

  • 114501 310681.166595 50581.575349 88349.230566
  • 147314 49845.883728 149135.648505 62807.672113
  • 575896 5529.230706 -32989.370488 223942.967178
  • 621657 12930.835194 63700.461932 64148.489835

8 9 … 3640

  • 513522 281286.947277 … 171938.760289
  • 577348 -109686.264981 … -44566.520071
  • -66721.580898 269111 … 165085.806360
  • -29316.268556 677367 … -13901.388118

3641 3642 3643 3644

  • 759924 203663.976475 -377877.158072 -197214.093861
  • 122475 117648.199945 160475.622607 -13759.888342
  • 174090 107329.726875 199250.734156 -36792.202754
  • 686673 53965.990717 4128.990173 72202.595138

3645 3646 3647 3648 36

  • 008589 -56826.729535 -67319.766489 113377.299342 -4494.8785
  • -37333.493572 103019.841174 179746.127403 493990 34442.8988
  • -71861.846997 113219 -29328.078384 65858.761714 -91542.0010
  • 199964 139472.114293 59386.186379 73362.229590 28705.0829

[4 rows x 3650 columns]

In [19]: #df[‘mean’]=df.mean(axis=1).tolist()

#df.drop(df.iloc[:,0:(len(df.columns)-1)],axis=1,inplace=True)

#df.reset_index(inplace=True)

#df

In [3]: import scipy.stats as ss

import matplotlib.pyplot as plt import matplotlib.colors as col import matplotlib.cm as cm

# get the means and standard deviations means = df.mean(axis=1) std = df.std(axis=1)

n = df.shape[1]

# compute the 95% confidence intervals yerr = std/np.sqrt(n) * ss.t.ppf(1-0.05/2, n-1)

#Setup the plot plt.figure() ax= plt.subplot(111) plt.show()

bars = plt.bar(range(df.shape[0]), means, yerr = yerr,color = ‘grey’) index = range(len(df.index)) plt.xticks(index, df.index) plt.title(‘Data between 1992 and 1995’)

[plt.gca().spines[loc].set_visible(False) for loc in [‘top’, ‘right’]] for spine in ax.spines.values(): spine.set_visible(False)

In [4]: #fig = plt.gcf() threshold = 42000

# Add the horizontal line and add its value as a y-tick plt.axhline(y = threshold, zorder=1, color = ‘brown’) ytick = plt.gca().get_yticks() ytick = np.append(ytick,threshold) plt.gca().set_yticks(ytick)

#Setup the colormap

colormap = col.LinearSegmentedColormap.from_list(“colormap”,[“b”, “white”, cpick = cm.ScalarMappable(cmap=colormap) cpick.set_array([])

#Computing each column against threshold value percentages = [] for bar, yerr_ in zip(bars, yerr): low = bar.get_height() – yerr_ high = bar.get_height() + yerr_ percentage = (high-threshold)/(high-low) if percentage>1: percentage = 1 if percentage<0: percentage=0 percentages.append(percentage)

percentages

#Updating the plot

bars = plt.bar(range(df.shape[0]), means, yerr = yerr, color = cpick.to_rgb

#Add the colorbar plt.colorbar(cpick, orientation=’horizontal’, boundaries=np.linspace(0,1,12

plt.show()

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[Solved] AppliedPlotting Week 3-Building a Custom Visualization
30 $