Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@indygreg
Last active September 23, 2015 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save indygreg/bc2d5e8cf72c5bbd4987 to your computer and use it in GitHub Desktop.
Save indygreg/bc2d5e8cf72c5bbd4987 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python2.7
import collections
import csv
import re
import sys
#import plotly.plotly as py
#from plotly.graph_objs import *
from bokeh.charts import Bar, output_file, show, save
from bokeh.embed import components
RE_QUESTION_CHOICE = re.compile('^([^\]]+)\[(.*)\]$')
TEAM_QUESTION = 'What product do you work on the most?'
MULTIPLE_CHOICE_QUESTIONS = {
'What other languages do you work with?',
'What products do you work on? (Check all that apply)',
'What would improve your Treeherder experience?',
'What are your thoughts on MQ?',
'Which version control tools do you currently use for Mozilla projects?',
'Which workflows do you practice to author commits with Mercurial? (Check all that apply)',
'Why do you prefer Git over Mercurial? (check all that apply)',
'Why do you prefer Mercurial over Git? (Check all that apply)',
'If you use Git for working on Firefox, how do you obtain the source code? (Choose all that apply)',
'What version control tools do you use to work with mozilla-central and other project branches (inbound, fx-team, etc)?',
'How do you prefer to debug test failures?',
'Which version control tool do you prefer?',
}
OPEN_TEXT_QUESTIONS = {
'Please leave any other comments you may have on the Firefox build system and how improvements could affect your productivity.',
'Other',
'Please give more info in your answer(s) above',
'What\'s your biggest complaint about Mercurial as a general tool?',
'What\'s your biggest complaint about Mercurial at Mozilla?',
'Other feedback about Mercurial',
'What\'s your biggest complaint about Git?',
'Other feedback about Git at Mozilla',
'In your own words, feel free to tell us more about why you prefer Mercurial over Git.',
'In your own words, feel free to tell us why you prefer Git over Mercurial.',
'Before you go, what things did we fail to cover that would provide a boost to your productivity? Please be as specific as possible.',
}
PRODUCT_SHORTNAMES = {
'Gecko / Platform': 'Platform',
'Firefox for Desktop (Windows, OS X, Linux)': 'Fx-Team',
'Firefox OS': 'FxOS',
'Firefox for Android': 'Fennec',
'Firefox for iOS': 'iOS',
'Product Support (automation, tools, infrastructure, etc)': 'Support',
'Other': 'Other',
'All Other Responses': 'Other',
}
FILTER_PRODUCTS = {
'Gecko / Platform',
'Firefox for Desktop (Windows, OS X, Linux)',
#'Firefox OS',
#'Product Support (automation, tools, infrastructure, etc)',
}
SORTS = [
[
'No',
'Yes',
],
[
"This is my first job / I'm not sure",
'Slower',
'About the same',
'Faster',
],
[
'Not sure',
'No more productive - already at peak productivity',
'Up to 10% more productive',
'Up to 25% more productive',
'Up to 50% more productive',
"100%+ more productive (you'd be a machine)",
],
[
"N/A or I'm not sure",
'Not at all satisfied',
"It's not horrible, but it's still pretty bad",
'It sucks a little',
"It's neither bad nor good",
"It's OK, I guess",
"It's pretty good",
"It's awesome!",
],
[
'N/A',
"It's gotten worse",
'About the same',
'Gotten better',
],
[
'N/A',
'1 = least impactful',
'2',
'3',
'4 = most impactful',
],
[
'N/A',
'1 = little impact',
'2',
'3',
'4 = most impact',
],
[
'N/A',
'1 = least impact',
'2',
'3',
'4 = most impact',
],
[
'1 - no impact',
'2 - little impact',
'3 - a fair amount of impact',
'4 - a significant amount of impact',
'5 - an extremely frustrating amount of impact',
],
[
'N/A',
'Keep about the same',
'Increase investment',
'Drastically increase investment',
],
[
'N/A',
'Extremely dissatisfied',
'Below average',
'Average',
'Above average',
"It's awesome!",
],
[
'No impact / Not applicable',
'A little impact',
'Moderate impact',
'Significant impact',
'Tons of impact / Implement this ASAP',
],
[
'No knowledge',
'I know enough to do just the basics',
'Fairly competent (I still get stuck from time to time)',
'Highly competent',
],
[
'N/A',
'Once every few months',
'Monthly',
'Weekly',
'Daily',
],
[
'Never',
'Over a year ago',
'A few months ago',
'A few weeks ago',
'A few days ago',
],
[
'N/A',
'Not satisfied at all',
'Below average',
'Average',
'Above average',
"It's awesome!",
],
[
'N/A (not relevant to me)',
'Cut all investment',
'Cut some investment',
'Keep about the same',
'Increase investment',
'Drastically increase investment',
],
[
'N/A',
'Cut all investment',
'Decrease investment',
'Keep about the same',
'Increase investment',
'Drastically increase investment',
],
]
def read_csv(fh):
reader = csv.reader(fh)
columns = reader.next()
responses = list(reader)
return columns, responses
def iterate_answers(column, v):
if column in MULTIPLE_CHOICE_QUESTIONS:
for c in v.split(';'):
c = c.strip()
if c:
yield c
else:
yield v
def count_group_size(columns, responses):
for i, column in enumerate(columns):
if column != TEAM_QUESTION:
continue
counts = collections.Counter()
for r in responses:
counts[r[i]] += 1
return counts
def reduce_answers(columns, counts, group_sizes, ignore=False):
"""Replace low frequency answers with "all other responses."""
new_counts = {}
for column in columns:
if column not in counts:
continue
v = counts[column]
answer_counts = collections.Counter()
total = 0
if isinstance(v, collections.defaultdict):
for a, group_counts in v.items():
for group, c in group_counts.items():
if group not in FILTER_PRODUCTS:
continue
answer_counts[a] += c
total += c
if column in MULTIPLE_CHOICE_QUESTIONS:
total = 0
for group, c in group_sizes.items():
if group in FILTER_PRODUCTS:
total += c
else:
for a, c in v.items():
answer_counts[a] += c
total += c
to_filter = set()
for a, c in answer_counts.items():
if float(c) / float(total) <= 0.05:
to_filter.add(a)
if c <= 2:
to_filter.add(a)
if isinstance(v, collections.defaultdict):
new_counts[column] = collections.defaultdict(collections.Counter)
for a, group_counts in v.items():
if a in to_filter:
if ignore:
continue
a = 'All Other Responses'
for group, c in group_counts.items():
if group not in FILTER_PRODUCTS:
continue
new_counts[column][a][group] += c
else:
new_counts[column] = collections.Counter()
for a, c in v.items():
if a in to_filter:
if ignore:
continue
a = 'All Other Responses'
new_counts[column][a] += c
return new_counts
def counts_by_question(columns, responses):
counts = {}
for i, column in enumerate(columns):
if i < 2:
continue
if column in OPEN_TEXT_QUESTIONS:
continue
counts[column] = collections.Counter()
for r in responses:
v = r[i]
if not v:
continue
for a in iterate_answers(column, v):
counts[column][a] += 1
return counts
def counts_grouped_by_answer(columns, responses, question):
group_index = columns.index(question)
counts = {}
for i, column in enumerate(columns):
if i < 2:
continue
if i == group_index:
continue
if column in OPEN_TEXT_QUESTIONS:
continue
counts[column] = collections.defaultdict(collections.Counter)
for r in responses:
v = r[i]
if not v:
continue
group = r[group_index]
for a in iterate_answers(column, v):
counts[column][a][group] += 1
return counts
def sort_answers(answers):
"""Given an iterable of answers, sort according to proper order."""
srtd = None
for l in SORTS:
relevant = set(a for a in answers if a != 'All Other Responses')
if all(a in l for a in relevant):
srtd = list(l)
if 'All Other Responses' in answers:
srtd.insert(0, 'All Other Responses')
break
if not srtd:
return sorted(answers)
return [a for a in srtd if a in answers]
def plot_by_group(columns, answers, group_sizes):
plots = []
for i, column in enumerate(columns):
if column not in answers:
continue
all_answers = set(answers[column].keys())
counts_by_group = collections.Counter()
for counts in answers[column].values():
for group, count in counts.items():
counts_by_group[group] += count
bars = []
x = sort_answers(all_answers)
data = {}
for group in sorted(counts_by_group):
y = []
for answer in x:
counts = answers[column][answer]
if group not in counts:
y.append(0)
else:
percent = float(counts[group]) / float(group_sizes[group])
y.append(int(percent * 100.0))
data[PRODUCT_SHORTNAMES[group]] = y
b = Bar(data,
cat=x,
title=column,
ylabel='Percentage',
width=1280,
height=560,
legend=True,
tools='',
)
b.title_text_font_size = '13px'
plots.append(b)
script, divs = components(plots)
return script, divs
def write_html(fh, script, divs):
fh.write('<html><head><title>Survey Results</title>')
fh.write('<link href="https://people.mozilla.org/~gszorc/bokeh-0.9.3.min.css" rel="stylesheet" type="text/css" />')
fh.write('<script src="https://people.mozilla.org/~gszorc/bokeh-0.9.3.min.js"></script>')
fh.write(script)
fh.write('</head><body>\n')
for div in divs:
fh.write(div)
fh.write('</body></html>')
if __name__ == '__main__':
with open(sys.argv[1], 'rb') as fh:
columns, responses = read_csv(fh)
outfile = sys.argv[2]
group_sizes = count_group_size(columns, responses)
for group, count in sorted(group_sizes.items()):
print('N=%d\t%s' % (count, group))
by_question = counts_by_question(columns, responses)
#by_question = reduce_answers(columns, by_question, group_sizes, ignore=True)
by_group = counts_grouped_by_answer(columns, responses, TEAM_QUESTION)
by_group_reduced = reduce_answers(columns, by_group, group_sizes, ignore=False)
script, divs = plot_by_group(columns, by_group_reduced, group_sizes)
with open(outfile, 'wb') as fh:
write_html(fh, script, divs)
This file has been truncated, but you can view the full file.
<html><head><title>Survey Results</title><link href="https://people.mozilla.org/~gszorc/bokeh-0.9.3.min.css" rel="stylesheet" type="text/css" /><script src="https://people.mozilla.org/~gszorc/bokeh-0.9.3.min.js"></script><script type="text/javascript">
Bokeh.$(function() {
var all_models = [{"attributes": {"doc": null, "id": "268fcedc-56be-4345-b901-929bb54d5e5a", "tags": []}, "type": "CategoricalTickFormatter", "id": "268fcedc-56be-4345-b901-929bb54d5e5a"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "717a6a3d-1c3f-44f3-939b-4ad87f690fea"}, "tags": [], "doc": null, "selection_glyph": null, "id": "36fa2d00-810b-4ee4-a4c4-531ad146eb0e", "glyph": {"type": "Rect", "id": "ccab7926-98de-4b13-a093-3650ba0358d3"}}, "type": "GlyphRenderer", "id": "36fa2d00-810b-4ee4-a4c4-531ad146eb0e"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [4.5, 11.0, 9.5, 10.5, 13.0], "Platform": [9, 22, 19, 21, 26], "catFx-Team": ["N/A:0.666666666667", "1 = least impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "midPlatform": [4.5, 11.0, 9.5, 10.5, 13.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [14.0, 32.0, 35.0, 37.0, 77.0], "catPlatform": ["N/A:0.333333333333", "1 = least impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [11.5, 27.0, 27.0, 29.0, 51.5], "midFx-Team": [2.5, 5.0, 8.0, 8.0, 25.5], "Fx-Team": [5, 10, 16, 16, 51]}, "id": "b557c33d-6ffe-4abb-8bf9-72c13f6fcfb6"}, "type": "ColumnDataSource", "id": "b557c33d-6ffe-4abb-8bf9-72c13f6fcfb6"}, {"attributes": {"doc": null, "id": "06cd2c2d-3fc7-45de-8ac0-c7d868f35ce7", "tags": []}, "type": "BasicTickFormatter", "id": "06cd2c2d-3fc7-45de-8ac0-c7d868f35ce7"}, {"attributes": {"end": 47.300000000000004, "callback": null, "doc": null, "tags": [], "start": 0, "id": "d80684a6-0635-412f-ad29-12a7e9b41f8e"}, "type": "Range1d", "id": "d80684a6-0635-412f-ad29-12a7e9b41f8e"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "91b1ec06-50d6-44ad-bbad-51fef038ea2a"}, "type": "Rect", "id": "91b1ec06-50d6-44ad-bbad-51fef038ea2a"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "d0d308b0-25e7-44c6-a48c-2a7590f5993a"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "4db9cbae-51dd-47e3-bc83-32350c027258"}, "id": "a9778dcc-5638-4233-b2f7-9f58e505f96c"}, "type": "Grid", "id": "a9778dcc-5638-4233-b2f7-9f58e505f96c"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "1c18903a-491d-4923-8052-51500578d3d4"}, "type": "Rect", "id": "1c18903a-491d-4923-8052-51500578d3d4"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "1d0d8f82-87e4-4ae6-b927-62f495c15b17"}, "type": "ToolEvents", "id": "1d0d8f82-87e4-4ae6-b927-62f495c15b17"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "5c4bbcf7-2176-4cbe-8036-1486def97d63"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "ace1511b-20a4-43d2-b82f-bf7c1ac59f21"}, "ticker": {"type": "BasicTicker", "id": "c7d5001f-8c51-4c5c-9a10-50df2eb19081"}, "id": "446f9443-8b8d-4c36-9d7a-e54ee56b1738"}, "type": "LinearAxis", "id": "446f9443-8b8d-4c36-9d7a-e54ee56b1738"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "954a76aa-3c85-4a4e-8ac9-d3dafb8a5825"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "fe2923f6-3256-48df-82d6-ec5d8ed44821"}, "id": "db3b9581-0abf-49ab-b9d6-a213eaa3d75b"}, "type": "Grid", "id": "db3b9581-0abf-49ab-b9d6-a213eaa3d75b"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "e48197c4-e170-4145-8168-77e36fe612a6"}, "type": "Rect", "id": "e48197c4-e170-4145-8168-77e36fe612a6"}, {"attributes": {"doc": null, "id": "5f7431c5-9300-4f94-8ecb-0eb98aa0cb44", "tags": []}, "type": "CategoricalTickFormatter", "id": "5f7431c5-9300-4f94-8ecb-0eb98aa0cb44"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "cb147da0-1422-425b-a102-b7e22fddc842"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "573a649b-fbb4-4595-98a6-aa0522247984"}, "ticker": {"type": "BasicTicker", "id": "8a3be582-9b74-4101-b7ec-b4cd03637178"}, "id": "949bffbf-3d90-407a-946d-a70c29b0bea4"}, "type": "LinearAxis", "id": "949bffbf-3d90-407a-946d-a70c29b0bea4"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "3cbd9d66-2cd6-4a47-93c6-c73ca9b7ec73"}, "type": "Rect", "id": "3cbd9d66-2cd6-4a47-93c6-c73ca9b7ec73"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "91fcc06a-c30b-465e-894b-6b0ec01384c2"}, "type": "Rect", "id": "91fcc06a-c30b-465e-894b-6b0ec01384c2"}, {"subtype": "Chart", "type": "Plot", "id": "3f6451bd-a783-4e0d-8fb3-5b59fc7ace06", "attributes": {"x_range": {"type": "FactorRange", "id": "99cbbbb2-7de3-499b-b791-5a97de541d10"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "8b554c32-7071-4ab4-939b-2f2d0933308d"}, "title": "How satisfied are you with the following items at Mozilla? [Firefox test and release automation]", "renderers": [{"type": "CategoricalAxis", "id": "61396d69-137e-4c19-9d1d-f1c7c677522f"}, {"type": "LinearAxis", "id": "b0b70717-b01b-44f9-aef7-500c0fc6afb6"}, {"type": "Grid", "id": "55a48457-e383-49e1-b117-2186c6ec5925"}, {"type": "GlyphRenderer", "id": "7575a9a1-6789-48c9-a0ed-b0b9d8249748"}, {"type": "GlyphRenderer", "id": "efc119eb-e7ab-4111-9e3d-48d8b2d62520"}, {"type": "Legend", "id": "a9b3ce9f-db1d-45be-a345-61c63979be5e"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "add29184-5d16-49b3-b33a-800fe2923296"}, "plot_height": 560, "doc": null, "id": "3f6451bd-a783-4e0d-8fb3-5b59fc7ace06", "tools": [], "below": [{"type": "CategoricalAxis", "id": "61396d69-137e-4c19-9d1d-f1c7c677522f"}], "left": [{"type": "LinearAxis", "id": "b0b70717-b01b-44f9-aef7-500c0fc6afb6"}]}}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [3.5, 3.5, 12.0, 13.5, 15.5], "Platform": [7, 7, 24, 27, 31], "catFx-Team": ["N/A:0.666666666667", "1 = least impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "midPlatform": [3.5, 3.5, 12.0, 13.5, 15.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [12.0, 23.0, 51.0, 51.0, 58.0], "catPlatform": ["N/A:0.333333333333", "1 = least impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [9.5, 15.0, 37.5, 39.0, 44.5], "midFx-Team": [2.5, 8.0, 13.5, 12.0, 13.5], "Fx-Team": [5, 16, 27, 24, 27]}, "id": "b8b8ee40-a871-4470-b176-021e034761a4"}, "type": "ColumnDataSource", "id": "b8b8ee40-a871-4470-b176-021e034761a4"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "c7c1cd53-2728-4d17-acae-63611e7939c6"}, "type": "BasicTicker", "id": "c7c1cd53-2728-4d17-acae-63611e7939c6"}, {"attributes": {"end": 31.900000000000002, "callback": null, "doc": null, "tags": [], "start": 0, "id": "1762d41f-2c04-4f12-8e0f-08f7ce58a30e"}, "type": "Range1d", "id": "1762d41f-2c04-4f12-8e0f-08f7ce58a30e"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "de55e910-d8be-4d40-a321-d715fbe10a88"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "18de529e-15a0-437b-8923-ab640b1b9b8f"}, "id": "fd820b5a-20cd-4ded-9c9b-ef4fb279ee05"}, "type": "Grid", "id": "fd820b5a-20cd-4ded-9c9b-ef4fb279ee05"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fac52d34-7da0-498e-9368-548b85e2919b"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "e15f5589-bde9-4ee0-beb2-9bbb83c220c7"}, "ticker": {"type": "CategoricalTicker", "id": "a05196e5-556c-4ab7-b58a-f099648e6961"}, "id": "6db7c465-925b-405c-ae0e-69eae8d4d138"}, "type": "CategoricalAxis", "id": "6db7c465-925b-405c-ae0e-69eae8d4d138"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a0e5390f-1e01-4763-b57c-474d6ef45d45"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "dae2d14e-69cd-495e-82d4-3734eefdd2cf"}, "id": "be7a34cb-6701-4519-b058-ebadb77ba371"}, "type": "Grid", "id": "be7a34cb-6701-4519-b058-ebadb77ba371"}, {"attributes": {"doc": null, "id": "b86e3391-d444-4dee-9ade-a6a2662bcd8f", "tags": []}, "type": "CategoricalTicker", "id": "b86e3391-d444-4dee-9ade-a6a2662bcd8f"}, {"attributes": {"callback": null, "factors": ["1 - no impact", "2 - little impact", "3 - a fair amount of impact", "4 - a significant amount of impact", "5 - an extremely frustrating amount of impact"], "doc": null, "tags": [], "id": "ae7d769b-9848-49ad-9111-a6dceead712c"}, "type": "FactorRange", "id": "ae7d769b-9848-49ad-9111-a6dceead712c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "b576d1a0-61b4-4617-b798-6e12969f4a51"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "104b1983-c921-4a16-aa26-e806548940dd"}, "id": "861a6efe-8d3d-449e-892e-5978f811486c"}, "type": "Grid", "id": "861a6efe-8d3d-449e-892e-5978f811486c"}, {"attributes": {"doc": null, "id": "0c954156-c69a-4ff4-878e-3ed2cfc25a2a", "tags": []}, "type": "CategoricalTicker", "id": "0c954156-c69a-4ff4-878e-3ed2cfc25a2a"}, {"attributes": {"doc": null, "id": "62954fbf-2966-44f4-88b3-d7c98565b250", "tags": []}, "type": "CategoricalTickFormatter", "id": "62954fbf-2966-44f4-88b3-d7c98565b250"}, {"attributes": {"end": 30.800000000000004, "callback": null, "doc": null, "tags": [], "start": 0, "id": "42118fa0-d7e1-4c57-baf2-6877af1f88e1"}, "type": "Range1d", "id": "42118fa0-d7e1-4c57-baf2-6877af1f88e1"}, {"attributes": {"doc": null, "id": "c85070d3-e44e-4e9a-98b1-c71fc940f22b", "tags": []}, "type": "CategoricalTickFormatter", "id": "c85070d3-e44e-4e9a-98b1-c71fc940f22b"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "90be15a4-fcab-49b5-b4bc-9c3cec3018fe"}, "tags": [], "doc": null, "selection_glyph": null, "id": "673906a4-ffa2-4922-a6f3-a2865f5a6889", "glyph": {"type": "Rect", "id": "119f9d4f-8a60-40ca-b58b-385346863ae0"}}, "type": "GlyphRenderer", "id": "673906a4-ffa2-4922-a6f3-a2865f5a6889"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "8e533061-3f2b-4d96-9f27-29645c502bae"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "0b857157-5205-405e-b722-76856b819a54"}, "id": "bf5f0a9a-5a16-4ba9-8514-baf056f842aa"}, "type": "Grid", "id": "bf5f0a9a-5a16-4ba9-8514-baf056f842aa"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [2.0, 1.5, 8.5, 14.0, 11.0], "Platform": [4, 3, 17, 28, 22], "catFx-Team": ["All Other Responses:0.666666666667", "Below average:0.666666666667", "Average:0.666666666667", "Above average:0.666666666667", "It's awesome!:0.666666666667"], "cat": ["All Other Responses", "Below average", "Average", "Above average", "It's awesome!"], "midPlatform": [2.0, 1.5, 8.5, 14.0, 11.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [12.0, 13.0, 22.0, 55.0, 43.0], "catPlatform": ["All Other Responses:0.333333333333", "Below average:0.333333333333", "Average:0.333333333333", "Above average:0.333333333333", "It's awesome!:0.333333333333"], "stackedFx-Team": [8.0, 8.0, 19.5, 41.5, 32.5], "midFx-Team": [4.0, 5.0, 2.5, 13.5, 10.5], "Fx-Team": [8, 10, 5, 27, 21]}, "id": "84e28c38-2400-4cd7-bb81-74fd76644ffa"}, "type": "ColumnDataSource", "id": "84e28c38-2400-4cd7-bb81-74fd76644ffa"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "d03d4b37-32eb-483f-8e73-053978c018c8"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "9002ec82-94ab-4b26-8845-8562657a09ae"}, "ticker": {"type": "CategoricalTicker", "id": "0a9056a9-6115-4902-8aab-171f5403b3c1"}, "id": "629058f1-cb00-4a40-97c9-d75b78f46b90"}, "type": "CategoricalAxis", "id": "629058f1-cb00-4a40-97c9-d75b78f46b90"}, {"subtype": "Chart", "type": "Plot", "id": "cb147da0-1422-425b-a102-b7e22fddc842", "attributes": {"x_range": {"type": "FactorRange", "id": "4a7006a6-402a-45f9-8012-0a2e5142b6af"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "0e14b5bc-2607-4c60-9065-7d592251fb2d"}, "title": "Rank the following issues according to how they impact your ability to debug tests using try. [Being able to schedule more jobs post-push]", "renderers": [{"type": "CategoricalAxis", "id": "cab41ef9-f06a-4b33-a32a-15222a950fef"}, {"type": "LinearAxis", "id": "949bffbf-3d90-407a-946d-a70c29b0bea4"}, {"type": "Grid", "id": "570a4eee-947b-41de-b16e-e492a1bd5162"}, {"type": "GlyphRenderer", "id": "e7c0962d-6f59-47c7-91a3-daad268f3afa"}, {"type": "GlyphRenderer", "id": "55ba0371-5429-4799-9b79-604e45bf66e8"}, {"type": "Legend", "id": "749d59fd-f456-407e-8d69-b5a678c2c73b"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "fb4a44d2-af38-421b-a06c-f11f846c6d9a"}, "plot_height": 560, "doc": null, "id": "cb147da0-1422-425b-a102-b7e22fddc842", "tools": [], "below": [{"type": "CategoricalAxis", "id": "cab41ef9-f06a-4b33-a32a-15222a950fef"}], "left": [{"type": "LinearAxis", "id": "949bffbf-3d90-407a-946d-a70c29b0bea4"}]}}, {"subtype": "Chart", "type": "Plot", "id": "9b1e456e-6a96-4a42-8fb7-20262fb52275", "attributes": {"x_range": {"type": "FactorRange", "id": "ff123d46-0a3e-4675-bc0e-bebfbeb99dda"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "ab9a7b46-146c-4573-b939-ac422b3eb7fd"}, "title": "How should Mozilla invest in the following Git related items? [Other GitHub integration]", "renderers": [{"type": "CategoricalAxis", "id": "62ebde2e-da00-4a9e-be71-d07ab166d5bd"}, {"type": "LinearAxis", "id": "34db7c9b-79fd-415b-b3ad-820ce815869f"}, {"type": "Grid", "id": "f79fefbe-8abf-4c48-b3a7-6edc8a82ab30"}, {"type": "GlyphRenderer", "id": "b2cbad9f-92a7-47bb-a3f4-ab69a16e6fa2"}, {"type": "GlyphRenderer", "id": "679cd2d7-8768-4597-a35b-f617d4ced447"}, {"type": "Legend", "id": "65a69d09-83fc-46dd-85ec-ac27b10ef937"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "42b7d26b-575b-497e-970a-66e60095ed14"}, "plot_height": 560, "doc": null, "id": "9b1e456e-6a96-4a42-8fb7-20262fb52275", "tools": [], "below": [{"type": "CategoricalAxis", "id": "62ebde2e-da00-4a9e-be71-d07ab166d5bd"}], "left": [{"type": "LinearAxis", "id": "34db7c9b-79fd-415b-b3ad-820ce815869f"}]}}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "9b8217d0-71b3-4961-81f8-b84864306ddf"}, "type": "ToolEvents", "id": "9b8217d0-71b3-4961-81f8-b84864306ddf"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "f011568d-e6e6-42ff-9673-6232d1662161"}, "type": "Rect", "id": "f011568d-e6e6-42ff-9673-6232d1662161"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "ae40b8ef-d2e1-4320-9069-991d2a31752f"}, "type": "Rect", "id": "ae40b8ef-d2e1-4320-9069-991d2a31752f"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "9b84a9c5-84b4-4aba-9991-c0aab1aea4df"}, "type": "BasicTicker", "id": "9b84a9c5-84b4-4aba-9991-c0aab1aea4df"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "675951e1-65cf-4646-9e84-81291c4b89cb"}, "type": "BasicTicker", "id": "675951e1-65cf-4646-9e84-81291c4b89cb"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "fb024031-98ed-4dc8-bb9b-0039261a3546"}, "type": "ToolEvents", "id": "fb024031-98ed-4dc8-bb9b-0039261a3546"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "bc085a35-b314-41e9-a57d-565def0bbdc6"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "5a194388-9237-49ab-81aa-659c5b99c4cd"}, "id": "77d5379c-ef35-411c-a848-cb873ed41b9c"}, "type": "Grid", "id": "77d5379c-ef35-411c-a848-cb873ed41b9c"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "571b60e3-a940-47dc-834b-f80ea6cee636"}, "tags": [], "doc": null, "selection_glyph": null, "id": "557a9eee-be63-4e1d-a0a8-937c569c1c8a", "glyph": {"type": "Rect", "id": "72fa68be-a8ed-474d-973c-ef9e9d96557b"}}, "type": "GlyphRenderer", "id": "557a9eee-be63-4e1d-a0a8-937c569c1c8a"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "dee5d3e8-e7de-49a7-802f-97c2cb2409e3"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "d81e44e0-509d-45c0-9520-c8d6e792db54"}, "ticker": {"type": "CategoricalTicker", "id": "95833cc1-caad-4d92-8b60-4fc673777036"}, "id": "c62e51be-8a06-494c-a050-2a45298fa574"}, "type": "CategoricalAxis", "id": "c62e51be-8a06-494c-a050-2a45298fa574"}, {"subtype": "Chart", "type": "Plot", "id": "17ac799c-d49d-4577-8e39-49b74a0a121c", "attributes": {"x_range": {"type": "FactorRange", "id": "8ffdaab9-71f7-43eb-9635-937b813897e2"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "7063eb3a-de50-4b30-8e53-4794bd3bfe2d"}, "title": "Rank the following issues according to how they impact your ability to debug tests locally. [Failure is often specific to a platform I don\u2019t have access to]", "renderers": [{"type": "CategoricalAxis", "id": "80f6d82e-cfc7-474e-8e3f-c1bad199bf7d"}, {"type": "LinearAxis", "id": "442dab77-cea0-4be6-8265-c0523b425db7"}, {"type": "Grid", "id": "8b0b3224-d49c-4269-bd46-270dea4a07ee"}, {"type": "GlyphRenderer", "id": "3552ae2f-d21f-4339-8bee-afc06337654f"}, {"type": "GlyphRenderer", "id": "68d95ed4-2b71-4444-aa83-7f1fea65de99"}, {"type": "Legend", "id": "bb05f863-ca68-4f55-9c22-011d426bec9c"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "f444fdfe-3bf6-4fbb-baf8-3e657584b9eb"}, "plot_height": 560, "doc": null, "id": "17ac799c-d49d-4577-8e39-49b74a0a121c", "tools": [], "below": [{"type": "CategoricalAxis", "id": "80f6d82e-cfc7-474e-8e3f-c1bad199bf7d"}], "left": [{"type": "LinearAxis", "id": "442dab77-cea0-4be6-8265-c0523b425db7"}]}}, {"attributes": {"doc": null, "id": "d94fd38c-4dff-49e4-9684-3fb7475748c7", "tags": []}, "type": "CategoricalTicker", "id": "d94fd38c-4dff-49e4-9684-3fb7475748c7"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fdce97de-63d3-4989-b605-146792ec8c17"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "bb70a8b9-6a2e-4f15-9b30-7c97ef457efb"}, "ticker": {"type": "BasicTicker", "id": "87db831b-1421-40e6-b999-3c9621a3a263"}, "id": "b7215238-b8b9-40be-bed3-c8bc331a8638"}, "type": "LinearAxis", "id": "b7215238-b8b9-40be-bed3-c8bc331a8638"}, {"attributes": {"end": 35.2, "callback": null, "doc": null, "tags": [], "start": 0, "id": "6dc34518-bf00-49c6-abad-de1d6be33fa7"}, "type": "Range1d", "id": "6dc34518-bf00-49c6-abad-de1d6be33fa7"}, {"attributes": {"doc": null, "id": "62505cc4-c13e-4ce9-a9d2-a937340856ba", "tags": []}, "type": "CategoricalTickFormatter", "id": "62505cc4-c13e-4ce9-a9d2-a937340856ba"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "8e533061-3f2b-4d96-9f27-29645c502bae"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "9a482a18-e98e-44af-9fac-58bb9f213d54"}, "ticker": {"type": "CategoricalTicker", "id": "ce7b3b0a-ea12-45d5-8d0c-8d9769b20303"}, "id": "2749dbdf-0a04-4d51-a225-68fe6815b6bd"}, "type": "CategoricalAxis", "id": "2749dbdf-0a04-4d51-a225-68fe6815b6bd"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "a4750963-8d91-4ce6-a94c-7bfd9be4e998"}, "type": "ToolEvents", "id": "a4750963-8d91-4ce6-a94c-7bfd9be4e998"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "211b7754-cfad-42d7-a3d3-7695ef9b9713"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "8afd769f-16ba-4a4f-b632-ab2e17ed3fa5"}, "id": "db147f7b-d9b2-4c0c-a43a-50f7099a4a00"}, "type": "Grid", "id": "db147f7b-d9b2-4c0c-a43a-50f7099a4a00"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "cf191638-7eea-40c0-b6b7-77d93830a715"}, "type": "Rect", "id": "cf191638-7eea-40c0-b6b7-77d93830a715"}, {"attributes": {"callback": null, "factors": ["No impact / Not applicable", "A little impact", "Moderate impact", "Significant impact", "Tons of impact / Implement this ASAP"], "doc": null, "tags": [], "id": "e41f95d9-90d4-4777-89b5-bf51749aba99"}, "type": "FactorRange", "id": "e41f95d9-90d4-4777-89b5-bf51749aba99"}, {"subtype": "Chart", "type": "Plot", "id": "fe4dde56-d69e-4fb0-aaf6-aaa62faafa93", "attributes": {"x_range": {"type": "FactorRange", "id": "6dc3e99f-454e-4b3c-b918-2d3a8857cbc0"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "8349f336-99d2-46ec-bb2e-8f025f8fe4e3"}, "title": "Thinking of the entire development process, from checking out code to landing a patch, please rank the following categories according to how much they impact your own productivity. [Waiting for input (ping, needinfo, email, etc) takes too long]", "renderers": [{"type": "CategoricalAxis", "id": "8240a598-fc1e-42e2-ba2e-98b7cf71229f"}, {"type": "LinearAxis", "id": "e963af4e-3a37-45d7-9ea7-b085f0e10eb9"}, {"type": "Grid", "id": "53c34a11-dd6a-4235-be71-b1c2daa7ba15"}, {"type": "GlyphRenderer", "id": "5e0cb115-8525-4e8c-b030-f168c4d3a2ae"}, {"type": "GlyphRenderer", "id": "b7c38fe1-979c-4fe9-be06-c56a98c73a6b"}, {"type": "Legend", "id": "ae1bd3bb-551d-4d2e-a301-7aaf2376cdff"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "573e3e10-a08a-4339-9d1a-0d4c6234fe70"}, "plot_height": 560, "doc": null, "id": "fe4dde56-d69e-4fb0-aaf6-aaa62faafa93", "tools": [], "below": [{"type": "CategoricalAxis", "id": "8240a598-fc1e-42e2-ba2e-98b7cf71229f"}], "left": [{"type": "LinearAxis", "id": "e963af4e-3a37-45d7-9ea7-b085f0e10eb9"}]}}, {"attributes": {"doc": null, "id": "7d39215c-e99d-462a-a897-1aeb04ab7833", "tags": []}, "type": "CategoricalTickFormatter", "id": "7d39215c-e99d-462a-a897-1aeb04ab7833"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "5281a747-c534-4920-94b3-f165be4a4aff"}, "tags": [], "doc": null, "selection_glyph": null, "id": "54ea631b-29fa-46a3-a8f6-36bc29d2b1a4", "glyph": {"type": "Rect", "id": "7a04eb84-8336-45f7-a5d0-2c561653b17f"}}, "type": "GlyphRenderer", "id": "54ea631b-29fa-46a3-a8f6-36bc29d2b1a4"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "02776478-701b-4368-9060-e7b70bed0081"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "069d910c-6f6f-496b-89ef-f9033fd89003"}, "ticker": {"type": "BasicTicker", "id": "1bc5a559-1b4b-4b6d-8af7-44c50c6c809f"}, "id": "536de077-1dd5-4f5d-9f2e-481a574b761a"}, "type": "LinearAxis", "id": "536de077-1dd5-4f5d-9f2e-481a574b761a"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "914c6244-5b26-46a9-9bd9-57c3b688701e"}, "type": "BasicTicker", "id": "914c6244-5b26-46a9-9bd9-57c3b688701e"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "35c94ce8-b8eb-4f3c-97f4-957c3cc3e63e"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "a78491db-4034-4011-9096-eae7749ffcf3"}, "ticker": {"type": "BasicTicker", "id": "8d167d3d-6b97-4584-aa19-8011ec16e1f5"}, "id": "8dcf5cd4-a4d7-4a98-a244-aeb70c5d819b"}, "type": "LinearAxis", "id": "8dcf5cd4-a4d7-4a98-a244-aeb70c5d819b"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "8de5a563-c0c3-4353-b637-7f1e99ead304"}, "type": "Rect", "id": "8de5a563-c0c3-4353-b637-7f1e99ead304"}, {"subtype": "Chart", "type": "Plot", "id": "059cd9ac-98c3-44b6-83db-cc05b1f959ec", "attributes": {"x_range": {"type": "FactorRange", "id": "6e341d39-fd66-43b5-b029-b894a4c9d777"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "db6f6105-b2b5-4024-8ec5-fe3d967ca974"}, "title": "How would you rate your competence in the following version control tools? [Mercurial]", "renderers": [{"type": "CategoricalAxis", "id": "45aa1793-2abe-4a76-99d7-159262cf3b12"}, {"type": "LinearAxis", "id": "56b0c550-3ca4-4c9b-9f64-7daa085ffe97"}, {"type": "Grid", "id": "96b4d299-7293-413e-a9be-a943be5eb613"}, {"type": "GlyphRenderer", "id": "a3684ab7-bcf7-48e9-a0a7-0bb457dc197a"}, {"type": "GlyphRenderer", "id": "80bcf04c-2fa7-49cc-823c-6eee0f9726bc"}, {"type": "Legend", "id": "c4d00e8e-172d-4528-828c-dd5d94f144b7"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "24fb8be4-1297-4c28-a4d2-1a51e68d6f76"}, "plot_height": 560, "doc": null, "id": "059cd9ac-98c3-44b6-83db-cc05b1f959ec", "tools": [], "below": [{"type": "CategoricalAxis", "id": "45aa1793-2abe-4a76-99d7-159262cf3b12"}], "left": [{"type": "LinearAxis", "id": "56b0c550-3ca4-4c9b-9f64-7daa085ffe97"}]}}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [6.0, 18.0, 10.0, 7.0, 8.0], "Platform": [12, 36, 20, 14, 16], "catFx-Team": ["1 - no impact:0.666666666667", "2 - little impact:0.666666666667", "3 - a fair amount of impact:0.666666666667", "4 - a significant amount of impact:0.666666666667", "5 - an extremely frustrating amount of impact:0.666666666667"], "cat": ["1 - no impact", "2 - little impact", "3 - a fair amount of impact", "4 - a significant amount of impact", "5 - an extremely frustrating amount of impact"], "midPlatform": [6.0, 18.0, 10.0, 7.0, 8.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [17.0, 79.0, 44.0, 27.0, 29.0], "catPlatform": ["1 - no impact:0.333333333333", "2 - little impact:0.333333333333", "3 - a fair amount of impact:0.333333333333", "4 - a significant amount of impact:0.333333333333", "5 - an extremely frustrating amount of impact:0.333333333333"], "stackedFx-Team": [14.5, 57.5, 32.0, 20.5, 22.5], "midFx-Team": [2.5, 21.5, 12.0, 6.5, 6.5], "Fx-Team": [5, 43, 24, 13, 13]}, "id": "90aa0dc7-c0dd-4115-a584-830176037067"}, "type": "ColumnDataSource", "id": "90aa0dc7-c0dd-4115-a584-830176037067"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "f8c144d7-1a9e-4cc4-8de0-33ead1cae93a"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "7f8465ff-c60f-495c-a9c0-6bd1b34a790e"}, "ticker": {"type": "BasicTicker", "id": "36e90c72-d995-43f9-b53d-ad7d518d4a06"}, "id": "3bdcdfe1-21a2-46ce-874c-37d9ec2a2b37"}, "type": "LinearAxis", "id": "3bdcdfe1-21a2-46ce-874c-37d9ec2a2b37"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "0d2bd82b-b125-4d8e-bc8a-22a86ec3a287"}, "type": "ToolEvents", "id": "0d2bd82b-b125-4d8e-bc8a-22a86ec3a287"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "66f73d12-4c8e-4412-a61a-952be0b375fb"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "9fa14170-1df3-4acb-a3db-7fabb71673b8"}, "ticker": {"type": "BasicTicker", "id": "c61bc813-2553-4181-b03d-2b29b5a83e76"}, "id": "b7461d66-5a34-468b-94f0-d0b9ac8a8699"}, "type": "LinearAxis", "id": "b7461d66-5a34-468b-94f0-d0b9ac8a8699"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "92ff98ee-44de-47b6-a03b-27b8d7200a4e"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "91bb8cd4-5fca-4cba-aa5e-a9dca3e87ce7"}, "ticker": {"type": "BasicTicker", "id": "5d38421a-3eb1-49d7-beb3-7503b5adb9de"}, "id": "7c4c5125-62ee-4428-bce2-51d44567bef1"}, "type": "LinearAxis", "id": "7c4c5125-62ee-4428-bce2-51d44567bef1"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "954a76aa-3c85-4a4e-8ac9-d3dafb8a5825"}, "orientation": "top_left", "tags": [], "doc": null, "id": "67778e23-0e6d-4528-beb9-10b69caeb19f", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "bf6107af-6b1d-484c-b06c-1f56f4d1b239"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "4a031f68-79a7-4a61-a59b-758cfe0428e2"}]]]}, "type": "Legend", "id": "67778e23-0e6d-4528-beb9-10b69caeb19f"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "3f6451bd-a783-4e0d-8fb3-5b59fc7ace06"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "13b0f11e-d467-4e8e-81ce-fbc1b48bbf89"}, "ticker": {"type": "CategoricalTicker", "id": "a095c919-829b-4014-a3ed-b678957a549d"}, "id": "61396d69-137e-4c19-9d1d-f1c7c677522f"}, "type": "CategoricalAxis", "id": "61396d69-137e-4c19-9d1d-f1c7c677522f"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "9f798019-bd28-420d-9c1b-a57cb25181d2"}, "type": "BasicTicker", "id": "9f798019-bd28-420d-9c1b-a57cb25181d2"}, {"subtype": "Chart", "type": "Plot", "id": "85eee339-71dd-4b32-885e-6e841a58b5b8", "attributes": {"x_range": {"type": "FactorRange", "id": "e5c3a1c0-2f04-44d9-a453-c02ef712dda1"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "f3eaf3e3-1f48-4a54-bed1-c7ccf7f6cffe"}, "title": "How impactful would the following potential MozReview features have on your productivity? [Automatically file bugs when pushing reviews]", "renderers": [{"type": "CategoricalAxis", "id": "690fbc81-97ce-4f01-adad-0ba07070b53a"}, {"type": "LinearAxis", "id": "89457405-861b-4e4d-9bd3-0f910599a629"}, {"type": "Grid", "id": "112616ce-524f-49ca-a3d1-09d30e4b917e"}, {"type": "GlyphRenderer", "id": "ed87681b-1990-4a87-9f23-565eb53e3494"}, {"type": "GlyphRenderer", "id": "654092f1-e898-42ba-a645-20f639df3658"}, {"type": "Legend", "id": "99997b77-3f6a-45b0-85d5-f8097e237ed8"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "3d259aff-628b-46e1-b37b-9077d3130413"}, "plot_height": 560, "doc": null, "id": "85eee339-71dd-4b32-885e-6e841a58b5b8", "tools": [], "below": [{"type": "CategoricalAxis", "id": "690fbc81-97ce-4f01-adad-0ba07070b53a"}], "left": [{"type": "LinearAxis", "id": "89457405-861b-4e4d-9bd3-0f910599a629"}]}}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "048ba528-2c8f-4b32-aa84-407164f57fcf"}, "type": "Rect", "id": "048ba528-2c8f-4b32-aa84-407164f57fcf"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "ecbd62cd-2493-4468-b044-ab3e71b33062"}, "type": "ToolEvents", "id": "ecbd62cd-2493-4468-b044-ab3e71b33062"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "10544a4e-d09a-4d33-b9db-dad1dffdd8b4"}, "orientation": "top_left", "tags": [], "doc": null, "id": "5f15c47e-b37f-4564-a540-6a9f84e6ffe0", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "66d3e3aa-3ab9-43ab-96ff-9b56cecd5318"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "6a42f71a-4032-4301-a00a-fa06052ead67"}]]]}, "type": "Legend", "id": "5f15c47e-b37f-4564-a540-6a9f84e6ffe0"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "f4922c15-154c-41fa-9f38-f0df3b4cf579"}, "orientation": "top_left", "tags": [], "doc": null, "id": "31a78165-faa3-4258-a9c8-dd04daa280f2", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "e0f8dada-a2c9-4be3-8720-69890679bed9"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "67693119-85f7-4b09-99dd-1b723bf1d717"}]]]}, "type": "Legend", "id": "31a78165-faa3-4258-a9c8-dd04daa280f2"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [3.0, 16.5, 9.5, 8.5, 10.5], "Platform": [6, 33, 19, 17, 21], "catFx-Team": ["N/A:0.666666666667", "1 = least impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "midPlatform": [3.0, 16.5, 9.5, 8.5, 10.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [16.0, 70.0, 51.0, 30.0, 26.0], "catPlatform": ["N/A:0.333333333333", "1 = least impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [11.0, 51.5, 35.0, 23.5, 23.5], "midFx-Team": [5.0, 18.5, 16.0, 6.5, 2.5], "Fx-Team": [10, 37, 32, 13, 5]}, "id": "c149876c-784c-45c1-b687-92d4d7658f5f"}, "type": "ColumnDataSource", "id": "c149876c-784c-45c1-b687-92d4d7658f5f"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "104b1983-c921-4a16-aa26-e806548940dd"}, "type": "BasicTicker", "id": "104b1983-c921-4a16-aa26-e806548940dd"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "c97819ca-173e-40a9-807d-aa4ec9dd6bb7"}, "type": "Rect", "id": "c97819ca-173e-40a9-807d-aa4ec9dd6bb7"}, {"attributes": {"end": 91.30000000000001, "callback": null, "doc": null, "tags": [], "start": 0, "id": "53b6a11b-e2c2-458f-8dd9-c84b4593c27f"}, "type": "Range1d", "id": "53b6a11b-e2c2-458f-8dd9-c84b4593c27f"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "758b2f65-117f-48db-a194-b2391e90cc8f"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "2257ebae-6f61-4056-a247-054880696f3d"}, "id": "fa25c1e2-a9e2-45be-a8fc-54aeea34d10f"}, "type": "Grid", "id": "fa25c1e2-a9e2-45be-a8fc-54aeea34d10f"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [2.0, 10.0, 2.5, 11.5, 9.0, 2.0], "Platform": [4, 20, 5, 23, 18, 4], "catFx-Team": ["All Other Responses:0.666666666667", "N/A:0.666666666667", "Cut all investment:0.666666666667", "Keep about the same:0.666666666667", "Increase investment:0.666666666667", "Drastically increase investment:0.666666666667"], "cat": ["All Other Responses", "N/A", "Cut all investment", "Keep about the same", "Increase investment", "Drastically increase investment"], "midPlatform": [2.0, 10.0, 2.5, 11.5, 9.0, 2.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [6.0, 57.0, 7.0, 33.0, 28.0, 12.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A:0.333333333333", "Cut all investment:0.333333333333", "Keep about the same:0.333333333333", "Increase investment:0.333333333333", "Drastically increase investment:0.333333333333"], "stackedFx-Team": [5.0, 38.5, 6.0, 28.0, 23.0, 8.0], "midFx-Team": [1.0, 18.5, 1.0, 5.0, 5.0, 4.0], "Fx-Team": [2, 37, 2, 10, 10, 8]}, "id": "52077e32-8dba-451d-8bf5-8c6b9d004552"}, "type": "ColumnDataSource", "id": "52077e32-8dba-451d-8bf5-8c6b9d004552"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "0319b738-c686-4533-b317-a56e24d2ad01"}, "type": "Rect", "id": "0319b738-c686-4533-b317-a56e24d2ad01"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ce0e6eca-a674-4977-99cb-6652b2d7fe92"}, "orientation": "top_left", "tags": [], "doc": null, "id": "5faa2c99-0073-44ef-b14d-a7588b7ac05b", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "925f50a1-f7f1-4237-8672-39e892556e60"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "186980c8-a155-403b-9532-3cd651b2caad"}]]]}, "type": "Legend", "id": "5faa2c99-0073-44ef-b14d-a7588b7ac05b"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "8a5e5dfc-483f-49b2-9aa6-166c5c9ee1e3"}, "type": "BasicTicker", "id": "8a5e5dfc-483f-49b2-9aa6-166c5c9ee1e3"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fdce97de-63d3-4989-b605-146792ec8c17"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "87db831b-1421-40e6-b999-3c9621a3a263"}, "id": "5e5c01c1-b509-43ee-ba0d-446b7c1f83dd"}, "type": "Grid", "id": "5e5c01c1-b509-43ee-ba0d-446b7c1f83dd"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "07199e6a-f16d-4717-ab6d-6cab21bb0e99"}, "orientation": "top_left", "tags": [], "doc": null, "id": "370a15a5-7a98-47ce-a319-74939cc7b780", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "b14fd36d-477b-4789-bee1-c795fe164ae8"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "3f2eb5fd-4473-4133-b9a2-36792c72e4fc"}]]]}, "type": "Legend", "id": "370a15a5-7a98-47ce-a319-74939cc7b780"}, {"attributes": {"doc": null, "id": "3f4702fd-e523-453c-acb5-ebc54b6ff2ba", "tags": []}, "type": "BasicTickFormatter", "id": "3f4702fd-e523-453c-acb5-ebc54b6ff2ba"}, {"attributes": {"doc": null, "id": "4b9eb7e5-b812-4aed-8bb8-f33fe5660ff0", "tags": []}, "type": "CategoricalTicker", "id": "4b9eb7e5-b812-4aed-8bb8-f33fe5660ff0"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "5582c568-ce52-4ad1-86db-1b69b7240ad6"}, "type": "ToolEvents", "id": "5582c568-ce52-4ad1-86db-1b69b7240ad6"}, {"attributes": {"doc": null, "id": "791830ed-69c3-45fb-8774-ad8a260283c6", "tags": []}, "type": "CategoricalTicker", "id": "791830ed-69c3-45fb-8774-ad8a260283c6"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "abff72f7-88d4-4678-9306-1b63af79965d"}, "tags": [], "doc": null, "selection_glyph": null, "id": "78aabb17-ed93-4dc0-aa8c-19016d857dab", "glyph": {"type": "Rect", "id": "48441627-a510-472b-9a38-a8e37764a02b"}}, "type": "GlyphRenderer", "id": "78aabb17-ed93-4dc0-aa8c-19016d857dab"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "06c4ac21-160b-4179-9af8-a880c4ddfd3d"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "614333e2-a8c0-44e6-92b8-e0bbd3d4d6ab"}, "id": "9e8d0ce2-e55b-4c23-95d7-32213e84d342"}, "type": "Grid", "id": "9e8d0ce2-e55b-4c23-95d7-32213e84d342"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [3.0, 22.5, 7.5, 4.5, 10.0], "Platform": [6, 45, 15, 9, 20], "catFx-Team": ["All Other Responses:0.666666666667", "No impact / Not applicable:0.666666666667", "A little impact:0.666666666667", "Significant impact:0.666666666667", "Tons of impact / Implement this ASAP:0.666666666667"], "cat": ["All Other Responses", "No impact / Not applicable", "A little impact", "Significant impact", "Tons of impact / Implement this ASAP"], "midPlatform": [3.0, 22.5, 7.5, 4.5, 10.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [6.0, 88.0, 28.0, 25.0, 47.0], "catPlatform": ["All Other Responses:0.333333333333", "No impact / Not applicable:0.333333333333", "A little impact:0.333333333333", "Significant impact:0.333333333333", "Tons of impact / Implement this ASAP:0.333333333333"], "stackedFx-Team": [6.0, 66.5, 21.5, 17.0, 33.5], "midFx-Team": [0.0, 21.5, 6.5, 8.0, 13.5], "Fx-Team": [0, 43, 13, 16, 27]}, "id": "f7e53b60-70f5-4531-b7d8-bdc4f8605eb2"}, "type": "ColumnDataSource", "id": "f7e53b60-70f5-4531-b7d8-bdc4f8605eb2"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [2.5, 23.5, 2.5, 7.0, 1.5], "Platform": [5, 47, 5, 14, 3], "catFx-Team": ["All Other Responses:0.666666666667", "N/A:0.666666666667", "Below average:0.666666666667", "Average:0.666666666667", "Above average:0.666666666667"], "cat": ["All Other Responses", "N/A", "Below average", "Average", "Above average"], "midPlatform": [2.5, 23.5, 2.5, 7.0, 1.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [7.0, 90.0, 7.0, 22.0, 16.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A:0.333333333333", "Below average:0.333333333333", "Average:0.333333333333", "Above average:0.333333333333"], "stackedFx-Team": [6.0, 68.5, 6.0, 18.0, 9.5], "midFx-Team": [1.0, 21.5, 1.0, 4.0, 6.5], "Fx-Team": [2, 43, 2, 8, 13]}, "id": "445d1409-04d0-401f-b48f-851db3396232"}, "type": "ColumnDataSource", "id": "445d1409-04d0-401f-b48f-851db3396232"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "7c717be5-14f3-4fc0-bb91-baea7f2522a7"}, "type": "Rect", "id": "7c717be5-14f3-4fc0-bb91-baea7f2522a7"}, {"attributes": {"doc": null, "id": "80e4cf4a-3c8f-4fa1-b2b5-ce993dd25299", "tags": []}, "type": "CategoricalTicker", "id": "80e4cf4a-3c8f-4fa1-b2b5-ce993dd25299"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "49ee2dbc-4e08-4ee7-a7a6-db40d58b7de5"}, "type": "Rect", "id": "49ee2dbc-4e08-4ee7-a7a6-db40d58b7de5"}, {"attributes": {"callback": null, "factors": ["N/A", "Extremely dissatisfied", "Below average", "Average", "Above average", "It's awesome!"], "doc": null, "tags": [], "id": "a6f25e8c-9896-4d65-b15d-1ed0bd0ea17a"}, "type": "FactorRange", "id": "a6f25e8c-9896-4d65-b15d-1ed0bd0ea17a"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fd0867ed-5ca0-4e0f-a6af-aab4fb0da736"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "ec195286-77ad-4afb-aeb4-2084960c62ba"}, "ticker": {"type": "CategoricalTicker", "id": "33d25c89-37be-4bb5-a128-026f75a6e341"}, "id": "c0fa7ef8-ff40-4a23-b894-f0c18c8b48d6"}, "type": "CategoricalAxis", "id": "c0fa7ef8-ff40-4a23-b894-f0c18c8b48d6"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ce0e6eca-a674-4977-99cb-6652b2d7fe92"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "edaeb88f-0958-4473-afa5-ff0add9378d1"}, "id": "8ae77ad2-c317-48d5-98ac-56f2a207515d"}, "type": "Grid", "id": "8ae77ad2-c317-48d5-98ac-56f2a207515d"}, {"attributes": {"end": 44.0, "callback": null, "doc": null, "tags": [], "start": 0, "id": "a654b375-e8a1-4b97-ae9a-276c5db7a432"}, "type": "Range1d", "id": "a654b375-e8a1-4b97-ae9a-276c5db7a432"}, {"attributes": {"doc": null, "id": "cff4191a-c449-47f8-a38b-1d1f4038be05", "tags": []}, "type": "CategoricalTickFormatter", "id": "cff4191a-c449-47f8-a38b-1d1f4038be05"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "dd3a6add-c019-4d5a-9de0-cfee79f48cf2"}, "tags": [], "doc": null, "selection_glyph": null, "id": "02b51642-2a68-4f38-8c74-ee9869a97bb5", "glyph": {"type": "Rect", "id": "22162a67-39d1-4f80-bdd7-0deb9056e9d5"}}, "type": "GlyphRenderer", "id": "02b51642-2a68-4f38-8c74-ee9869a97bb5"}, {"attributes": {"end": 49.50000000000001, "callback": null, "doc": null, "tags": [], "start": 0, "id": "72bff794-4bb8-4d17-99b0-1eeb64d2cf40"}, "type": "Range1d", "id": "72bff794-4bb8-4d17-99b0-1eeb64d2cf40"}, {"subtype": "Chart", "type": "Plot", "id": "e329563d-7487-4cc9-a7a1-1d0665bf4881", "attributes": {"x_range": {"type": "FactorRange", "id": "46922755-461a-4d6b-9443-dde5aea98bf9"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "b6a2fd79-e6ba-4fb3-aaec-38ae8e9d4668"}, "title": "Please rate your satisfaction with the following items. [Mozilla-specific extensions (firefoxtree, mozext, bzexport, reviewboard, etc)]", "renderers": [{"type": "CategoricalAxis", "id": "7b1be884-c0a8-4f61-abec-06de2de6c96e"}, {"type": "LinearAxis", "id": "a45052b5-e95b-47bf-94e0-00fa43bd9860"}, {"type": "Grid", "id": "7ccde449-1597-4440-8d61-60e8a1d81dfc"}, {"type": "GlyphRenderer", "id": "69d1dcf9-c9e9-42f0-8594-924d3f0d4e4b"}, {"type": "GlyphRenderer", "id": "374beb42-9918-41ef-860d-6e726caae72f"}, {"type": "Legend", "id": "9d0a63a8-b6ab-4d19-92ce-f30aaa61d4a1"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "9e1184b0-9394-4d5e-ad5b-6b62aa01236d"}, "plot_height": 560, "doc": null, "id": "e329563d-7487-4cc9-a7a1-1d0665bf4881", "tools": [], "below": [{"type": "CategoricalAxis", "id": "7b1be884-c0a8-4f61-abec-06de2de6c96e"}], "left": [{"type": "LinearAxis", "id": "a45052b5-e95b-47bf-94e0-00fa43bd9860"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "1f86723f-f8e2-456b-ae4b-4e2f52bafd70"}, "orientation": "top_left", "tags": [], "doc": null, "id": "4b1ed0bb-ab11-4a2a-a056-e8e07d84efea", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "a46b875b-7f94-446b-a871-fca40de1c217"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "6d0fc755-4ec0-4338-86a2-7f81847d2a70"}]]]}, "type": "Legend", "id": "4b1ed0bb-ab11-4a2a-a056-e8e07d84efea"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "788e0db3-1354-4fa4-8505-f9ab777d887a"}, "type": "Rect", "id": "788e0db3-1354-4fa4-8505-f9ab777d887a"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ec6ffc7e-8da4-405e-b370-a3d196a2ef2c"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "f00b07c7-b3c9-49ae-aef1-0cd54566447b"}, "ticker": {"type": "BasicTicker", "id": "f3d71584-33ce-46a7-91f2-a2d271d46943"}, "id": "cf3815d0-7991-4e32-aa40-f4226d23c33e"}, "type": "LinearAxis", "id": "cf3815d0-7991-4e32-aa40-f4226d23c33e"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "bf133e7b-de92-445d-b917-15720728053f"}, "type": "BasicTicker", "id": "bf133e7b-de92-445d-b917-15720728053f"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "7ea767e9-f9f7-4cad-bc97-5711adfcc40c"}, "tags": [], "doc": null, "selection_glyph": null, "id": "115674ff-2865-4f51-850d-1cbea278f4e9", "glyph": {"type": "Rect", "id": "5a2c292c-6d45-4bb5-8689-55b20fef247d"}}, "type": "GlyphRenderer", "id": "115674ff-2865-4f51-850d-1cbea278f4e9"}, {"attributes": {"end": 110.00000000000001, "callback": null, "doc": null, "tags": [], "start": 0, "id": "791da263-c477-4695-af2e-5ab232e905eb"}, "type": "Range1d", "id": "791da263-c477-4695-af2e-5ab232e905eb"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fd2801db-f7d9-4e81-a693-dd7db4bdc260"}, "orientation": "top_left", "tags": [], "doc": null, "id": "7831a07b-ece3-44bd-83db-81fd051baa2c", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "0835aac6-5e58-4b88-bf1e-f13faef3f5e4"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "a12948da-71b8-43ac-a6f0-22e25316a86a"}]]]}, "type": "Legend", "id": "7831a07b-ece3-44bd-83db-81fd051baa2c"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "d4e1de47-35ea-4aae-b00a-47ef348c2da5"}, "type": "ToolEvents", "id": "d4e1de47-35ea-4aae-b00a-47ef348c2da5"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "67cc97d7-8db2-478f-bab7-31e52c52c7f4"}, "type": "BasicTicker", "id": "67cc97d7-8db2-478f-bab7-31e52c52c7f4"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "99192d3b-c44d-41b5-ae44-ddfe7aaaa0f8"}, "type": "BasicTicker", "id": "99192d3b-c44d-41b5-ae44-ddfe7aaaa0f8"}, {"subtype": "Chart", "type": "Plot", "id": "99384585-1096-4d8d-8a63-62ecbe4b315b", "attributes": {"x_range": {"type": "FactorRange", "id": "0ac7b9b3-d8fc-4e63-ab48-3db092b95cfa"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "c2679fe1-d409-4ad3-85cb-842af5408d0b"}, "title": "How satisfied are you with the following items at Mozilla? [Online code indexing (DXR, MXR)]", "renderers": [{"type": "CategoricalAxis", "id": "f6158e84-27ce-4718-bf10-a6b6e0da42e3"}, {"type": "LinearAxis", "id": "1d9da7aa-0479-4e24-9e49-ff162bbc65ba"}, {"type": "Grid", "id": "0747db1b-ed46-46f7-9929-8136e9411c90"}, {"type": "GlyphRenderer", "id": "667c105d-40b7-441d-9368-71fc06e1e3ce"}, {"type": "GlyphRenderer", "id": "dca87db1-4628-4572-8ac7-e7011ef6bf1e"}, {"type": "Legend", "id": "45442974-8a74-43ec-8898-900f76dfd061"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "c90e9143-8063-4fc1-874f-53fa9d190d40"}, "plot_height": 560, "doc": null, "id": "99384585-1096-4d8d-8a63-62ecbe4b315b", "tools": [], "below": [{"type": "CategoricalAxis", "id": "f6158e84-27ce-4718-bf10-a6b6e0da42e3"}], "left": [{"type": "LinearAxis", "id": "1d9da7aa-0479-4e24-9e49-ff162bbc65ba"}]}}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2], "stackedPlatform": [12.0, 10.0, 11.5, 15.5], "Platform": [24, 20, 23, 31], "catFx-Team": ["This is my first job / I'm not sure:0.666666666667", "Slower:0.666666666667", "About the same:0.666666666667", "Faster:0.666666666667"], "cat": ["This is my first job / I'm not sure", "Slower", "About the same", "Faster"], "midPlatform": [12.0, 10.0, 11.5, 15.5], "width": [0.8, 0.8, 0.8, 0.8], "zero": [45.0, 60.0, 44.0, 47.0], "catPlatform": ["This is my first job / I'm not sure:0.333333333333", "Slower:0.333333333333", "About the same:0.333333333333", "Faster:0.333333333333"], "stackedFx-Team": [34.5, 40.0, 33.5, 39.0], "midFx-Team": [10.5, 20.0, 10.5, 8.0], "Fx-Team": [21, 40, 21, 16]}, "id": "fc6bcfc7-6e28-44c4-9061-e8f4c91b80af"}, "type": "ColumnDataSource", "id": "fc6bcfc7-6e28-44c4-9061-e8f4c91b80af"}, {"subtype": "Chart", "type": "Plot", "id": "954a76aa-3c85-4a4e-8ac9-d3dafb8a5825", "attributes": {"x_range": {"type": "FactorRange", "id": "8930e188-7837-41e9-8c26-80fde6d39157"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "9518313c-bde6-4184-bd8c-6009e45af4bf"}, "title": "How impactful would the following potential MozReview features have on your productivity? [Git support (submit reviews from Git)]", "renderers": [{"type": "CategoricalAxis", "id": "5cfd7410-8c61-4b47-aa8b-9aca0aa26094"}, {"type": "LinearAxis", "id": "c88e9a50-492f-4a30-84f7-29790d8e2eb1"}, {"type": "Grid", "id": "db3b9581-0abf-49ab-b9d6-a213eaa3d75b"}, {"type": "GlyphRenderer", "id": "bf6107af-6b1d-484c-b06c-1f56f4d1b239"}, {"type": "GlyphRenderer", "id": "4a031f68-79a7-4a61-a59b-758cfe0428e2"}, {"type": "Legend", "id": "67778e23-0e6d-4528-beb9-10b69caeb19f"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "59b31916-c089-46be-bc8a-b1814929441c"}, "plot_height": 560, "doc": null, "id": "954a76aa-3c85-4a4e-8ac9-d3dafb8a5825", "tools": [], "below": [{"type": "CategoricalAxis", "id": "5cfd7410-8c61-4b47-aa8b-9aca0aa26094"}], "left": [{"type": "LinearAxis", "id": "c88e9a50-492f-4a30-84f7-29790d8e2eb1"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "9e9e91b9-fe46-4eb3-97c9-9ff989cd30c2"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "ec9e3185-3442-44b6-a593-a546d272e0bd"}, "id": "64611ca2-1b13-4799-9cab-b473fe931b1a"}, "type": "Grid", "id": "64611ca2-1b13-4799-9cab-b473fe931b1a"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "428e5f98-2f83-4b91-b36b-414ece060d10"}, "orientation": "top_left", "tags": [], "doc": null, "id": "17470835-982b-426a-a553-7612c0e585fd", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "8c8abfcc-a198-4dec-8ac4-7be4a58656b7"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "f5ac1389-b765-4df8-822d-4f672f034a96"}]]]}, "type": "Legend", "id": "17470835-982b-426a-a553-7612c0e585fd"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "fe0ce7a5-c96f-46a6-ae0d-83ee6cb96dbd"}, "type": "Rect", "id": "fe0ce7a5-c96f-46a6-ae0d-83ee6cb96dbd"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "31e55b47-64c6-443d-8756-b526a0311feb"}, "orientation": "top_left", "tags": [], "doc": null, "id": "3fdfdf3c-c129-4bb1-95b9-e60830b00bad", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "115674ff-2865-4f51-850d-1cbea278f4e9"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "e070b272-3af6-4eab-99ab-a43ffa0fb9f9"}]]]}, "type": "Legend", "id": "3fdfdf3c-c129-4bb1-95b9-e60830b00bad"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "65f9d86b-1c58-4101-a0ef-32fed75fe723"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "24de1bda-7eb0-4535-b6f2-b74e5600adea"}, "ticker": {"type": "CategoricalTicker", "id": "3dc537b1-8374-4c0e-91b3-6ac50975ffaa"}, "id": "41ffd960-c0eb-49a6-8d96-34705698c445"}, "type": "CategoricalAxis", "id": "41ffd960-c0eb-49a6-8d96-34705698c445"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "b5b3fe99-efec-49a1-8856-1eb3e563c879"}, "type": "ToolEvents", "id": "b5b3fe99-efec-49a1-8856-1eb3e563c879"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A", "Below average", "Average", "Above average"], "doc": null, "tags": [], "id": "801646bc-1b8c-4ed7-8a75-c1e42f928164"}, "type": "FactorRange", "id": "801646bc-1b8c-4ed7-8a75-c1e42f928164"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "f44d34d7-e13e-4cdd-9a46-29a597039bd5"}, "type": "ToolEvents", "id": "f44d34d7-e13e-4cdd-9a46-29a597039bd5"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2], "stackedPlatform": [3.5, 4.0, 22.0, 19.5], "Platform": [7, 8, 44, 39], "catFx-Team": ["N/A:0.666666666667", "It's gotten worse:0.666666666667", "About the same:0.666666666667", "Gotten better:0.666666666667"], "cat": ["N/A", "It's gotten worse", "About the same", "Gotten better"], "midPlatform": [3.5, 4.0, 22.0, 19.5], "width": [0.8, 0.8, 0.8, 0.8], "zero": [15.0, 24.0, 84.0, 74.0], "catPlatform": ["N/A:0.333333333333", "It's gotten worse:0.333333333333", "About the same:0.333333333333", "Gotten better:0.333333333333"], "stackedFx-Team": [11.0, 16.0, 64.0, 56.5], "midFx-Team": [4.0, 8.0, 20.0, 17.5], "Fx-Team": [8, 16, 40, 35]}, "id": "86722565-946f-484a-b2b5-f54ab606d088"}, "type": "ColumnDataSource", "id": "86722565-946f-484a-b2b5-f54ab606d088"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "c7c90e9d-22b1-4602-9a4d-efdd63afa873"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "890d1fad-276b-473e-a794-3e90b50bf192"}, "ticker": {"type": "BasicTicker", "id": "83516706-0294-4188-93cb-0a19c102b42f"}, "id": "4ac60d87-3d40-42af-824d-5434d7071d49"}, "type": "LinearAxis", "id": "4ac60d87-3d40-42af-824d-5434d7071d49"}, {"attributes": {"end": 50.6, "callback": null, "doc": null, "tags": [], "start": 0, "id": "1bf5b07d-e48c-48df-a52d-82961f3db098"}, "type": "Range1d", "id": "1bf5b07d-e48c-48df-a52d-82961f3db098"}, {"attributes": {"end": 49.50000000000001, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "9518313c-bde6-4184-bd8c-6009e45af4bf"}, "type": "Range1d", "id": "9518313c-bde6-4184-bd8c-6009e45af4bf"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "f54b3ea3-313b-47a4-933b-2449d562088a"}, "type": "BasicTicker", "id": "f54b3ea3-313b-47a4-933b-2449d562088a"}, {"attributes": {"callback": null, "factors": ["This is my first job / I'm not sure", "Slower", "About the same", "Faster"], "doc": null, "tags": [], "id": "bd0e1180-6603-4959-af2b-a5818b90cc47"}, "type": "FactorRange", "id": "bd0e1180-6603-4959-af2b-a5818b90cc47"}, {"attributes": {"doc": null, "id": "440193a2-a65c-4695-9a96-e1b9db8f513c", "tags": []}, "type": "BasicTickFormatter", "id": "440193a2-a65c-4695-9a96-e1b9db8f513c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ef80c114-5cbf-42f5-9b3e-220a564369b4"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "7ec21655-38ee-49c8-82c6-6935746bea48"}, "ticker": {"type": "BasicTicker", "id": "f01fbe93-2bb4-4532-b71c-816df42230e8"}, "id": "eaeca3c5-74b7-459c-bd56-9a16c3e71f44"}, "type": "LinearAxis", "id": "eaeca3c5-74b7-459c-bd56-9a16c3e71f44"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "0a5b11ba-b147-4933-a11e-ed712a008782"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "b08be3d8-0b88-4387-8807-829648b40793"}, "ticker": {"type": "CategoricalTicker", "id": "da5a8237-b70a-473a-b8fe-5455732070f2"}, "id": "02bfe371-0417-4352-858f-f4b866577196"}, "type": "CategoricalAxis", "id": "02bfe371-0417-4352-858f-f4b866577196"}, {"subtype": "Chart", "type": "Plot", "id": "ac80c5e0-3f83-454b-b4ed-ee002dcc3c50", "attributes": {"x_range": {"type": "FactorRange", "id": "d274d627-5a9d-4b73-aaaa-a9cf5e8e5fbd"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "2c558910-f5ec-408b-bdde-f11c072f3bd5"}, "title": "Thinking of the entire development process, from checking out code to landing a patch, please rank the following categories according to how much they impact your own productivity. [Too many distractions and context switches]", "renderers": [{"type": "CategoricalAxis", "id": "a6b61701-2b3c-4fdd-85be-069c25e97f19"}, {"type": "LinearAxis", "id": "763f5519-81cd-4300-9dde-3213b41fe32b"}, {"type": "Grid", "id": "cf533d73-3d4d-4f30-ba9a-a50cc9a193da"}, {"type": "GlyphRenderer", "id": "ae262bee-ad02-4466-81f4-73094c6513f0"}, {"type": "GlyphRenderer", "id": "4c18b391-aee4-4586-a5a1-c80ff350c3bf"}, {"type": "Legend", "id": "ac5228b7-3584-4458-b687-33262e4c61a9"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "fc98ebbf-a440-496c-960f-15a6089d841f"}, "plot_height": 560, "doc": null, "id": "ac80c5e0-3f83-454b-b4ed-ee002dcc3c50", "tools": [], "below": [{"type": "CategoricalAxis", "id": "a6b61701-2b3c-4fdd-85be-069c25e97f19"}], "left": [{"type": "LinearAxis", "id": "763f5519-81cd-4300-9dde-3213b41fe32b"}]}}, {"attributes": {"doc": null, "id": "326d565f-3bb3-4767-8f45-240b05f9fa26", "tags": []}, "type": "CategoricalTickFormatter", "id": "326d565f-3bb3-4767-8f45-240b05f9fa26"}, {"attributes": {"end": 44.0, "callback": null, "doc": null, "tags": [], "start": 0, "id": "9c31ef8d-5fc7-43df-a4df-e9244fc296cc"}, "type": "Range1d", "id": "9c31ef8d-5fc7-43df-a4df-e9244fc296cc"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [3.5, 15.0, 15.0, 10.0, 5.5], "Platform": [7, 30, 30, 20, 11], "catFx-Team": ["1 - no impact:0.666666666667", "2 - little impact:0.666666666667", "3 - a fair amount of impact:0.666666666667", "4 - a significant amount of impact:0.666666666667", "5 - an extremely frustrating amount of impact:0.666666666667"], "cat": ["1 - no impact", "2 - little impact", "3 - a fair amount of impact", "4 - a significant amount of impact", "5 - an extremely frustrating amount of impact"], "midPlatform": [3.5, 15.0, 15.0, 10.0, 5.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [17.0, 59.0, 59.0, 36.0, 24.0], "catPlatform": ["1 - no impact:0.333333333333", "2 - little impact:0.333333333333", "3 - a fair amount of impact:0.333333333333", "4 - a significant amount of impact:0.333333333333", "5 - an extremely frustrating amount of impact:0.333333333333"], "stackedFx-Team": [12.0, 44.5, 44.5, 28.0, 17.5], "midFx-Team": [5.0, 14.5, 14.5, 8.0, 6.5], "Fx-Team": [10, 29, 29, 16, 13]}, "id": "225a3807-8f5e-4fcd-bc37-3a4316b1e9d8"}, "type": "ColumnDataSource", "id": "225a3807-8f5e-4fcd-bc37-3a4316b1e9d8"}, {"attributes": {"end": 49.50000000000001, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "2e8e8b43-8316-404b-b504-948de0a7224a"}, "type": "Range1d", "id": "2e8e8b43-8316-404b-b504-948de0a7224a"}, {"subtype": "Chart", "type": "Plot", "id": "1bae94c3-cb4f-4af0-aaea-500571dfbcbb", "attributes": {"x_range": {"type": "FactorRange", "id": "612e985f-9489-4ed6-b8eb-1b4f5850618c"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "a4b86870-6bf0-4b0d-a2b1-7a9e0fd591b3"}, "title": "Do you use Mercurial (hg) at all?", "renderers": [{"type": "CategoricalAxis", "id": "831a5ce1-54df-4331-b389-b2d113c4c47c"}, {"type": "LinearAxis", "id": "4ec624f0-24d1-4dc6-8a8a-57de6d91db2e"}, {"type": "Grid", "id": "93ed74be-2869-4f53-83ce-2da35232382b"}, {"type": "GlyphRenderer", "id": "697edebb-eefd-4d05-b56b-fa42e9a5e82c"}, {"type": "GlyphRenderer", "id": "f65595d5-3c09-4463-a655-a2416f36f308"}, {"type": "Legend", "id": "fe32b9ee-aeb6-4c96-a846-960d47a01edc"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "5fa43983-a8b4-4afa-abf8-92c26b571edb"}, "plot_height": 560, "doc": null, "id": "1bae94c3-cb4f-4af0-aaea-500571dfbcbb", "tools": [], "below": [{"type": "CategoricalAxis", "id": "831a5ce1-54df-4331-b389-b2d113c4c47c"}], "left": [{"type": "LinearAxis", "id": "4ec624f0-24d1-4dc6-8a8a-57de6d91db2e"}]}}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "4d77cf1b-3760-4bbf-ac96-83dbdace8e13"}, "type": "BasicTicker", "id": "4d77cf1b-3760-4bbf-ac96-83dbdace8e13"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "33fbe32c-12b9-45f7-9586-64e64afe3f30"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "986e49e6-c29a-48e6-969e-f93b100ac822"}, "ticker": {"type": "BasicTicker", "id": "45c4abc2-3fab-4538-bf30-d738079d7051"}, "id": "672b8ab9-e389-478a-9b38-25375efb601c"}, "type": "LinearAxis", "id": "672b8ab9-e389-478a-9b38-25375efb601c"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "896ec6ca-9bb2-4af8-932a-caa446cf89ee"}, "type": "Rect", "id": "896ec6ca-9bb2-4af8-932a-caa446cf89ee"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "Below average", "Average", "Above average", "It's awesome!"], "doc": null, "tags": [], "id": "1a43b58e-34ff-4461-9243-c8dceb23b272"}, "type": "FactorRange", "id": "1a43b58e-34ff-4461-9243-c8dceb23b272"}, {"attributes": {"callback": null, "factors": ["No", "Yes"], "doc": null, "tags": [], "id": "41fa241b-3c0c-4688-8856-678982acfd23"}, "type": "FactorRange", "id": "41fa241b-3c0c-4688-8856-678982acfd23"}, {"attributes": {"end": 90.2, "callback": null, "doc": null, "tags": [], "start": 0, "id": "6ca797b0-8330-4650-966c-b9aca3d3eb20"}, "type": "Range1d", "id": "6ca797b0-8330-4650-966c-b9aca3d3eb20"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "fadb24a7-42f6-456a-b1f3-14647111494c"}, "type": "Rect", "id": "fadb24a7-42f6-456a-b1f3-14647111494c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "17ac799c-d49d-4577-8e39-49b74a0a121c"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "38ae3ca0-358b-469e-a10e-73d215677063"}, "ticker": {"type": "CategoricalTicker", "id": "a0a8779e-1e7b-4ca3-b1ec-e2dfaa2caafe"}, "id": "80f6d82e-cfc7-474e-8e3f-c1bad199bf7d"}, "type": "CategoricalAxis", "id": "80f6d82e-cfc7-474e-8e3f-c1bad199bf7d"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "dcf0320d-d1e9-49fe-b8a9-973192bf0b14"}, "tags": [], "doc": null, "selection_glyph": null, "id": "cbd961a7-2e14-4d25-b3f0-1c2700d71f20", "glyph": {"type": "Rect", "id": "f9733840-68ae-40a3-ba6e-64439f50d4ea"}}, "type": "GlyphRenderer", "id": "cbd961a7-2e14-4d25-b3f0-1c2700d71f20"}, {"attributes": {"doc": null, "id": "96244837-3a81-463d-8505-4efbd965f94b", "tags": []}, "type": "CategoricalTickFormatter", "id": "96244837-3a81-463d-8505-4efbd965f94b"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "8799f65e-b8f4-4c14-8226-4d08270f9b99"}, "tags": [], "doc": null, "selection_glyph": null, "id": "3040e662-1da3-4092-a84e-211942133c0f", "glyph": {"type": "Rect", "id": "03186cce-6ddf-4427-8453-19f33ce366cc"}}, "type": "GlyphRenderer", "id": "3040e662-1da3-4092-a84e-211942133c0f"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "1bae94c3-cb4f-4af0-aaea-500571dfbcbb"}, "orientation": "top_left", "tags": [], "doc": null, "id": "fe32b9ee-aeb6-4c96-a846-960d47a01edc", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "697edebb-eefd-4d05-b56b-fa42e9a5e82c"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "f65595d5-3c09-4463-a655-a2416f36f308"}]]]}, "type": "Legend", "id": "fe32b9ee-aeb6-4c96-a846-960d47a01edc"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "baeaf3c3-f87d-4228-aa3a-71667bdc1f74"}, "tags": [], "doc": null, "selection_glyph": null, "id": "0835aac6-5e58-4b88-bf1e-f13faef3f5e4", "glyph": {"type": "Rect", "id": "c56fb037-178a-4fd3-8778-77369fca3c04"}}, "type": "GlyphRenderer", "id": "0835aac6-5e58-4b88-bf1e-f13faef3f5e4"}, {"attributes": {"doc": null, "id": "34e8ef01-ed0e-45c3-bb5a-f4b99766754b", "tags": []}, "type": "CategoricalTicker", "id": "34e8ef01-ed0e-45c3-bb5a-f4b99766754b"}, {"subtype": "Chart", "type": "Plot", "id": "ec6ffc7e-8da4-405e-b370-a3d196a2ef2c", "attributes": {"x_range": {"type": "FactorRange", "id": "36a1bbce-cb32-48d6-a8eb-51309e3a77f8"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "9e890efb-dcec-4d98-a4ad-bbeef3bd79d5"}, "title": "Thinking of the process of writing and debugging code, rank the following in terms of their impact on your productivity [We need to have easy access to more dynamic analysis tools]", "renderers": [{"type": "CategoricalAxis", "id": "46644744-7861-4e01-867e-bbb0b6f2e8d7"}, {"type": "LinearAxis", "id": "cf3815d0-7991-4e32-aa40-f4226d23c33e"}, {"type": "Grid", "id": "fd0b047f-1fa0-4af7-95f7-55126cd38f8d"}, {"type": "GlyphRenderer", "id": "65c9faaf-4261-4f6e-81e6-4b7c561bb0a9"}, {"type": "GlyphRenderer", "id": "2b1d17af-e529-48e2-82f6-901c20803caf"}, {"type": "Legend", "id": "666c6053-9fdd-4f2d-a08f-158a6163ce4b"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "ce635ee8-826d-4608-83ed-ed69f2a20673"}, "plot_height": 560, "doc": null, "id": "ec6ffc7e-8da4-405e-b370-a3d196a2ef2c", "tools": [], "below": [{"type": "CategoricalAxis", "id": "46644744-7861-4e01-867e-bbb0b6f2e8d7"}], "left": [{"type": "LinearAxis", "id": "cf3815d0-7991-4e32-aa40-f4226d23c33e"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "db73f777-88ee-42eb-b726-a708cc334ac9"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "47326701-a485-4683-99de-cf6d5a52f16a"}, "ticker": {"type": "BasicTicker", "id": "ed30ef7c-10b1-4814-b1d7-45ac3084d149"}, "id": "a5da5b6f-03fa-473d-9513-94e7fb9fd7b9"}, "type": "LinearAxis", "id": "a5da5b6f-03fa-473d-9513-94e7fb9fd7b9"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "dfaf0425-af75-440f-9ce7-5ce53fcc97cc"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "c2ded8aa-fc9e-4e7d-823a-df0706a92625"}, "ticker": {"type": "BasicTicker", "id": "9c1867a2-b49a-4f52-9249-28c3bd42eafd"}, "id": "08855559-83f7-4e2c-963a-8f9a22d07496"}, "type": "LinearAxis", "id": "08855559-83f7-4e2c-963a-8f9a22d07496"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "c7c90e9d-22b1-4602-9a4d-efdd63afa873"}, "orientation": "top_left", "tags": [], "doc": null, "id": "b515730f-43f0-452d-bd96-d68010567629", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "70af4438-959d-44ba-900c-e739e501fb99"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "8259cca6-379f-4123-b7b9-90adf29c367d"}]]]}, "type": "Legend", "id": "b515730f-43f0-452d-bd96-d68010567629"}, {"attributes": {"doc": null, "id": "6e54c3ac-9f44-488f-ace4-32f6a085b9be", "tags": []}, "type": "BasicTickFormatter", "id": "6e54c3ac-9f44-488f-ace4-32f6a085b9be"}, {"subtype": "Chart", "type": "Plot", "id": "ab788251-b12b-4ac1-8f06-309a94a3e42e", "attributes": {"x_range": {"type": "FactorRange", "id": "c1472710-9678-4403-ba31-471118a00139"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "e047bbdf-d66b-4e22-9690-e3a3c5e09271"}, "title": "How impactful would the following potential MozReview features have on your productivity? [Clearer interaction with Bugzilla review flags]", "renderers": [{"type": "CategoricalAxis", "id": "5f92b838-310b-4388-bd07-9ec581772125"}, {"type": "LinearAxis", "id": "1497bacc-1ae0-4ae0-8c15-b891f8c2913b"}, {"type": "Grid", "id": "9566334a-f05f-4886-8b42-c28067a7f556"}, {"type": "GlyphRenderer", "id": "bdd16ab2-e262-41b8-83ea-ddc1c4548679"}, {"type": "GlyphRenderer", "id": "673906a4-ffa2-4922-a6f3-a2865f5a6889"}, {"type": "Legend", "id": "516cb654-0057-48e2-adc8-f9dbd8c49c1f"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "9ae798e1-7392-4da9-a121-4154e7294d60"}, "plot_height": 560, "doc": null, "id": "ab788251-b12b-4ac1-8f06-309a94a3e42e", "tools": [], "below": [{"type": "CategoricalAxis", "id": "5f92b838-310b-4388-bd07-9ec581772125"}], "left": [{"type": "LinearAxis", "id": "1497bacc-1ae0-4ae0-8c15-b891f8c2913b"}]}}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "1358371b-8e52-459c-9ecb-e01a323854ec"}, "type": "ToolEvents", "id": "1358371b-8e52-459c-9ecb-e01a323854ec"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [5.0, 11.0, 28.0, 4.0, 42.5, 23.5, 6.0], "Platform": [10, 22, 56, 8, 85, 47, 12], "catFx-Team": ["All Other Responses:0.666666666667", "C/C++:0.666666666667", "HTML/CSS:0.666666666667", "Java:0.666666666667", "Javascript:0.666666666667", "Python:0.666666666667", "Rust:0.666666666667"], "cat": ["All Other Responses", "C/C++", "HTML/CSS", "Java", "Javascript", "Python", "Rust"], "midPlatform": [5.0, 11.0, 28.0, 4.0, 42.5, 23.5, 6.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [26.0, 89.0, 150.0, 13.0, 109.0, 90.0, 12.0], "catPlatform": ["All Other Responses:0.333333333333", "C/C++:0.333333333333", "HTML/CSS:0.333333333333", "Java:0.333333333333", "Javascript:0.333333333333", "Python:0.333333333333", "Rust:0.333333333333"], "stackedFx-Team": [18.0, 55.5, 103.0, 10.5, 97.0, 68.5, 12.0], "midFx-Team": [8.0, 33.5, 47.0, 2.5, 12.0, 21.5, 0.0], "Fx-Team": [16, 67, 94, 5, 24, 43, 0]}, "id": "3437ad23-aec2-4899-af88-a9284302ec7f"}, "type": "ColumnDataSource", "id": "3437ad23-aec2-4899-af88-a9284302ec7f"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "9be4c0fb-cffa-480b-a409-83f50f767a26"}, "type": "ToolEvents", "id": "9be4c0fb-cffa-480b-a409-83f50f767a26"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "7ba8e871-2e68-45d1-a5e3-9698d3843372"}, "tags": [], "doc": null, "selection_glyph": null, "id": "cc1279ff-f375-4412-bb5c-5a83144d4f09", "glyph": {"type": "Rect", "id": "074c9ead-edb7-4da0-8f27-4218245d2630"}}, "type": "GlyphRenderer", "id": "cc1279ff-f375-4412-bb5c-5a83144d4f09"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "13ed4b1d-2557-4d33-b232-5751dd7735fc"}, "type": "Rect", "id": "13ed4b1d-2557-4d33-b232-5751dd7735fc"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2], "stackedPlatform": [3.5, 46.0], "Platform": [7, 92], "catFx-Team": ["No:0.666666666667", "Yes:0.666666666667"], "cat": ["No", "Yes"], "midPlatform": [3.5, 46.0], "width": [0.8, 0.8], "zero": [20.0, 178.0], "catPlatform": ["No:0.333333333333", "Yes:0.333333333333"], "stackedFx-Team": [13.5, 135.0], "midFx-Team": [6.5, 43.0], "Fx-Team": [13, 86]}, "id": "545eb3be-9144-4d87-bf70-24ac2f574d7d"}, "type": "ColumnDataSource", "id": "545eb3be-9144-4d87-bf70-24ac2f574d7d"}, {"attributes": {"doc": null, "id": "cd92c358-de87-4e4f-808f-3b6f464854fc", "tags": []}, "type": "BasicTickFormatter", "id": "cd92c358-de87-4e4f-808f-3b6f464854fc"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "ae634f06-c001-4557-b7c2-5e368a1a788e"}, "type": "ToolEvents", "id": "ae634f06-c001-4557-b7c2-5e368a1a788e"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "0f597d31-e319-4d38-b40b-07e0c39ec394"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "339dee7a-6a1d-41ce-a440-2df51fb5d200"}, "ticker": {"type": "CategoricalTicker", "id": "b224779b-d428-4f5a-b525-7e340fdddee0"}, "id": "b3c82d40-ebe5-45af-9c2e-875e950260d2"}, "type": "CategoricalAxis", "id": "b3c82d40-ebe5-45af-9c2e-875e950260d2"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "332cd986-c81a-4b98-9918-5c9337354239"}, "tags": [], "doc": null, "selection_glyph": null, "id": "a3684ab7-bcf7-48e9-a0a7-0bb457dc197a", "glyph": {"type": "Rect", "id": "f55cb560-4c4a-4804-95ee-17bfa510fc96"}}, "type": "GlyphRenderer", "id": "a3684ab7-bcf7-48e9-a0a7-0bb457dc197a"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "b949e437-3b7c-4e81-8d67-10a60d22a16b"}, "type": "ToolEvents", "id": "b949e437-3b7c-4e81-8d67-10a60d22a16b"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [4.0, 16.0, 16.0, 6.5, 6.5], "Platform": [8, 32, 32, 13, 13], "catFx-Team": ["N/A:0.666666666667", "1 = least impactful:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impactful:0.666666666667"], "cat": ["N/A", "1 = least impactful", "2", "3", "4 = most impactful"], "midPlatform": [4.0, 16.0, 16.0, 6.5, 6.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [13.0, 40.0, 50.0, 37.0, 56.0], "catPlatform": ["N/A:0.333333333333", "1 = least impactful:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impactful:0.333333333333"], "stackedFx-Team": [10.5, 36.0, 41.0, 25.0, 34.5], "midFx-Team": [2.5, 4.0, 9.0, 12.0, 21.5], "Fx-Team": [5, 8, 18, 24, 43]}, "id": "b46ece09-5bc0-4b15-8abc-5323e3483793"}, "type": "ColumnDataSource", "id": "b46ece09-5bc0-4b15-8abc-5323e3483793"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "f8c144d7-1a9e-4cc4-8de0-33ead1cae93a"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "36e90c72-d995-43f9-b53d-ad7d518d4a06"}, "id": "d7dcec07-3790-4eb6-bab1-be1eb9ca476f"}, "type": "Grid", "id": "d7dcec07-3790-4eb6-bab1-be1eb9ca476f"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "eb4a49ef-b5ae-4439-b773-7a4053bef2e3"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "92d8d680-6952-458c-a018-90f227ca73a6"}, "ticker": {"type": "BasicTicker", "id": "1346023d-1f1a-497d-9f28-e5779fe7d758"}, "id": "285908c2-e994-4d1c-b817-3a16a978ba73"}, "type": "LinearAxis", "id": "285908c2-e994-4d1c-b817-3a16a978ba73"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "6f29235a-6fc2-44b0-b165-09f7ab73dbc5"}, "orientation": "top_left", "tags": [], "doc": null, "id": "f6b8726b-abd4-4114-97a3-08fc9f3220f5", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "676bd990-b6d2-4bf5-adbe-e4b44dc10fd1"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "557a9eee-be63-4e1d-a0a8-937c569c1c8a"}]]]}, "type": "Legend", "id": "f6b8726b-abd4-4114-97a3-08fc9f3220f5"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "de55e910-d8be-4d40-a321-d715fbe10a88"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "a23e4d78-aee3-48e7-a102-9951ebed6449"}, "ticker": {"type": "BasicTicker", "id": "18de529e-15a0-437b-8923-ab640b1b9b8f"}, "id": "c29d1b65-2185-47e7-a123-a7b4843fbfa8"}, "type": "LinearAxis", "id": "c29d1b65-2185-47e7-a123-a7b4843fbfa8"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "758b2f65-117f-48db-a194-b2391e90cc8f"}, "orientation": "top_left", "tags": [], "doc": null, "id": "5cb549ad-9623-46a4-a79c-899cf0da6bb9", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "0555bc73-fe20-4fc6-8f64-906d760f6ba6"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "04da16ea-1962-4427-92cf-10779f379d3c"}]]]}, "type": "Legend", "id": "5cb549ad-9623-46a4-a79c-899cf0da6bb9"}, {"subtype": "Chart", "type": "Plot", "id": "e1dc57c7-2233-4a41-b3e0-32ab89541be0", "attributes": {"x_range": {"type": "FactorRange", "id": "f827e6b1-7c68-4960-89ff-2d975fb919b4"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "937fc9c8-0ff1-499e-8bfe-1f16ec25b4de"}, "title": "Has the Firefox build system improved? [In the past 2 years]", "renderers": [{"type": "CategoricalAxis", "id": "92e1089d-f031-48b8-bd08-642cd5a6a329"}, {"type": "LinearAxis", "id": "af6dc68b-d242-4277-ab92-4f8087e11405"}, {"type": "Grid", "id": "1250ccfd-b6e8-4041-8038-259fb6ca8045"}, {"type": "GlyphRenderer", "id": "cbd961a7-2e14-4d25-b3f0-1c2700d71f20"}, {"type": "GlyphRenderer", "id": "f9d24373-01a2-4aec-a6ab-8b44950e070f"}, {"type": "Legend", "id": "8e321889-2523-4620-b62b-a72137e2cc36"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "ad2b85e9-822c-41ca-bdc0-d39a352b1984"}, "plot_height": 560, "doc": null, "id": "e1dc57c7-2233-4a41-b3e0-32ab89541be0", "tools": [], "below": [{"type": "CategoricalAxis", "id": "92e1089d-f031-48b8-bd08-642cd5a6a329"}], "left": [{"type": "LinearAxis", "id": "af6dc68b-d242-4277-ab92-4f8087e11405"}]}}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [5.0, 26.0, 9.0, 5.5, 4.0], "Platform": [10, 52, 18, 11, 8], "catFx-Team": ["N/A:0.666666666667", "1 = little impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["N/A", "1 = little impact", "2", "3", "4 = most impact"], "midPlatform": [5.0, 26.0, 9.0, 5.5, 4.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [28.0, 97.0, 31.0, 29.0, 10.0], "catPlatform": ["N/A:0.333333333333", "1 = little impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [19.0, 74.5, 24.5, 20.0, 9.0], "midFx-Team": [9.0, 22.5, 6.5, 9.0, 1.0], "Fx-Team": [18, 45, 13, 18, 2]}, "id": "74399b10-6fa1-4d56-bc18-49440d32c07b"}, "type": "ColumnDataSource", "id": "74399b10-6fa1-4d56-bc18-49440d32c07b"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "f6d974db-f600-4ea9-89cc-a37c7017de7f"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "0f665c9d-6eb6-4b04-96c2-1597b7f3ff33"}, "ticker": {"type": "CategoricalTicker", "id": "27c2217e-579c-4f79-81b9-9e5ad4bccf09"}, "id": "d12dcd14-5052-437e-9ede-48eefa129d99"}, "type": "CategoricalAxis", "id": "d12dcd14-5052-437e-9ede-48eefa129d99"}, {"attributes": {"doc": null, "id": "ec195286-77ad-4afb-aeb4-2084960c62ba", "tags": []}, "type": "CategoricalTickFormatter", "id": "ec195286-77ad-4afb-aeb4-2084960c62ba"}, {"attributes": {"doc": null, "id": "ec7976a7-93f9-486d-b6b7-df2e463a6151", "tags": []}, "type": "BasicTickFormatter", "id": "ec7976a7-93f9-486d-b6b7-df2e463a6151"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "8873468c-41dd-489d-85d2-6c20d9ceeec7"}, "type": "Rect", "id": "8873468c-41dd-489d-85d2-6c20d9ceeec7"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "de5c1c44-4898-4786-b8e7-7a54784437a6"}, "type": "ToolEvents", "id": "de5c1c44-4898-4786-b8e7-7a54784437a6"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "cac92ec6-141a-4319-b715-3da4813b8b26"}, "tags": [], "doc": null, "selection_glyph": null, "id": "5692e079-0433-47e7-8f67-514f703925ed", "glyph": {"type": "Rect", "id": "5b0334b9-dedf-4be5-9363-55166eeae860"}}, "type": "GlyphRenderer", "id": "5692e079-0433-47e7-8f67-514f703925ed"}, {"subtype": "Chart", "type": "Plot", "id": "0f597d31-e319-4d38-b40b-07e0c39ec394", "attributes": {"x_range": {"type": "FactorRange", "id": "4cbd9002-e975-4a68-9364-e8bfa2904b57"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "aee72f09-3013-4e1d-9c22-1de204e3f760"}, "title": "What are your thoughts on MQ?", "renderers": [{"type": "CategoricalAxis", "id": "b3c82d40-ebe5-45af-9c2e-875e950260d2"}, {"type": "LinearAxis", "id": "008e50ec-5690-4e06-8fb2-105085d14f55"}, {"type": "Grid", "id": "c4685e39-2455-44a8-b6fc-92c5fbb0ade0"}, {"type": "GlyphRenderer", "id": "106cdd2f-4a55-4965-9bfb-dcf0c0a30443"}, {"type": "GlyphRenderer", "id": "ed4d1996-87e8-4e0a-8a38-bedbdcac0af6"}, {"type": "Legend", "id": "6567996e-c330-451d-8cf7-9609de6f3237"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "211f9035-14e5-4aa5-a3be-e345deaa13a3"}, "plot_height": 560, "doc": null, "id": "0f597d31-e319-4d38-b40b-07e0c39ec394", "tools": [], "below": [{"type": "CategoricalAxis", "id": "b3c82d40-ebe5-45af-9c2e-875e950260d2"}], "left": [{"type": "LinearAxis", "id": "008e50ec-5690-4e06-8fb2-105085d14f55"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "056b0be0-3c89-4cb8-b23e-6f5f17ec3629"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "a4b9da54-1558-42c1-babd-ab4abeb6c233"}, "ticker": {"type": "BasicTicker", "id": "6bedc772-7f57-44bd-9b07-c97c131015de"}, "id": "49bc09ca-718c-4f06-9ba4-1c759b35006e"}, "type": "LinearAxis", "id": "49bc09ca-718c-4f06-9ba4-1c759b35006e"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "add6fa57-a92a-45e7-b63a-7e9ee8f8821f"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "c7c1cd53-2728-4d17-acae-63611e7939c6"}, "id": "0859a6d5-75e4-4dcf-bb01-02ea00f1eaf1"}, "type": "Grid", "id": "0859a6d5-75e4-4dcf-bb01-02ea00f1eaf1"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "Below average", "Average", "Above average", "It's awesome!"], "doc": null, "tags": [], "id": "0374963c-0ab6-43da-8995-6a6bcd440148"}, "type": "FactorRange", "id": "0374963c-0ab6-43da-8995-6a6bcd440148"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "c6dc0ad8-f3ed-4067-bd2c-a3a6e459484c"}, "type": "BasicTicker", "id": "c6dc0ad8-f3ed-4067-bd2c-a3a6e459484c"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "57ee450d-a3f6-418f-8c35-0b14e66febce"}, "type": "Rect", "id": "57ee450d-a3f6-418f-8c35-0b14e66febce"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "f11bf09f-cca3-4310-9dbd-8a075a6b7d4e"}, "tags": [], "doc": null, "selection_glyph": null, "id": "38c7f93b-faec-4c13-83f6-c1a02d459586", "glyph": {"type": "Rect", "id": "0c50c9a6-39eb-4ef9-b981-a0caee80037e"}}, "type": "GlyphRenderer", "id": "38c7f93b-faec-4c13-83f6-c1a02d459586"}, {"attributes": {"end": 51.7, "callback": null, "doc": null, "tags": [], "start": 0, "id": "9265c88e-a108-4a97-b4cb-9ad158be8b33"}, "type": "Range1d", "id": "9265c88e-a108-4a97-b4cb-9ad158be8b33"}, {"attributes": {"doc": null, "id": "c4106271-1371-4449-b828-b347f4e5be9c", "tags": []}, "type": "CategoricalTicker", "id": "c4106271-1371-4449-b828-b347f4e5be9c"}, {"attributes": {"end": 34.1, "callback": null, "doc": null, "tags": [], "start": 0, "id": "7063eb3a-de50-4b30-8e53-4794bd3bfe2d"}, "type": "Range1d", "id": "7063eb3a-de50-4b30-8e53-4794bd3bfe2d"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "5ec563fc-c5ee-4f38-a48d-c217288af1bb"}, "type": "Rect", "id": "5ec563fc-c5ee-4f38-a48d-c217288af1bb"}, {"attributes": {"doc": null, "id": "c6d4d997-8545-4dab-81d7-850e955a422e", "tags": []}, "type": "CategoricalTickFormatter", "id": "c6d4d997-8545-4dab-81d7-850e955a422e"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [2.5, 18.0, 3.5, 8.5, 12.0, 4.5], "Platform": [5, 36, 7, 17, 24, 9], "catFx-Team": ["All Other Responses:0.666666666667", "N/A:0.666666666667", "Extremely dissatisfied:0.666666666667", "Below average:0.666666666667", "Average:0.666666666667", "Above average:0.666666666667"], "cat": ["All Other Responses", "N/A", "Extremely dissatisfied", "Below average", "Average", "Above average"], "midPlatform": [2.5, 18.0, 3.5, 8.5, 12.0, 4.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [7.0, 73.0, 23.0, 33.0, 40.0, 19.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A:0.333333333333", "Extremely dissatisfied:0.333333333333", "Below average:0.333333333333", "Average:0.333333333333", "Above average:0.333333333333"], "stackedFx-Team": [6.0, 54.5, 15.0, 25.0, 32.0, 14.0], "midFx-Team": [1.0, 18.5, 8.0, 8.0, 8.0, 5.0], "Fx-Team": [2, 37, 16, 16, 16, 10]}, "id": "0db9cdb5-f172-4aed-b2dd-2a8aaf8a7278"}, "type": "ColumnDataSource", "id": "0db9cdb5-f172-4aed-b2dd-2a8aaf8a7278"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "7fb895c0-0991-4ca7-ba92-5d291c293750"}, "tags": [], "doc": null, "selection_glyph": null, "id": "186980c8-a155-403b-9532-3cd651b2caad", "glyph": {"type": "Rect", "id": "8fce0fdc-64e1-4704-bd67-bf4eed996eec"}}, "type": "GlyphRenderer", "id": "186980c8-a155-403b-9532-3cd651b2caad"}, {"attributes": {"end": 40.7, "callback": null, "doc": null, "tags": [], "start": 0, "id": "923e17a4-180e-40aa-8d66-2e589af9a404"}, "type": "Range1d", "id": "923e17a4-180e-40aa-8d66-2e589af9a404"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "5d38421a-3eb1-49d7-beb3-7503b5adb9de"}, "type": "BasicTicker", "id": "5d38421a-3eb1-49d7-beb3-7503b5adb9de"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "1fd31781-1d3c-44ea-be46-d526092b14ca"}, "tags": [], "doc": null, "selection_glyph": null, "id": "4510c06a-9ed5-4327-874c-f4f09641519c", "glyph": {"type": "Rect", "id": "1d5d5e67-70af-4e88-a8e4-7dd7a246eb9a"}}, "type": "GlyphRenderer", "id": "4510c06a-9ed5-4327-874c-f4f09641519c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "982450d2-3281-496c-8d55-9d279807bfd4"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "0e9f151a-5d38-4c18-8496-f3231816ba3f"}, "ticker": {"type": "BasicTicker", "id": "89992255-694f-4793-b06f-aa7d17d74843"}, "id": "52f1c92c-fddc-4eeb-8045-a40c86226c88"}, "type": "LinearAxis", "id": "52f1c92c-fddc-4eeb-8045-a40c86226c88"}, {"subtype": "Chart", "type": "Plot", "id": "7d986d53-ed95-4cfc-a8d2-df18e2915763", "attributes": {"x_range": {"type": "FactorRange", "id": "3472482d-ef55-419b-9dca-a410cba813c9"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "41d1551b-69cc-41c9-842f-b5dcbde3eb96"}, "title": "Have you ever used `hg serve` to run a local HTTP server to look at repository history?", "renderers": [{"type": "CategoricalAxis", "id": "1ff266d1-08d4-40a4-862c-fe11a8ce02b3"}, {"type": "LinearAxis", "id": "d88f75fc-0927-4341-a6bc-56847b97fc93"}, {"type": "Grid", "id": "fbf8bc3c-2e15-4887-8f44-4aa92c0defb7"}, {"type": "GlyphRenderer", "id": "41683fe4-62e6-428f-a186-e4593b2eaa91"}, {"type": "GlyphRenderer", "id": "8213790e-904c-4c4b-a82f-2cf596afe778"}, {"type": "Legend", "id": "3eb12e50-81cc-47d3-9a2f-b288fd3e5651"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "c541285e-b4ff-4982-8fe6-2d29e5c63b3f"}, "plot_height": 560, "doc": null, "id": "7d986d53-ed95-4cfc-a8d2-df18e2915763", "tools": [], "below": [{"type": "CategoricalAxis", "id": "1ff266d1-08d4-40a4-862c-fe11a8ce02b3"}], "left": [{"type": "LinearAxis", "id": "d88f75fc-0927-4341-a6bc-56847b97fc93"}]}}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "e199f16a-df06-4eaa-9abb-21525c152c54"}, "type": "Rect", "id": "e199f16a-df06-4eaa-9abb-21525c152c54"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "33fbe32c-12b9-45f7-9586-64e64afe3f30"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "2be52a83-813c-4e4d-a613-fb6af667d635"}, "ticker": {"type": "CategoricalTicker", "id": "d94fd38c-4dff-49e4-9684-3fb7475748c7"}, "id": "4e75d087-8d7f-47f4-883a-426139c65c42"}, "type": "CategoricalAxis", "id": "4e75d087-8d7f-47f4-883a-426139c65c42"}, {"attributes": {"doc": null, "id": "115894e2-deda-45c5-9994-aad02fc99e4b", "tags": []}, "type": "CategoricalTicker", "id": "115894e2-deda-45c5-9994-aad02fc99e4b"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "979329db-3ffa-450b-acb8-e804615bae87"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "0e679e16-5991-4571-a3a6-92331df65986"}, "ticker": {"type": "CategoricalTicker", "id": "bba2f3b3-851b-4b2b-bb98-c50827e6646c"}, "id": "4e2b16ff-abc8-4b0b-90e2-e36cba3dbae7"}, "type": "CategoricalAxis", "id": "4e2b16ff-abc8-4b0b-90e2-e36cba3dbae7"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "3425fd90-bc8a-4393-bb43-faa23332b27d"}, "type": "ToolEvents", "id": "3425fd90-bc8a-4393-bb43-faa23332b27d"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [17.0, 5.0, 9.0, 4.5, 8.5, 5.0], "Platform": [34, 10, 18, 9, 17, 10], "catFx-Team": ["N/A:0.666666666667", "Extremely dissatisfied:0.666666666667", "Below average:0.666666666667", "Average:0.666666666667", "Above average:0.666666666667", "It's awesome!:0.666666666667"], "cat": ["N/A", "Extremely dissatisfied", "Below average", "Average", "Above average", "It's awesome!"], "midPlatform": [17.0, 5.0, 9.0, 4.5, 8.5, 5.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [77.0, 26.0, 20.0, 36.0, 25.0, 12.0], "catPlatform": ["N/A:0.333333333333", "Extremely dissatisfied:0.333333333333", "Below average:0.333333333333", "Average:0.333333333333", "Above average:0.333333333333", "It's awesome!:0.333333333333"], "stackedFx-Team": [55.5, 18.0, 19.0, 22.5, 21.0, 11.0], "midFx-Team": [21.5, 8.0, 1.0, 13.5, 4.0, 1.0], "Fx-Team": [43, 16, 2, 27, 8, 2]}, "id": "baeaf3c3-f87d-4228-aa3a-71667bdc1f74"}, "type": "ColumnDataSource", "id": "baeaf3c3-f87d-4228-aa3a-71667bdc1f74"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "1 = least impactful", "2", "3", "4 = most impactful"], "doc": null, "tags": [], "id": "70dbdf99-fc6e-4817-b29d-a7ca08622602"}, "type": "FactorRange", "id": "70dbdf99-fc6e-4817-b29d-a7ca08622602"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "bcf2336f-48e4-448b-9761-e3cfbaafb251"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "c65e0c3e-14f2-40d3-924d-8b274e9d17dd"}, "ticker": {"type": "BasicTicker", "id": "9b84a9c5-84b4-4aba-9991-c0aab1aea4df"}, "id": "e7992dfd-2d7d-401a-9a31-cc842ece05da"}, "type": "LinearAxis", "id": "e7992dfd-2d7d-401a-9a31-cc842ece05da"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "f4e1250e-f2f0-4038-9f97-c479f3f26447"}, "type": "Rect", "id": "f4e1250e-f2f0-4038-9f97-c479f3f26447"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "cee556dd-1837-4e9f-a636-42172b2aab4f"}, "type": "Rect", "id": "cee556dd-1837-4e9f-a636-42172b2aab4f"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fd0867ed-5ca0-4e0f-a6af-aab4fb0da736"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "257ffc7f-2a71-4712-845e-cc2c6371693e"}, "id": "9921d62d-156f-4324-b78f-59b86f9ce277"}, "type": "Grid", "id": "9921d62d-156f-4324-b78f-59b86f9ce277"}, {"attributes": {"callback": null, "factors": ["N/A", "1 = little impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "9993e7d7-590c-4df2-9681-343a31f2d914"}, "type": "FactorRange", "id": "9993e7d7-590c-4df2-9681-343a31f2d914"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "e1dc57c7-2233-4a41-b3e0-32ab89541be0"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "8bdea3ef-a422-4b07-b638-f822407810be"}, "ticker": {"type": "BasicTicker", "id": "c1ccccce-ce48-49b9-af25-57563b879495"}, "id": "af6dc68b-d242-4277-ab92-4f8087e11405"}, "type": "LinearAxis", "id": "af6dc68b-d242-4277-ab92-4f8087e11405"}, {"attributes": {"end": 64.9, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "0cd15bf8-5890-47a3-869f-674c21d91ef9"}, "type": "Range1d", "id": "0cd15bf8-5890-47a3-869f-674c21d91ef9"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A", "Extremely dissatisfied", "Below average", "Average"], "doc": null, "tags": [], "id": "ae6bdd16-ed0f-4e3c-a364-b5ef4c49cee1"}, "type": "FactorRange", "id": "ae6bdd16-ed0f-4e3c-a364-b5ef4c49cee1"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "ad2b85e9-822c-41ca-bdc0-d39a352b1984"}, "type": "ToolEvents", "id": "ad2b85e9-822c-41ca-bdc0-d39a352b1984"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "c8654c60-e799-4603-aeaa-c7675d109014"}, "tags": [], "doc": null, "selection_glyph": null, "id": "816bc19c-fdf2-485b-9c46-2f80e96a5fed", "glyph": {"type": "Rect", "id": "b48eff2f-4798-4bb2-b5a6-0c19aec1b6b3"}}, "type": "GlyphRenderer", "id": "816bc19c-fdf2-485b-9c46-2f80e96a5fed"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "f673dd49-06fe-47cf-aa4a-5c0fe8a89033"}, "type": "BasicTicker", "id": "f673dd49-06fe-47cf-aa4a-5c0fe8a89033"}, {"attributes": {"doc": null, "id": "3ef0c8f7-8cd5-4e9d-ace5-cca4a79f0aa4", "tags": []}, "type": "CategoricalTickFormatter", "id": "3ef0c8f7-8cd5-4e9d-ace5-cca4a79f0aa4"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "3ac4b7db-4dfa-475d-a120-b5261357c8d9"}, "tags": [], "doc": null, "selection_glyph": null, "id": "4c551df0-02d8-4458-8669-1ad1d12590c0", "glyph": {"type": "Rect", "id": "61c5230d-caf4-40db-9825-39121b4e5201"}}, "type": "GlyphRenderer", "id": "4c551df0-02d8-4458-8669-1ad1d12590c0"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "bbcd448f-4b60-4e37-9d9c-86185867f7ae"}, "type": "ToolEvents", "id": "bbcd448f-4b60-4e37-9d9c-86185867f7ae"}, {"attributes": {"callback": null, "factors": ["No impact / Not applicable", "A little impact", "Moderate impact", "Significant impact", "Tons of impact / Implement this ASAP"], "doc": null, "tags": [], "id": "c6b56eb6-1095-449b-92c4-ee8f760bff14"}, "type": "FactorRange", "id": "c6b56eb6-1095-449b-92c4-ee8f760bff14"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "eb4a49ef-b5ae-4439-b773-7a4053bef2e3"}, "orientation": "top_left", "tags": [], "doc": null, "id": "7dfa600e-d43c-4441-80f2-fa98e6105779", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "88b3ca11-0cc9-495d-9b02-ca99341f8894"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "44c6e53c-6ebb-4159-ba92-1d9cc97e438b"}]]]}, "type": "Legend", "id": "7dfa600e-d43c-4441-80f2-fa98e6105779"}, {"attributes": {"doc": null, "id": "ccf8ce1e-4cc3-42df-80e5-8ec175696aa6", "tags": []}, "type": "CategoricalTickFormatter", "id": "ccf8ce1e-4cc3-42df-80e5-8ec175696aa6"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "baeaf3c3-f87d-4228-aa3a-71667bdc1f74"}, "tags": [], "doc": null, "selection_glyph": null, "id": "a12948da-71b8-43ac-a6f0-22e25316a86a", "glyph": {"type": "Rect", "id": "e4bb92ef-1ede-4d16-9d58-c16cba51f7e5"}}, "type": "GlyphRenderer", "id": "a12948da-71b8-43ac-a6f0-22e25316a86a"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "af3b6a95-735b-47af-8df3-fc5a8136c2da"}, "tags": [], "doc": null, "selection_glyph": null, "id": "809a217a-53b8-4df6-af1b-46a55d1c7360", "glyph": {"type": "Rect", "id": "ead2c6f4-7254-4568-91ef-987b02ebbb40"}}, "type": "GlyphRenderer", "id": "809a217a-53b8-4df6-af1b-46a55d1c7360"}, {"attributes": {"doc": null, "id": "3c88ae66-237d-47a5-aff5-a4711ed590bf", "tags": []}, "type": "BasicTickFormatter", "id": "3c88ae66-237d-47a5-aff5-a4711ed590bf"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "dcf0320d-d1e9-49fe-b8a9-973192bf0b14"}, "tags": [], "doc": null, "selection_glyph": null, "id": "f9d24373-01a2-4aec-a6ab-8b44950e070f", "glyph": {"type": "Rect", "id": "2774a6fd-825b-4ca9-b4ac-ccb7723293ff"}}, "type": "GlyphRenderer", "id": "f9d24373-01a2-4aec-a6ab-8b44950e070f"}, {"attributes": {"doc": null, "id": "68e185b3-b645-41ff-85e2-93484dbf2a23", "tags": []}, "type": "CategoricalTicker", "id": "68e185b3-b645-41ff-85e2-93484dbf2a23"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "7808946e-3b7d-4351-9671-294b782a031e"}, "orientation": "top_left", "tags": [], "doc": null, "id": "0b421c3a-3ab2-490a-9eb0-0459eaa76875", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "7e689d8d-93ac-4ebd-a28a-dbc0f21b08c1"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "f434e4c3-598a-4c8f-a1d7-f1bfcdaaf953"}]]]}, "type": "Legend", "id": "0b421c3a-3ab2-490a-9eb0-0459eaa76875"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [11.0, 9.5, 12.0, 10.0, 5.5], "Platform": [22, 19, 24, 20, 11], "catFx-Team": ["No impact / Not applicable:0.666666666667", "A little impact:0.666666666667", "Moderate impact:0.666666666667", "Significant impact:0.666666666667", "Tons of impact / Implement this ASAP:0.666666666667"], "cat": ["No impact / Not applicable", "A little impact", "Moderate impact", "Significant impact", "Tons of impact / Implement this ASAP"], "midPlatform": [11.0, 9.5, 12.0, 10.0, 5.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [51.0, 40.0, 34.0, 41.0, 27.0], "catPlatform": ["No impact / Not applicable:0.333333333333", "A little impact:0.333333333333", "Moderate impact:0.333333333333", "Significant impact:0.333333333333", "Tons of impact / Implement this ASAP:0.333333333333"], "stackedFx-Team": [36.5, 29.5, 29.0, 30.5, 19.0], "midFx-Team": [14.5, 10.5, 5.0, 10.5, 8.0], "Fx-Team": [29, 21, 10, 21, 16]}, "id": "1e6d4bdf-a9a0-4100-8780-d93d2ad03e66"}, "type": "ColumnDataSource", "id": "1e6d4bdf-a9a0-4100-8780-d93d2ad03e66"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "61b3ce83-437a-4225-b654-7d82477958f7"}, "tags": [], "doc": null, "selection_glyph": null, "id": "b14fd36d-477b-4789-bee1-c795fe164ae8", "glyph": {"type": "Rect", "id": "4269594a-2479-4191-9396-178d5bc6b893"}}, "type": "GlyphRenderer", "id": "b14fd36d-477b-4789-bee1-c795fe164ae8"}, {"attributes": {"doc": null, "id": "0e96da3b-8d2f-4459-8a9b-5cac2604d673", "tags": []}, "type": "CategoricalTicker", "id": "0e96da3b-8d2f-4459-8a9b-5cac2604d673"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "5d65eb83-8543-429b-aa23-e2b80b82dde6"}, "type": "Rect", "id": "5d65eb83-8543-429b-aa23-e2b80b82dde6"}, {"attributes": {"callback": null, "factors": ["N/A", "Extremely dissatisfied", "Below average", "Average", "Above average", "It's awesome!"], "doc": null, "tags": [], "id": "73f0a945-9b1e-4132-916a-d5e0bf95a455"}, "type": "FactorRange", "id": "73f0a945-9b1e-4132-916a-d5e0bf95a455"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "18fcd9e9-b059-467c-8b59-6dbbd8c53a6f"}, "type": "ToolEvents", "id": "18fcd9e9-b059-467c-8b59-6dbbd8c53a6f"}, {"attributes": {"doc": null, "id": "278dc381-c4d4-4e9c-9c74-d9f58aedf03a", "tags": []}, "type": "CategoricalTicker", "id": "278dc381-c4d4-4e9c-9c74-d9f58aedf03a"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "ee636778-0f34-4f96-9084-1c1f38bf8e75"}, "tags": [], "doc": null, "selection_glyph": null, "id": "7213f886-272e-4e55-89a9-c45800cfcc00", "glyph": {"type": "Rect", "id": "4069a6f1-bb71-45d6-937c-28319c8c0f43"}}, "type": "GlyphRenderer", "id": "7213f886-272e-4e55-89a9-c45800cfcc00"}, {"subtype": "Chart", "type": "Plot", "id": "5b959267-0fa2-40dc-a97b-0e560578bbde", "attributes": {"x_range": {"type": "FactorRange", "id": "60f981ad-066b-4561-9f72-8c4575e53d20"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "bc894309-5765-4b29-a334-c4634c398784"}, "title": "Thinking of the process of writing and debugging code, rank the following in terms of their impact on your productivity [It takes too long to write tests]", "renderers": [{"type": "CategoricalAxis", "id": "c0bad64d-9813-49e6-8f08-b2954155b9b2"}, {"type": "LinearAxis", "id": "9814a01e-0347-4c52-b887-534124ef84cb"}, {"type": "Grid", "id": "44d66cad-cb2c-4281-8916-a5a71cf5cd37"}, {"type": "GlyphRenderer", "id": "bf7d6b02-6806-4a9c-98f7-0b1022bd0d43"}, {"type": "GlyphRenderer", "id": "6553cdb5-fa69-4e80-9466-3a0fe89d9f97"}, {"type": "Legend", "id": "5e7618a6-a3fb-4e9b-9ddd-ad7060fd4fdf"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "d118f4dc-0b32-4423-9368-c5126ddcfc99"}, "plot_height": 560, "doc": null, "id": "5b959267-0fa2-40dc-a97b-0e560578bbde", "tools": [], "below": [{"type": "CategoricalAxis", "id": "c0bad64d-9813-49e6-8f08-b2954155b9b2"}], "left": [{"type": "LinearAxis", "id": "9814a01e-0347-4c52-b887-534124ef84cb"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "57e25b97-a78e-437c-bde0-2ade5ef5a920"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "f8f51916-2348-4322-b15e-03915b10d9ec"}, "ticker": {"type": "CategoricalTicker", "id": "8bb6c633-b633-43c6-8e35-fabaa3680bed"}, "id": "6ed23353-5a47-4449-890c-298f29d2f05c"}, "type": "CategoricalAxis", "id": "6ed23353-5a47-4449-890c-298f29d2f05c"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [2.5, 5.0, 11.0, 13.0, 17.5], "Platform": [5, 10, 22, 26, 35], "catFx-Team": ["1 - no impact:0.666666666667", "2 - little impact:0.666666666667", "3 - a fair amount of impact:0.666666666667", "4 - a significant amount of impact:0.666666666667", "5 - an extremely frustrating amount of impact:0.666666666667"], "cat": ["1 - no impact", "2 - little impact", "3 - a fair amount of impact", "4 - a significant amount of impact", "5 - an extremely frustrating amount of impact"], "midPlatform": [2.5, 5.0, 11.0, 13.0, 17.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [10.0, 31.0, 43.0, 53.0, 59.0], "catPlatform": ["1 - no impact:0.333333333333", "2 - little impact:0.333333333333", "3 - a fair amount of impact:0.333333333333", "4 - a significant amount of impact:0.333333333333", "5 - an extremely frustrating amount of impact:0.333333333333"], "stackedFx-Team": [7.5, 20.5, 32.5, 39.5, 47.0], "midFx-Team": [2.5, 10.5, 10.5, 13.5, 12.0], "Fx-Team": [5, 21, 21, 27, 24]}, "id": "6e4ddeb8-8378-4f13-96bf-88f321ef0e59"}, "type": "ColumnDataSource", "id": "6e4ddeb8-8378-4f13-96bf-88f321ef0e59"}, {"attributes": {"end": 44.0, "callback": null, "doc": null, "tags": [], "start": 0, "id": "9ea40b7c-25aa-49e0-9b35-9aa64279de40"}, "type": "Range1d", "id": "9ea40b7c-25aa-49e0-9b35-9aa64279de40"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "1b9335bc-b9ad-4170-9f68-076006aafabc"}, "type": "Rect", "id": "1b9335bc-b9ad-4170-9f68-076006aafabc"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2], "stackedPlatform": [1.0, 36.5], "Platform": [2, 73], "catFx-Team": ["All Other Responses:0.666666666667", "Yes:0.666666666667"], "cat": ["All Other Responses", "Yes"], "midPlatform": [1.0, 36.5], "width": [0.8, 0.8], "zero": [2.0, 145.0], "catPlatform": ["All Other Responses:0.333333333333", "Yes:0.333333333333"], "stackedFx-Team": [2.0, 109.0], "midFx-Team": [0.0, 36.0], "Fx-Team": [0, 72]}, "id": "8f8e690a-995c-4850-820b-8764422eb099"}, "type": "ColumnDataSource", "id": "8f8e690a-995c-4850-820b-8764422eb099"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "b8b8ee40-a871-4470-b176-021e034761a4"}, "tags": [], "doc": null, "selection_glyph": null, "id": "68d95ed4-2b71-4444-aa83-7f1fea65de99", "glyph": {"type": "Rect", "id": "f4b7e0c8-dfa1-429a-916c-c3702756ad8a"}}, "type": "GlyphRenderer", "id": "68d95ed4-2b71-4444-aa83-7f1fea65de99"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "e0c56f73-0e70-4c70-87ea-13ad42d7ad1d"}, "type": "BasicTicker", "id": "e0c56f73-0e70-4c70-87ea-13ad42d7ad1d"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "c7e2bdb3-9671-4ef0-8632-c134346d7b97"}, "tags": [], "doc": null, "selection_glyph": null, "id": "dca87db1-4628-4572-8ac7-e7011ef6bf1e", "glyph": {"type": "Rect", "id": "31eccee4-d899-4459-ba45-5e744debfd58"}}, "type": "GlyphRenderer", "id": "dca87db1-4628-4572-8ac7-e7011ef6bf1e"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "da626780-d364-4244-af22-c25025cee9d4"}, "tags": [], "doc": null, "selection_glyph": null, "id": "dd9c2c34-577e-4ad4-b207-2789553500f6", "glyph": {"type": "Rect", "id": "e48197c4-e170-4145-8168-77e36fe612a6"}}, "type": "GlyphRenderer", "id": "dd9c2c34-577e-4ad4-b207-2789553500f6"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "a6e276be-e549-4746-a906-c2233479163c"}, "tags": [], "doc": null, "selection_glyph": null, "id": "bec33b21-8316-4289-9fcd-02b5bfa7582d", "glyph": {"type": "Rect", "id": "fadb24a7-42f6-456a-b1f3-14647111494c"}}, "type": "GlyphRenderer", "id": "bec33b21-8316-4289-9fcd-02b5bfa7582d"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "d1b1878c-ef69-448a-8398-2c49a0559edc"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "195a527c-c778-4d77-997f-dbf61d14313d"}, "ticker": {"type": "CategoricalTicker", "id": "705c20b0-2ddd-49e2-b468-17d4f0959a7c"}, "id": "7d4cecba-ad9a-4af2-94fe-123d557f05f7"}, "type": "CategoricalAxis", "id": "7d4cecba-ad9a-4af2-94fe-123d557f05f7"}, {"attributes": {"end": 61.60000000000001, "callback": null, "doc": null, "tags": [], "start": 0, "id": "ef86271b-4ff5-4a66-9453-a679187ef20e"}, "type": "Range1d", "id": "ef86271b-4ff5-4a66-9453-a679187ef20e"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "ec2937d0-3736-48d7-9fe0-7c42aa9346ba"}, "type": "Rect", "id": "ec2937d0-3736-48d7-9fe0-7c42aa9346ba"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "37e35a00-2833-4f9d-9d49-03afc5c1b318"}, "tags": [], "doc": null, "selection_glyph": null, "id": "93152c17-86b1-4754-b3fc-4266f17ea1af", "glyph": {"type": "Rect", "id": "11116332-09e5-4136-bbf1-8399d379b0d4"}}, "type": "GlyphRenderer", "id": "93152c17-86b1-4754-b3fc-4266f17ea1af"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "b3e1eb35-7ff2-473b-9737-9478c49eb62d"}, "type": "ToolEvents", "id": "b3e1eb35-7ff2-473b-9737-9478c49eb62d"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2], "stackedPlatform": [2.5, 23.5, 23.5], "Platform": [5, 47, 47], "catFx-Team": ["All Other Responses:0.666666666667", "Git:0.666666666667", "Mercurial:0.666666666667"], "cat": ["All Other Responses", "Git", "Mercurial"], "midPlatform": [2.5, 23.5, 23.5], "width": [0.8, 0.8, 0.8], "zero": [13.0, 95.0, 90.0], "catPlatform": ["All Other Responses:0.333333333333", "Git:0.333333333333", "Mercurial:0.333333333333"], "stackedFx-Team": [9.0, 71.0, 68.5], "midFx-Team": [4.0, 24.0, 21.5], "Fx-Team": [8, 48, 43]}, "id": "d0433305-56be-4e09-b9d4-66d916c2e5c8"}, "type": "ColumnDataSource", "id": "d0433305-56be-4e09-b9d4-66d916c2e5c8"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a6ad311a-50f7-421b-91ec-dee401cf22d5"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "16d02ff5-1b9d-4280-b51d-5cb197010961"}, "ticker": {"type": "CategoricalTicker", "id": "a1a4293d-1dec-442c-851b-6ff787d07915"}, "id": "6cf1b4da-d5b3-4abd-a735-eb5d1bfe184e"}, "type": "CategoricalAxis", "id": "6cf1b4da-d5b3-4abd-a735-eb5d1bfe184e"}, {"subtype": "Chart", "type": "Plot", "id": "f6a0f597-db8f-495e-b824-b91aa83ab48f", "attributes": {"x_range": {"type": "FactorRange", "id": "e54d5cbc-a162-4665-a5a4-f78980361101"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "6ca797b0-8330-4650-966c-b9aca3d3eb20"}, "title": "Which version control tools do you currently use for Mozilla projects?", "renderers": [{"type": "CategoricalAxis", "id": "b4c93d61-8387-4bcc-b7c8-44bd3aaa3d51"}, {"type": "LinearAxis", "id": "3b56e9c8-ffca-4f5e-8446-e5d7a6e346ad"}, {"type": "Grid", "id": "cb754faf-9a1f-4cce-bfa8-357f2d060939"}, {"type": "GlyphRenderer", "id": "d10bf0b3-4ba8-42c7-9428-fb677cf2df69"}, {"type": "GlyphRenderer", "id": "4094d90b-ae6b-48f6-9372-01379cebf0e5"}, {"type": "Legend", "id": "2529d222-05af-4595-80d8-4cffb7d7c17f"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "e9721e15-f2f5-492e-b043-3b24b96e2d91"}, "plot_height": 560, "doc": null, "id": "f6a0f597-db8f-495e-b824-b91aa83ab48f", "tools": [], "below": [{"type": "CategoricalAxis", "id": "b4c93d61-8387-4bcc-b7c8-44bd3aaa3d51"}], "left": [{"type": "LinearAxis", "id": "3b56e9c8-ffca-4f5e-8446-e5d7a6e346ad"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ff29212c-b360-400d-9981-08847427a774"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "694938b2-76e8-4e4f-8990-34ada6437561"}, "ticker": {"type": "CategoricalTicker", "id": "ebcb8565-9bbc-42ff-b0dd-785069b04b4a"}, "id": "3e85d8f1-b767-48d6-94aa-1da12ac94aa7"}, "type": "CategoricalAxis", "id": "3e85d8f1-b767-48d6-94aa-1da12ac94aa7"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "f9733840-68ae-40a3-ba6e-64439f50d4ea"}, "type": "Rect", "id": "f9733840-68ae-40a3-ba6e-64439f50d4ea"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "7f57e0d1-d687-453e-b09b-f69b3b177110"}, "type": "Rect", "id": "7f57e0d1-d687-453e-b09b-f69b3b177110"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "c850e971-9b66-42bb-a73b-313cfe840897"}, "tags": [], "doc": null, "selection_glyph": null, "id": "2a7543b7-8a4e-46e2-990c-b22f0f651bec", "glyph": {"type": "Rect", "id": "0319b738-c686-4533-b317-a56e24d2ad01"}}, "type": "GlyphRenderer", "id": "2a7543b7-8a4e-46e2-990c-b22f0f651bec"}, {"attributes": {"doc": null, "id": "5e2e8784-26d5-4afd-8683-99336b5bbc87", "tags": []}, "type": "BasicTickFormatter", "id": "5e2e8784-26d5-4afd-8683-99336b5bbc87"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "9ade9716-1adc-4f75-aa42-c42bc81de035"}, "type": "Rect", "id": "9ade9716-1adc-4f75-aa42-c42bc81de035"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "ebd208cd-6052-441f-ab6b-242322f1f4ab"}, "tags": [], "doc": null, "selection_glyph": null, "id": "aea2b6c0-8d3a-4691-abd9-dda951718b97", "glyph": {"type": "Rect", "id": "d2c62929-ec40-4c4d-82a0-b16801f76c88"}}, "type": "GlyphRenderer", "id": "aea2b6c0-8d3a-4691-abd9-dda951718b97"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "f9636d21-4eb0-4db7-aac0-240b1ee06872"}, "tags": [], "doc": null, "selection_glyph": null, "id": "1d877b37-87bf-4b61-8111-6d6d5547864c", "glyph": {"type": "Rect", "id": "45083bd7-00c7-4fea-b94a-23bb2c8f2c9e"}}, "type": "GlyphRenderer", "id": "1d877b37-87bf-4b61-8111-6d6d5547864c"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "c61bc813-2553-4181-b03d-2b29b5a83e76"}, "type": "BasicTicker", "id": "c61bc813-2553-4181-b03d-2b29b5a83e76"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "85c46169-e5e8-4c7f-abad-8198732e5f9b"}, "type": "Rect", "id": "85c46169-e5e8-4c7f-abad-8198732e5f9b"}, {"attributes": {"end": 47.300000000000004, "callback": null, "doc": null, "tags": [], "start": 0, "id": "f3eaf3e3-1f48-4a54-bed1-c7ccf7f6cffe"}, "type": "Range1d", "id": "f3eaf3e3-1f48-4a54-bed1-c7ccf7f6cffe"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [2.0, 10.5, 4.5, 9.0, 8.0, 3.0], "Platform": [4, 21, 9, 18, 16, 6], "catFx-Team": ["All Other Responses:0.666666666667", "N/A:0.666666666667", "Cut all investment:0.666666666667", "Keep about the same:0.666666666667", "Increase investment:0.666666666667", "Drastically increase investment:0.666666666667"], "cat": ["All Other Responses", "N/A", "Cut all investment", "Keep about the same", "Increase investment", "Drastically increase investment"], "midPlatform": [2.0, 10.5, 4.5, 9.0, 8.0, 3.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [6.0, 42.0, 11.0, 26.0, 37.0, 22.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A:0.333333333333", "Cut all investment:0.333333333333", "Keep about the same:0.333333333333", "Increase investment:0.333333333333", "Drastically increase investment:0.333333333333"], "stackedFx-Team": [5.0, 31.5, 10.0, 22.0, 26.5, 14.0], "midFx-Team": [1.0, 10.5, 1.0, 4.0, 10.5, 8.0], "Fx-Team": [2, 21, 2, 8, 21, 16]}, "id": "cde90c72-d305-42a6-94aa-22b50e254594"}, "type": "ColumnDataSource", "id": "cde90c72-d305-42a6-94aa-22b50e254594"}, {"attributes": {"doc": null, "id": "4b89ec3c-7f51-41f2-be90-a6bac721c0f6", "tags": []}, "type": "CategoricalTicker", "id": "4b89ec3c-7f51-41f2-be90-a6bac721c0f6"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [0.5, 5.5, 10.5, 14.5, 18.0], "Platform": [1, 11, 21, 29, 36], "catFx-Team": ["All Other Responses:0.666666666667", "1 = least impactful:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impactful:0.666666666667"], "cat": ["All Other Responses", "1 = least impactful", "2", "3", "4 = most impactful"], "midPlatform": [0.5, 5.5, 10.5, 14.5, 18.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [6.0, 27.0, 42.0, 61.0, 60.0], "catPlatform": ["All Other Responses:0.333333333333", "1 = least impactful:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impactful:0.333333333333"], "stackedFx-Team": [3.5, 19.0, 31.5, 45.0, 48.0], "midFx-Team": [2.5, 8.0, 10.5, 16.0, 12.0], "Fx-Team": [5, 16, 21, 32, 24]}, "id": "5dd74155-377b-4a1a-8c39-cac7ac8eabc9"}, "type": "ColumnDataSource", "id": "5dd74155-377b-4a1a-8c39-cac7ac8eabc9"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "71e4746f-9dd0-432e-8cd6-63dc01dda746"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "b7877193-3e2b-4124-a103-e766189af891"}, "ticker": {"type": "BasicTicker", "id": "97316e47-9f20-41f8-9532-fcc053e02a91"}, "id": "73b02280-7271-4708-9d38-97a46b9b3251"}, "type": "LinearAxis", "id": "73b02280-7271-4708-9d38-97a46b9b3251"}, {"attributes": {"doc": null, "id": "c65e0c3e-14f2-40d3-924d-8b274e9d17dd", "tags": []}, "type": "BasicTickFormatter", "id": "c65e0c3e-14f2-40d3-924d-8b274e9d17dd"}, {"subtype": "Chart", "type": "Plot", "id": "de17671d-f2af-4918-904d-ee51bf2ca003", "attributes": {"x_range": {"type": "FactorRange", "id": "801646bc-1b8c-4ed7-8a75-c1e42f928164"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "80700f72-7332-4ec3-9b85-306e733f9005"}, "title": "Please rate your satisfaction with the following items. [Mozilla specific Git customizations]", "renderers": [{"type": "CategoricalAxis", "id": "209a13f0-4e75-49be-8de6-7818c0b8cb63"}, {"type": "LinearAxis", "id": "91131c23-1605-459c-ac51-759eac2b948a"}, {"type": "Grid", "id": "5d453f71-48de-4b8d-9272-af44343011b9"}, {"type": "GlyphRenderer", "id": "1ea6b5c6-b691-48e1-a37f-ff119a53ba24"}, {"type": "GlyphRenderer", "id": "56c1f5b0-242c-4c2c-9fc3-480fae28e5a4"}, {"type": "Legend", "id": "b1d6f2dd-c831-4651-80ca-8951b6ccff9e"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "ebe94da2-7196-4c49-8836-e75f6338c0a6"}, "plot_height": 560, "doc": null, "id": "de17671d-f2af-4918-904d-ee51bf2ca003", "tools": [], "below": [{"type": "CategoricalAxis", "id": "209a13f0-4e75-49be-8de6-7818c0b8cb63"}], "left": [{"type": "LinearAxis", "id": "91131c23-1605-459c-ac51-759eac2b948a"}]}}, {"attributes": {"doc": null, "id": "682bd239-eeff-4ef3-8f52-fcb34663b582", "tags": []}, "type": "CategoricalTicker", "id": "682bd239-eeff-4ef3-8f52-fcb34663b582"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "3087717d-09a2-45a8-9427-88230aa142b8"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "d8257861-8da1-4356-90a0-af673249e92c"}, "ticker": {"type": "BasicTicker", "id": "8a5e5dfc-483f-49b2-9aa6-166c5c9ee1e3"}, "id": "74b2036f-ac1d-48db-bfc2-ab884b28d97f"}, "type": "LinearAxis", "id": "74b2036f-ac1d-48db-bfc2-ab884b28d97f"}, {"attributes": {"end": 47.300000000000004, "callback": null, "doc": null, "tags": [], "start": 0, "id": "fa41f689-bc67-4110-a4d9-65bffee5c1bc"}, "type": "Range1d", "id": "fa41f689-bc67-4110-a4d9-65bffee5c1bc"}, {"attributes": {"doc": null, "id": "ace1511b-20a4-43d2-b82f-bf7c1ac59f21", "tags": []}, "type": "BasicTickFormatter", "id": "ace1511b-20a4-43d2-b82f-bf7c1ac59f21"}, {"attributes": {"doc": null, "id": "15854be3-8dc5-4cfa-873a-d0820f35cf00", "tags": []}, "type": "BasicTickFormatter", "id": "15854be3-8dc5-4cfa-873a-d0820f35cf00"}, {"attributes": {"doc": null, "id": "2ca8c6cc-8fca-40f9-88d6-4ff36fd44899", "tags": []}, "type": "BasicTickFormatter", "id": "2ca8c6cc-8fca-40f9-88d6-4ff36fd44899"}, {"attributes": {"doc": null, "id": "d80b4936-63b2-4311-b027-54c39cb00530", "tags": []}, "type": "CategoricalTickFormatter", "id": "d80b4936-63b2-4311-b027-54c39cb00530"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "a54c6507-50ba-4de8-9510-2733b712c32e"}, "tags": [], "doc": null, "selection_glyph": null, "id": "b2cbad9f-92a7-47bb-a3f4-ab69a16e6fa2", "glyph": {"type": "Rect", "id": "35a0ef13-f1b7-4f32-a771-a81e1e02bae5"}}, "type": "GlyphRenderer", "id": "b2cbad9f-92a7-47bb-a3f4-ab69a16e6fa2"}, {"attributes": {"doc": null, "id": "705c20b0-2ddd-49e2-b468-17d4f0959a7c", "tags": []}, "type": "CategoricalTicker", "id": "705c20b0-2ddd-49e2-b468-17d4f0959a7c"}, {"attributes": {"end": 44.0, "callback": null, "doc": null, "tags": [], "start": 0, "id": "afd0c373-aad7-4eb2-8475-43b78f6111f5"}, "type": "Range1d", "id": "afd0c373-aad7-4eb2-8475-43b78f6111f5"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "2cc0bc52-76af-4853-b1f7-8bf5f57cdbf0"}, "type": "ToolEvents", "id": "2cc0bc52-76af-4853-b1f7-8bf5f57cdbf0"}, {"attributes": {"doc": null, "id": "2cf94f92-ea4f-4e6d-8391-ca32fdfb93e7", "tags": []}, "type": "BasicTickFormatter", "id": "2cf94f92-ea4f-4e6d-8391-ca32fdfb93e7"}, {"attributes": {"doc": null, "id": "7104dbef-f191-4afa-88a8-43c0b1f042d1", "tags": []}, "type": "BasicTickFormatter", "id": "7104dbef-f191-4afa-88a8-43c0b1f042d1"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fe4dde56-d69e-4fb0-aaf6-aaa62faafa93"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "108d2c32-8832-4591-ba56-8624308b22dc"}, "ticker": {"type": "BasicTicker", "id": "e4189bbe-2255-461f-870b-cb22e7be3b76"}, "id": "e963af4e-3a37-45d7-9ea7-b085f0e10eb9"}, "type": "LinearAxis", "id": "e963af4e-3a37-45d7-9ea7-b085f0e10eb9"}, {"attributes": {"doc": null, "id": "bb70a8b9-6a2e-4f15-9b30-7c97ef457efb", "tags": []}, "type": "BasicTickFormatter", "id": "bb70a8b9-6a2e-4f15-9b30-7c97ef457efb"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [5.0, 4.5, 21.0, 12.5, 2.0], "Platform": [10, 9, 42, 25, 4], "catFx-Team": ["All Other Responses:0.666666666667", "N/A (not relevant to me):0.666666666667", "Keep about the same:0.666666666667", "Increase investment:0.666666666667", "Drastically increase investment:0.666666666667"], "cat": ["All Other Responses", "N/A (not relevant to me)", "Keep about the same", "Increase investment", "Drastically increase investment"], "midPlatform": [5.0, 4.5, 21.0, 12.5, 2.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [12.0, 19.0, 85.0, 46.0, 12.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A (not relevant to me):0.333333333333", "Keep about the same:0.333333333333", "Increase investment:0.333333333333", "Drastically increase investment:0.333333333333"], "stackedFx-Team": [11.0, 14.0, 63.5, 35.5, 8.0], "midFx-Team": [1.0, 5.0, 21.5, 10.5, 4.0], "Fx-Team": [2, 10, 43, 21, 8]}, "id": "5ff56d4d-7ada-4a25-85c4-64a4cbe6ec1b"}, "type": "ColumnDataSource", "id": "5ff56d4d-7ada-4a25-85c4-64a4cbe6ec1b"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "219d1c93-23df-4582-8adc-7e8ea1246cd6"}, "orientation": "top_left", "tags": [], "doc": null, "id": "f857baa3-67f1-4e8f-b041-fc6ef3bacf62", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "f6df5199-9786-4bd7-8734-7be3db1f61d0"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "078cf947-6f3b-4519-a3aa-7048c1955b76"}]]]}, "type": "Legend", "id": "f857baa3-67f1-4e8f-b041-fc6ef3bacf62"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "17678ba0-eb81-4ba7-af55-75248e32a5dd"}, "tags": [], "doc": null, "selection_glyph": null, "id": "51b597f8-a734-47bb-a85c-5183a3398411", "glyph": {"type": "Rect", "id": "5284f340-60d8-4263-a7fd-0588f6dc45a7"}}, "type": "GlyphRenderer", "id": "51b597f8-a734-47bb-a85c-5183a3398411"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "658f20e7-2ee8-4885-9ad8-3038d8512366"}, "tags": [], "doc": null, "selection_glyph": null, "id": "015317df-8ecb-436b-ba42-1885328faa25", "glyph": {"type": "Rect", "id": "0bda6e36-efb0-4220-8964-a882012c97f0"}}, "type": "GlyphRenderer", "id": "015317df-8ecb-436b-ba42-1885328faa25"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "96f6eedc-c588-41b9-8704-d4a172075ee0"}, "type": "Rect", "id": "96f6eedc-c588-41b9-8704-d4a172075ee0"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [1.0, 14.0, 8.5, 10.5, 10.0, 5.0], "Platform": [2, 28, 17, 21, 20, 10], "catFx-Team": ["All Other Responses:0.666666666667", "N/A:0.666666666667", "Extremely dissatisfied:0.666666666667", "Below average:0.666666666667", "Average:0.666666666667", "Above average:0.666666666667"], "cat": ["All Other Responses", "N/A", "Extremely dissatisfied", "Below average", "Average", "Above average"], "midPlatform": [1.0, 14.0, 8.5, 10.5, 10.0, 5.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [7.0, 55.0, 30.0, 53.0, 36.0, 15.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A:0.333333333333", "Extremely dissatisfied:0.333333333333", "Below average:0.333333333333", "Average:0.333333333333", "Above average:0.333333333333"], "stackedFx-Team": [4.5, 41.5, 23.5, 37.0, 28.0, 12.5], "midFx-Team": [2.5, 13.5, 6.5, 16.0, 8.0, 2.5], "Fx-Team": [5, 27, 13, 32, 16, 5]}, "id": "c7bd5301-e792-472a-8757-49beb4af8c27"}, "type": "ColumnDataSource", "id": "c7bd5301-e792-472a-8757-49beb4af8c27"}, {"attributes": {"end": 46.2, "callback": null, "doc": null, "tags": [], "start": 0, "id": "aee72f09-3013-4e1d-9c22-1de204e3f760"}, "type": "Range1d", "id": "aee72f09-3013-4e1d-9c22-1de204e3f760"}, {"subtype": "Chart", "type": "Plot", "id": "0a5b11ba-b147-4933-a11e-ed712a008782", "attributes": {"x_range": {"type": "FactorRange", "id": "ef9544a2-5446-4918-b104-0a7a910cb2f2"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "5e7d47ee-2af5-4525-bed4-302f50014313"}, "title": "What version control tools do you use to work with mozilla-central and other project branches (inbound, fx-team, etc)?", "renderers": [{"type": "CategoricalAxis", "id": "02bfe371-0417-4352-858f-f4b866577196"}, {"type": "LinearAxis", "id": "e2de2520-4d29-4bf1-abb1-07aa9cac8495"}, {"type": "Grid", "id": "86678d20-ed1c-416b-b67a-5608c3a2aef8"}, {"type": "GlyphRenderer", "id": "4be5bedc-2ef1-4eac-bc52-d085d592c8b9"}, {"type": "GlyphRenderer", "id": "5a5f6cd2-f1f5-4a01-860a-1cd15c1e2c09"}, {"type": "Legend", "id": "5929649c-ec08-4c67-a51c-1cf5532167cd"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "2e99b6d6-35a7-47da-a2b9-7a0aa5d75a21"}, "plot_height": 560, "doc": null, "id": "0a5b11ba-b147-4933-a11e-ed712a008782", "tools": [], "below": [{"type": "CategoricalAxis", "id": "02bfe371-0417-4352-858f-f4b866577196"}], "left": [{"type": "LinearAxis", "id": "e2de2520-4d29-4bf1-abb1-07aa9cac8495"}]}}, {"attributes": {"doc": null, "id": "40b6fd84-0948-4679-8162-1362499daf0d", "tags": []}, "type": "CategoricalTicker", "id": "40b6fd84-0948-4679-8162-1362499daf0d"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ce0e6eca-a674-4977-99cb-6652b2d7fe92"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "913b619e-bc51-44bb-8341-678f5e5f126a"}, "ticker": {"type": "BasicTicker", "id": "edaeb88f-0958-4473-afa5-ff0add9378d1"}, "id": "7cd26243-6a4e-4f94-a392-cdf5d4d2d530"}, "type": "LinearAxis", "id": "7cd26243-6a4e-4f94-a392-cdf5d4d2d530"}, {"attributes": {"doc": null, "id": "0f315a97-da51-4ebb-acf3-d836e385200e", "tags": []}, "type": "BasicTickFormatter", "id": "0f315a97-da51-4ebb-acf3-d836e385200e"}, {"attributes": {"end": 82.5, "callback": null, "doc": null, "tags": [], "start": 0, "id": "2927a3a2-6ee3-4d5c-b60c-a2bff037b19c"}, "type": "Range1d", "id": "2927a3a2-6ee3-4d5c-b60c-a2bff037b19c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fd4d596e-e6bc-4330-95c9-3b470d2a5560"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "7c748949-d365-4941-84cc-e2dc40727cb5"}, "ticker": {"type": "CategoricalTicker", "id": "40b6fd84-0948-4679-8162-1362499daf0d"}, "id": "201b2071-7886-4089-8348-729c2f0b8477"}, "type": "CategoricalAxis", "id": "201b2071-7886-4089-8348-729c2f0b8477"}, {"attributes": {"doc": null, "id": "8236b4a6-f057-4c83-9b7d-8be813723c5b", "tags": []}, "type": "BasicTickFormatter", "id": "8236b4a6-f057-4c83-9b7d-8be813723c5b"}, {"subtype": "Chart", "type": "Plot", "id": "db85f360-0ea5-4db1-ab2c-b79cfa1beeb3", "attributes": {"x_range": {"type": "FactorRange", "id": "aaa59472-ba0d-4f87-ab0b-78ee27cb56fb"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "1a7a7baa-dc6a-409d-a49f-818b78be5bb6"}, "title": "Thinking of the mozilla-central/Firefox build system, rank the following potential improvements in terms of their impact to your productivity. [A build mode that doesn\u2019t require me to build Gecko/libxul (because you don't change this code)]", "renderers": [{"type": "CategoricalAxis", "id": "28a96dd8-874a-4e6f-9878-7e70d5a04a95"}, {"type": "LinearAxis", "id": "33590972-cdf3-4abc-89b2-c489d0467c44"}, {"type": "Grid", "id": "f2e20127-b919-49cb-81e5-701589716f95"}, {"type": "GlyphRenderer", "id": "4a7d09af-35a8-476a-8007-ff4ec089b002"}, {"type": "GlyphRenderer", "id": "809a217a-53b8-4df6-af1b-46a55d1c7360"}, {"type": "Legend", "id": "7dcd1bae-fafd-40a6-b113-997dabaa3427"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "09ed6f22-cf01-44ac-8461-c8726dcf442e"}, "plot_height": 560, "doc": null, "id": "db85f360-0ea5-4db1-ab2c-b79cfa1beeb3", "tools": [], "below": [{"type": "CategoricalAxis", "id": "28a96dd8-874a-4e6f-9878-7e70d5a04a95"}], "left": [{"type": "LinearAxis", "id": "33590972-cdf3-4abc-89b2-c489d0467c44"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "6f29235a-6fc2-44b0-b165-09f7ab73dbc5"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "754fea8a-00e8-4bdc-8076-8ec7fefc7dc0"}, "id": "79698176-7c74-4304-b90c-04558a1603c3"}, "type": "Grid", "id": "79698176-7c74-4304-b90c-04558a1603c3"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "ce635ee8-826d-4608-83ed-ed69f2a20673"}, "type": "ToolEvents", "id": "ce635ee8-826d-4608-83ed-ed69f2a20673"}, {"attributes": {"end": 104.50000000000001, "callback": null, "doc": null, "tags": [], "start": 0, "id": "e7775398-0993-46b1-95c1-49968ce24c9f"}, "type": "Range1d", "id": "e7775398-0993-46b1-95c1-49968ce24c9f"}, {"attributes": {"doc": null, "id": "f00b07c7-b3c9-49ae-aef1-0cd54566447b", "tags": []}, "type": "BasicTickFormatter", "id": "f00b07c7-b3c9-49ae-aef1-0cd54566447b"}, {"attributes": {"doc": null, "id": "ba4b9a2d-fb53-48dd-839c-8ef87934857e", "tags": []}, "type": "CategoricalTicker", "id": "ba4b9a2d-fb53-48dd-839c-8ef87934857e"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "de17671d-f2af-4918-904d-ee51bf2ca003"}, "orientation": "top_left", "tags": [], "doc": null, "id": "b1d6f2dd-c831-4651-80ca-8951b6ccff9e", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "1ea6b5c6-b691-48e1-a37f-ff119a53ba24"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "56c1f5b0-242c-4c2c-9fc3-480fae28e5a4"}]]]}, "type": "Legend", "id": "b1d6f2dd-c831-4651-80ca-8951b6ccff9e"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "12deaee2-31ba-4c37-817f-610f928b23b8"}, "type": "ToolEvents", "id": "12deaee2-31ba-4c37-817f-610f928b23b8"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [5.5, 18.0, 14.0, 7.5, 4.0], "Platform": [11, 36, 28, 15, 8], "catFx-Team": ["1 - no impact:0.666666666667", "2 - little impact:0.666666666667", "3 - a fair amount of impact:0.666666666667", "4 - a significant amount of impact:0.666666666667", "5 - an extremely frustrating amount of impact:0.666666666667"], "cat": ["1 - no impact", "2 - little impact", "3 - a fair amount of impact", "4 - a significant amount of impact", "5 - an extremely frustrating amount of impact"], "midPlatform": [5.5, 18.0, 14.0, 7.5, 4.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [32.0, 79.0, 52.0, 25.0, 8.0], "catPlatform": ["1 - no impact:0.333333333333", "2 - little impact:0.333333333333", "3 - a fair amount of impact:0.333333333333", "4 - a significant amount of impact:0.333333333333", "5 - an extremely frustrating amount of impact:0.333333333333"], "stackedFx-Team": [21.5, 57.5, 40.0, 20.0, 8.0], "midFx-Team": [10.5, 21.5, 12.0, 5.0, 0.0], "Fx-Team": [21, 43, 24, 10, 0]}, "id": "1775a9f6-377c-435c-a295-279bb488885b"}, "type": "ColumnDataSource", "id": "1775a9f6-377c-435c-a295-279bb488885b"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "eb7096e4-cbcc-447c-b2d8-07f730c8b29f"}, "tags": [], "doc": null, "selection_glyph": null, "id": "4be5bedc-2ef1-4eac-bc52-d085d592c8b9", "glyph": {"type": "Rect", "id": "c2ab30e2-a90c-46bd-9db6-d6c8a2f66ce1"}}, "type": "GlyphRenderer", "id": "4be5bedc-2ef1-4eac-bc52-d085d592c8b9"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "8e6f8144-42c7-411e-91f9-588c4fb6ad0d"}, "type": "Rect", "id": "8e6f8144-42c7-411e-91f9-588c4fb6ad0d"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "1d5d5e67-70af-4e88-a8e4-7dd7a246eb9a"}, "type": "Rect", "id": "1d5d5e67-70af-4e88-a8e4-7dd7a246eb9a"}, {"attributes": {"doc": null, "id": "e4f8b4ce-1701-40af-880a-0eeaf70150e3", "tags": []}, "type": "CategoricalTicker", "id": "e4f8b4ce-1701-40af-880a-0eeaf70150e3"}, {"subtype": "Chart", "type": "Plot", "id": "e82dd297-79b0-46eb-8c2c-c792cec26748", "attributes": {"x_range": {"type": "FactorRange", "id": "6b95d5eb-1220-41d9-974c-7cfff9e45624"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "a38bae40-ffb1-4173-bf27-8ae45e56ce9f"}, "title": "What other languages do you work with?", "renderers": [{"type": "CategoricalAxis", "id": "1135d6ef-b803-49c6-99b1-972962800bb9"}, {"type": "LinearAxis", "id": "a3638a99-73f3-4589-9db0-fb8b56435927"}, {"type": "Grid", "id": "de8b5137-7545-4ebc-8530-416a5de56b2c"}, {"type": "GlyphRenderer", "id": "2150f83e-dba1-4306-8e94-e9479f5c142d"}, {"type": "GlyphRenderer", "id": "10b4ebab-3676-4a83-bef3-98592e8774fb"}, {"type": "Legend", "id": "389e3993-ab5c-4fef-81a6-4012b02da9e9"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "5353b830-14a9-4dfe-a22f-71533600d298"}, "plot_height": 560, "doc": null, "id": "e82dd297-79b0-46eb-8c2c-c792cec26748", "tools": [], "below": [{"type": "CategoricalAxis", "id": "1135d6ef-b803-49c6-99b1-972962800bb9"}], "left": [{"type": "LinearAxis", "id": "a3638a99-73f3-4589-9db0-fb8b56435927"}]}}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "0d5a265e-923f-4426-93b7-ad35470e8c80"}, "type": "Rect", "id": "0d5a265e-923f-4426-93b7-ad35470e8c80"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "f841f0ea-e1d4-48b8-9052-33cac62132a3"}, "type": "ToolEvents", "id": "f841f0ea-e1d4-48b8-9052-33cac62132a3"}, {"attributes": {"doc": null, "id": "6a230e06-0913-4efc-a4c7-e5b51649ee8f", "tags": []}, "type": "CategoricalTicker", "id": "6a230e06-0913-4efc-a4c7-e5b51649ee8f"}, {"attributes": {"doc": null, "id": "05ebadde-8ee2-41e0-b1b0-29770f68c189", "tags": []}, "type": "CategoricalTicker", "id": "05ebadde-8ee2-41e0-b1b0-29770f68c189"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "1fd31781-1d3c-44ea-be46-d526092b14ca"}, "tags": [], "doc": null, "selection_glyph": null, "id": "6cbf22bb-ab94-4dc5-9156-ec1fba253c87", "glyph": {"type": "Rect", "id": "594c9608-2b0b-4b96-af03-cbf435c4498b"}}, "type": "GlyphRenderer", "id": "6cbf22bb-ab94-4dc5-9156-ec1fba253c87"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "696ccf69-5943-4ee6-bb2d-fb5617f2971c"}, "tags": [], "doc": null, "selection_glyph": null, "id": "a13e2ac6-53b6-4d06-9e48-8a6a6371f5d6", "glyph": {"type": "Rect", "id": "44691f68-c121-4a68-b3b6-327f28c60c82"}}, "type": "GlyphRenderer", "id": "a13e2ac6-53b6-4d06-9e48-8a6a6371f5d6"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "bcf2336f-48e4-448b-9761-e3cfbaafb251"}, "orientation": "top_left", "tags": [], "doc": null, "id": "fdd0a21a-433a-4579-abee-6577fe67d2ef", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "4d253215-dde0-4c12-b14c-d28452c96297"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "7e35cc0e-d648-480d-a2e9-a979e4fc19a4"}]]]}, "type": "Legend", "id": "fdd0a21a-433a-4579-abee-6577fe67d2ef"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "d37e3faf-ec25-42d1-8952-e1dfbf7c86fa"}, "type": "ToolEvents", "id": "d37e3faf-ec25-42d1-8952-e1dfbf7c86fa"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [5.5, 3.0, 4.0, 4.0, 10.5, 22.0], "Platform": [11, 6, 8, 8, 21, 44], "catFx-Team": ["All Other Responses:0.666666666667", "It's not horrible, but it's still pretty bad:0.666666666667", "It sucks a little:0.666666666667", "It's neither bad nor good:0.666666666667", "It's OK, I guess:0.666666666667", "It's pretty good:0.666666666667"], "cat": ["All Other Responses", "It's not horrible, but it's still pretty bad", "It sucks a little", "It's neither bad nor good", "It's OK, I guess", "It's pretty good"], "midPlatform": [5.5, 3.0, 4.0, 4.0, 10.5, 22.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [16.0, 11.0, 29.0, 13.0, 50.0, 76.0], "catPlatform": ["All Other Responses:0.333333333333", "It's not horrible, but it's still pretty bad:0.333333333333", "It sucks a little:0.333333333333", "It's neither bad nor good:0.333333333333", "It's OK, I guess:0.333333333333", "It's pretty good:0.333333333333"], "stackedFx-Team": [13.5, 8.5, 18.5, 10.5, 35.5, 60.0], "midFx-Team": [2.5, 2.5, 10.5, 2.5, 14.5, 16.0], "Fx-Team": [5, 5, 21, 5, 29, 32]}, "id": "bdcd7035-05f6-487f-ae98-b7bf894b20a7"}, "type": "ColumnDataSource", "id": "bdcd7035-05f6-487f-ae98-b7bf894b20a7"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "1775a9f6-377c-435c-a295-279bb488885b"}, "tags": [], "doc": null, "selection_glyph": null, "id": "c04a4e98-1dfc-4591-8014-663a929d3b3c", "glyph": {"type": "Rect", "id": "6df7b52e-dc25-4c24-a89f-5ce66d972940"}}, "type": "GlyphRenderer", "id": "c04a4e98-1dfc-4591-8014-663a929d3b3c"}, {"subtype": "Chart", "type": "Plot", "id": "db73f777-88ee-42eb-b726-a708cc334ac9", "attributes": {"x_range": {"type": "FactorRange", "id": "7e777d77-c2e6-4d26-85d0-1a1eaeca9b39"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "5fd9534d-74ff-4ef1-bb2e-d737c23034e0"}, "title": "How impactful would the following potential MozReview features have on your productivity? [Automatically subscribe to reviews touching files you care about]", "renderers": [{"type": "CategoricalAxis", "id": "85ec81f5-682e-4053-9a62-e484c5aa8fc7"}, {"type": "LinearAxis", "id": "a5da5b6f-03fa-473d-9513-94e7fb9fd7b9"}, {"type": "Grid", "id": "63d58d46-9209-49e4-a1a8-a68b0d316e1b"}, {"type": "GlyphRenderer", "id": "4b26fcb8-4f27-4cae-bb77-472a7bacc918"}, {"type": "GlyphRenderer", "id": "61de7685-9d72-4627-a272-b0e23cda8d2f"}, {"type": "Legend", "id": "5c73a3f0-aff0-4159-aacc-31cf80d96f9d"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "9be4c0fb-cffa-480b-a409-83f50f767a26"}, "plot_height": 560, "doc": null, "id": "db73f777-88ee-42eb-b726-a708cc334ac9", "tools": [], "below": [{"type": "CategoricalAxis", "id": "85ec81f5-682e-4053-9a62-e484c5aa8fc7"}], "left": [{"type": "LinearAxis", "id": "a5da5b6f-03fa-473d-9513-94e7fb9fd7b9"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "83c80902-8e88-423c-a67b-be9b3a10b149"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "503f395e-3521-4407-b32e-b92707c17d48"}, "ticker": {"type": "BasicTicker", "id": "266e4b98-2989-4d8d-9ffb-329f73f2239f"}, "id": "53c148d5-e921-4bf8-90bd-3cf738451bcd"}, "type": "LinearAxis", "id": "53c148d5-e921-4bf8-90bd-3cf738451bcd"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "9b1e456e-6a96-4a42-8fb7-20262fb52275"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "7679132e-72bb-4f83-8efc-0d5ef434376b"}, "ticker": {"type": "BasicTicker", "id": "ed0367de-af93-4c7c-b50e-d4b713292aaa"}, "id": "34db7c9b-79fd-415b-b3ad-820ce815869f"}, "type": "LinearAxis", "id": "34db7c9b-79fd-415b-b3ad-820ce815869f"}, {"attributes": {"doc": null, "id": "2db658a3-e62b-456d-86db-4a71a088c52e", "tags": []}, "type": "BasicTickFormatter", "id": "2db658a3-e62b-456d-86db-4a71a088c52e"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "c1ec0b42-abc4-4036-aaf6-1739ff962fb0"}, "type": "BasicTicker", "id": "c1ec0b42-abc4-4036-aaf6-1739ff962fb0"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "445d1409-04d0-401f-b48f-851db3396232"}, "tags": [], "doc": null, "selection_glyph": null, "id": "1ea6b5c6-b691-48e1-a37f-ff119a53ba24", "glyph": {"type": "Rect", "id": "048ba528-2c8f-4b32-aa84-407164f57fcf"}}, "type": "GlyphRenderer", "id": "1ea6b5c6-b691-48e1-a37f-ff119a53ba24"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "Custom Git commands or scripts to import and export commits from/to Mercurial clones", "From GitHub", "From git.mozilla.org", "git-cinnabar"], "doc": null, "tags": [], "id": "a1a0e84f-09de-4871-adde-fbe6b7f062d9"}, "type": "FactorRange", "id": "a1a0e84f-09de-4871-adde-fbe6b7f062d9"}, {"attributes": {"end": 61.60000000000001, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "2f67f3c2-c51f-4278-8fb6-80107fc703fd"}, "type": "Range1d", "id": "2f67f3c2-c51f-4278-8fb6-80107fc703fd"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "44cc8bf2-a5c9-4b45-96ad-19ed3ee7c56e"}, "type": "Rect", "id": "44cc8bf2-a5c9-4b45-96ad-19ed3ee7c56e"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "3a8acf20-959a-4bc8-bbf7-33f242fd3616"}, "tags": [], "doc": null, "selection_glyph": null, "id": "8259cca6-379f-4123-b7b9-90adf29c367d", "glyph": {"type": "Rect", "id": "702e8b11-0275-4ac2-94a0-3dd330ea0cb6"}}, "type": "GlyphRenderer", "id": "8259cca6-379f-4123-b7b9-90adf29c367d"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [4.0, 15.0, 20.5, 6.0, 3.5], "Platform": [8, 30, 41, 12, 7], "catFx-Team": ["1 - no impact:0.666666666667", "2 - little impact:0.666666666667", "3 - a fair amount of impact:0.666666666667", "4 - a significant amount of impact:0.666666666667", "5 - an extremely frustrating amount of impact:0.666666666667"], "cat": ["1 - no impact", "2 - little impact", "3 - a fair amount of impact", "4 - a significant amount of impact", "5 - an extremely frustrating amount of impact"], "midPlatform": [4.0, 15.0, 20.5, 6.0, 3.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [10.0, 73.0, 73.0, 28.0, 12.0], "catPlatform": ["1 - no impact:0.333333333333", "2 - little impact:0.333333333333", "3 - a fair amount of impact:0.333333333333", "4 - a significant amount of impact:0.333333333333", "5 - an extremely frustrating amount of impact:0.333333333333"], "stackedFx-Team": [9.0, 51.5, 57.0, 20.0, 9.5], "midFx-Team": [1.0, 21.5, 16.0, 8.0, 2.5], "Fx-Team": [2, 43, 32, 16, 5]}, "id": "971b2036-690d-49d8-bb9a-20aa6468fd55"}, "type": "ColumnDataSource", "id": "971b2036-690d-49d8-bb9a-20aa6468fd55"}, {"attributes": {"end": 47.300000000000004, "callback": null, "doc": null, "tags": [], "start": 0, "id": "aa47e163-9308-4107-aa1b-1981ce22227f"}, "type": "Range1d", "id": "aa47e163-9308-4107-aa1b-1981ce22227f"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "342695b8-064b-4b1b-b303-97268d68f259"}, "type": "Rect", "id": "342695b8-064b-4b1b-b303-97268d68f259"}, {"attributes": {"doc": null, "id": "3c798c18-e8b3-4750-8c30-269b0c50f623", "tags": []}, "type": "BasicTickFormatter", "id": "3c798c18-e8b3-4750-8c30-269b0c50f623"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [12.5, 5.0, 4.0, 7.0, 6.0, 2.5], "Platform": [25, 10, 8, 14, 12, 5], "catFx-Team": ["N/A:0.666666666667", "Cut all investment:0.666666666667", "Decrease investment:0.666666666667", "Keep about the same:0.666666666667", "Increase investment:0.666666666667", "Drastically increase investment:0.666666666667"], "cat": ["N/A", "Cut all investment", "Decrease investment", "Keep about the same", "Increase investment", "Drastically increase investment"], "midPlatform": [12.5, 5.0, 4.0, 7.0, 6.0, 2.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [46.0, 15.0, 8.0, 30.0, 36.0, 10.0], "catPlatform": ["N/A:0.333333333333", "Cut all investment:0.333333333333", "Decrease investment:0.333333333333", "Keep about the same:0.333333333333", "Increase investment:0.333333333333", "Drastically increase investment:0.333333333333"], "stackedFx-Team": [35.5, 12.5, 8.0, 22.0, 24.0, 7.5], "midFx-Team": [10.5, 2.5, 0.0, 8.0, 12.0, 2.5], "Fx-Team": [21, 5, 0, 16, 24, 5]}, "id": "a54c6507-50ba-4de8-9510-2733b712c32e"}, "type": "ColumnDataSource", "id": "a54c6507-50ba-4de8-9510-2733b712c32e"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "02776478-701b-4368-9060-e7b70bed0081"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "1bc5a559-1b4b-4b6d-8af7-44c50c6c809f"}, "id": "9ddba53a-ffea-4c64-9e71-d13572b82997"}, "type": "Grid", "id": "9ddba53a-ffea-4c64-9e71-d13572b82997"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [4.0, 7.0, 3.0, 17.5, 13.0], "Platform": [8, 14, 6, 35, 26], "catFx-Team": ["All Other Responses:0.666666666667", "N/A (not relevant to me):0.666666666667", "Cut all investment:0.666666666667", "Keep about the same:0.666666666667", "Increase investment:0.666666666667"], "cat": ["All Other Responses", "N/A (not relevant to me)", "Cut all investment", "Keep about the same", "Increase investment"], "midPlatform": [4.0, 7.0, 3.0, 17.5, 13.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [16.0, 24.0, 8.0, 75.0, 47.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A (not relevant to me):0.333333333333", "Cut all investment:0.333333333333", "Keep about the same:0.333333333333", "Increase investment:0.333333333333"], "stackedFx-Team": [12.0, 19.0, 7.0, 55.0, 36.5], "midFx-Team": [4.0, 5.0, 1.0, 20.0, 10.5], "Fx-Team": [8, 10, 2, 40, 21]}, "id": "f03b05f2-1e98-46fd-86a8-89ed8f0b623a"}, "type": "ColumnDataSource", "id": "f03b05f2-1e98-46fd-86a8-89ed8f0b623a"}, {"attributes": {"end": 47.300000000000004, "callback": null, "doc": null, "tags": [], "start": 0, "id": "c9783b95-bc69-4ca6-b0f5-7f80e2c3bc89"}, "type": "Range1d", "id": "c9783b95-bc69-4ca6-b0f5-7f80e2c3bc89"}, {"attributes": {"end": 41.800000000000004, "callback": null, "doc": null, "tags": [], "start": 0, "id": "64ec5bee-c1cd-4b2e-b52e-cf11bdfc004a"}, "type": "Range1d", "id": "64ec5bee-c1cd-4b2e-b52e-cf11bdfc004a"}, {"attributes": {"callback": null, "factors": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "79b4e92a-ac2f-41fe-bf78-8ec8f7f26945"}, "type": "FactorRange", "id": "79b4e92a-ac2f-41fe-bf78-8ec8f7f26945"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "38f970fb-87dc-410f-89a3-a0002cda629b"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "f9d9c87d-33e1-4883-abfd-c30220ce710d"}, "id": "28ad37a2-f057-4c06-9c9a-6cb10b8ce161"}, "type": "Grid", "id": "28ad37a2-f057-4c06-9c9a-6cb10b8ce161"}, {"attributes": {"end": 100.10000000000001, "callback": null, "doc": null, "tags": [], "start": 0, "id": "4e42044a-5758-4148-8c7d-d153ce11e384"}, "type": "Range1d", "id": "4e42044a-5758-4148-8c7d-d153ce11e384"}, {"attributes": {"doc": null, "id": "6f807579-afe4-494c-b2f3-99604b853b08", "tags": []}, "type": "BasicTickFormatter", "id": "6f807579-afe4-494c-b2f3-99604b853b08"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "02873884-4446-44a0-b6a0-f503c649ec7b"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "77f35882-fcba-43b2-a1b3-07666f732452"}, "id": "4b7c16fe-fefc-4b3a-8cd4-dc9456b0f362"}, "type": "Grid", "id": "4b7c16fe-fefc-4b3a-8cd4-dc9456b0f362"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "7aa85ca2-4fbf-4ed8-8b6e-40101e2ca4c2"}, "orientation": "top_left", "tags": [], "doc": null, "id": "6bd74016-1064-40b5-b88a-d82628612388", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "323ed172-45f8-4506-95f3-310403f0e00b"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "ff040e58-d18a-44cc-b8f0-2768d03b2ebe"}]]]}, "type": "Legend", "id": "6bd74016-1064-40b5-b88a-d82628612388"}, {"attributes": {"callback": null, "factors": ["N/A", "1 = little impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "cc384e8a-23b5-43a9-b7b8-9e1d97125c20"}, "type": "FactorRange", "id": "cc384e8a-23b5-43a9-b7b8-9e1d97125c20"}, {"attributes": {"doc": null, "id": "84eaa9a1-2caf-4de2-9a43-68bb9d446e65", "tags": []}, "type": "CategoricalTickFormatter", "id": "84eaa9a1-2caf-4de2-9a43-68bb9d446e65"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "979329db-3ffa-450b-acb8-e804615bae87"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "9c31e69d-38be-4889-9880-0362aed1685d"}, "ticker": {"type": "BasicTicker", "id": "f54b3ea3-313b-47a4-933b-2449d562088a"}, "id": "a9db0de5-376b-4fbf-bcf6-c2857990f9fe"}, "type": "LinearAxis", "id": "a9db0de5-376b-4fbf-bcf6-c2857990f9fe"}, {"attributes": {"end": 40.7, "callback": null, "doc": null, "tags": [], "start": 0, "id": "22d515d1-4788-4c7d-9988-64df52a12fc0"}, "type": "Range1d", "id": "22d515d1-4788-4c7d-9988-64df52a12fc0"}, {"attributes": {"callback": null, "factors": ["1 - no impact", "2 - little impact", "3 - a fair amount of impact", "4 - a significant amount of impact", "5 - an extremely frustrating amount of impact"], "doc": null, "tags": [], "id": "d274d627-5a9d-4b73-aaaa-a9cf5e8e5fbd"}, "type": "FactorRange", "id": "d274d627-5a9d-4b73-aaaa-a9cf5e8e5fbd"}, {"subtype": "Chart", "type": "Plot", "id": "07199e6a-f16d-4717-ab6d-6cab21bb0e99", "attributes": {"x_range": {"type": "FactorRange", "id": "a1a0e84f-09de-4871-adde-fbe6b7f062d9"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "1037439e-79ef-4bb8-b0aa-e64f1832908b"}, "title": "If you use Git for working on Firefox, how do you obtain the source code? (Choose all that apply)", "renderers": [{"type": "CategoricalAxis", "id": "f1e96a1b-d889-4c2a-a4ce-f84cadfd712a"}, {"type": "LinearAxis", "id": "ccebb25e-1d2b-45bb-bee3-9b7145a5d2c8"}, {"type": "Grid", "id": "5d6fefd5-99cf-435e-afff-a2f6e4a3b9fa"}, {"type": "GlyphRenderer", "id": "b14fd36d-477b-4789-bee1-c795fe164ae8"}, {"type": "GlyphRenderer", "id": "3f2eb5fd-4473-4133-b9a2-36792c72e4fc"}, {"type": "Legend", "id": "370a15a5-7a98-47ce-a319-74939cc7b780"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "7aeb5032-3b6c-441e-b557-39a0900c986f"}, "plot_height": 560, "doc": null, "id": "07199e6a-f16d-4717-ab6d-6cab21bb0e99", "tools": [], "below": [{"type": "CategoricalAxis", "id": "f1e96a1b-d889-4c2a-a4ce-f84cadfd712a"}], "left": [{"type": "LinearAxis", "id": "ccebb25e-1d2b-45bb-bee3-9b7145a5d2c8"}]}}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "8192c498-f6a8-437d-8f5a-627794045bf7"}, "type": "BasicTicker", "id": "8192c498-f6a8-437d-8f5a-627794045bf7"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "3f6451bd-a783-4e0d-8fb3-5b59fc7ace06"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "03735725-d413-449a-ba86-722b92ba4576"}, "ticker": {"type": "BasicTicker", "id": "9f798019-bd28-420d-9c1b-a57cb25181d2"}, "id": "b0b70717-b01b-44f9-aef7-500c0fc6afb6"}, "type": "LinearAxis", "id": "b0b70717-b01b-44f9-aef7-500c0fc6afb6"}, {"attributes": {"doc": null, "id": "94de1926-bfc9-4c71-bd70-4a6f7aa015fd", "tags": []}, "type": "CategoricalTicker", "id": "94de1926-bfc9-4c71-bd70-4a6f7aa015fd"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "5b959267-0fa2-40dc-a97b-0e560578bbde"}, "orientation": "top_left", "tags": [], "doc": null, "id": "5e7618a6-a3fb-4e9b-9ddd-ad7060fd4fdf", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "bf7d6b02-6806-4a9c-98f7-0b1022bd0d43"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "6553cdb5-fa69-4e80-9466-3a0fe89d9f97"}]]]}, "type": "Legend", "id": "5e7618a6-a3fb-4e9b-9ddd-ad7060fd4fdf"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "e1dc57c7-2233-4a41-b3e0-32ab89541be0"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "c1ccccce-ce48-49b9-af25-57563b879495"}, "id": "1250ccfd-b6e8-4041-8038-259fb6ca8045"}, "type": "Grid", "id": "1250ccfd-b6e8-4041-8038-259fb6ca8045"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "707f6039-a9ee-455c-be0d-7e96ac37443a"}, "type": "Rect", "id": "707f6039-a9ee-455c-be0d-7e96ac37443a"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [1.0, 14.0, 17.5, 10.5, 4.0], "Platform": [2, 28, 35, 21, 8], "catFx-Team": ["All Other Responses:0.666666666667", "No impact / Not applicable:0.666666666667", "A little impact:0.666666666667", "Moderate impact:0.666666666667", "Significant impact:0.666666666667"], "cat": ["All Other Responses", "No impact / Not applicable", "A little impact", "Moderate impact", "Significant impact"], "midPlatform": [1.0, 14.0, 17.5, 10.5, 4.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [7.0, 71.0, 56.0, 37.0, 18.0], "catPlatform": ["All Other Responses:0.333333333333", "No impact / Not applicable:0.333333333333", "A little impact:0.333333333333", "Moderate impact:0.333333333333", "Significant impact:0.333333333333"], "stackedFx-Team": [4.5, 49.5, 45.5, 29.0, 13.0], "midFx-Team": [2.5, 21.5, 10.5, 8.0, 5.0], "Fx-Team": [5, 43, 21, 16, 10]}, "id": "db643a7e-b50b-4937-9fb0-d05a83980787"}, "type": "ColumnDataSource", "id": "db643a7e-b50b-4937-9fb0-d05a83980787"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "37e35a00-2833-4f9d-9d49-03afc5c1b318"}, "tags": [], "doc": null, "selection_glyph": null, "id": "d7d006b7-7ea8-4ad0-9b96-8e8fd57392ab", "glyph": {"type": "Rect", "id": "6c4a3fd8-4a64-4a90-b5d2-5a106ad9c730"}}, "type": "GlyphRenderer", "id": "d7d006b7-7ea8-4ad0-9b96-8e8fd57392ab"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "cb147da0-1422-425b-a102-b7e22fddc842"}, "orientation": "top_left", "tags": [], "doc": null, "id": "749d59fd-f456-407e-8d69-b5a678c2c73b", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "e7c0962d-6f59-47c7-91a3-daad268f3afa"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "55ba0371-5429-4799-9b79-604e45bf66e8"}]]]}, "type": "Legend", "id": "749d59fd-f456-407e-8d69-b5a678c2c73b"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "7dcebdb6-615b-4277-82d4-d72c573011a1"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "b5a25993-c266-4103-8951-1f35c94da90b"}, "ticker": {"type": "BasicTicker", "id": "dacfeebe-7f64-42d2-a9c7-ba9b77f0872b"}, "id": "490ea9dc-de5a-48b2-b8f2-986513beb14b"}, "type": "LinearAxis", "id": "490ea9dc-de5a-48b2-b8f2-986513beb14b"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "6d3456b4-4bd0-47b6-8b3c-7cfa6e72141d"}, "orientation": "top_left", "tags": [], "doc": null, "id": "f7173e38-b38b-4215-8a76-168e307079c6", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "ba7ead4e-6f24-4429-9edd-d704c03c8ebb"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "c13c0e48-fd8f-4c18-a336-a6ad157ff09e"}]]]}, "type": "Legend", "id": "f7173e38-b38b-4215-8a76-168e307079c6"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "5469849f-877c-4ea4-81ec-eec6402d4391"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "e0b5760b-c83a-46dd-99d9-6cbcdd523c2c"}, "id": "18e3c02e-4cc0-4505-a5e6-d1bf12d56285"}, "type": "Grid", "id": "18e3c02e-4cc0-4505-a5e6-d1bf12d56285"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fb35fd90-f4e1-4990-9a8e-8a7fe92f8c1d"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "1387e135-ef43-4d7d-9470-1ebad54f26b0"}, "id": "a26e06bd-ed4d-48c3-a229-5b52a10a6229"}, "type": "Grid", "id": "a26e06bd-ed4d-48c3-a229-5b52a10a6229"}, {"attributes": {"doc": null, "id": "d12fb743-d676-450a-890a-bf5f4071e1e9", "tags": []}, "type": "BasicTickFormatter", "id": "d12fb743-d676-450a-890a-bf5f4071e1e9"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "6f29235a-6fc2-44b0-b165-09f7ab73dbc5"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "079f31ea-a476-4000-b49d-9f83fce9668b"}, "ticker": {"type": "BasicTicker", "id": "754fea8a-00e8-4bdc-8076-8ec7fefc7dc0"}, "id": "8b1cc7fa-fe32-4690-91bd-b513cc566ffb"}, "type": "LinearAxis", "id": "8b1cc7fa-fe32-4690-91bd-b513cc566ffb"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "add6fa57-a92a-45e7-b63a-7e9ee8f8821f"}, "orientation": "top_left", "tags": [], "doc": null, "id": "97790dc3-8b9b-4728-ba39-bfca7e54a9c9", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "885c7856-7d74-4922-93d5-0906b160ee56"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "688ad58b-c747-41a9-8d58-23cd30ab40b1"}]]]}, "type": "Legend", "id": "97790dc3-8b9b-4728-ba39-bfca7e54a9c9"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "dea316be-2b82-47a0-befb-67fefea884a3"}, "type": "Rect", "id": "dea316be-2b82-47a0-befb-67fefea884a3"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "5bec26ff-4549-4571-a70e-8383558217e9"}, "tags": [], "doc": null, "selection_glyph": null, "id": "cf8016fe-5f42-4bcd-bb6a-4c0942ce478f", "glyph": {"type": "Rect", "id": "6b426b55-aa5c-4c49-b070-df9877513b4a"}}, "type": "GlyphRenderer", "id": "cf8016fe-5f42-4bcd-bb6a-4c0942ce478f"}, {"attributes": {"doc": null, "id": "6f3e88cc-a131-4704-ad48-b280265cbb01", "tags": []}, "type": "CategoricalTickFormatter", "id": "6f3e88cc-a131-4704-ad48-b280265cbb01"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [5.0, 13.0, 13.5, 11.5, 6.0], "Platform": [10, 26, 27, 23, 12], "catFx-Team": ["N/A:0.666666666667", "1 = least impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "midPlatform": [5.0, 13.0, 13.5, 11.5, 6.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [10.0, 42.0, 45.0, 58.0, 39.0], "catPlatform": ["N/A:0.333333333333", "1 = least impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [10.0, 34.0, 36.0, 40.5, 25.5], "midFx-Team": [0.0, 8.0, 9.0, 17.5, 13.5], "Fx-Team": [0, 16, 18, 35, 27]}, "id": "24f666f3-f470-40ff-8bb8-85b9637f665e"}, "type": "ColumnDataSource", "id": "24f666f3-f470-40ff-8bb8-85b9637f665e"}, {"attributes": {"doc": null, "id": "d96316d9-fcff-49e5-99d0-b13fda07dfea", "tags": []}, "type": "CategoricalTicker", "id": "d96316d9-fcff-49e5-99d0-b13fda07dfea"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "d127fde1-9ed2-480c-9583-df4a360c9a51"}, "tags": [], "doc": null, "selection_glyph": null, "id": "f3a88762-bbbf-4ae5-9e7b-f469e2efc29e", "glyph": {"type": "Rect", "id": "8d9963c6-9c28-48e5-a9b2-2f925d0e896c"}}, "type": "GlyphRenderer", "id": "f3a88762-bbbf-4ae5-9e7b-f469e2efc29e"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "17678ba0-eb81-4ba7-af55-75248e32a5dd"}, "tags": [], "doc": null, "selection_glyph": null, "id": "98f0356a-43e5-453e-9e12-0e230a19b94b", "glyph": {"type": "Rect", "id": "d0694ba6-91e4-4b39-918d-c57a412144f4"}}, "type": "GlyphRenderer", "id": "98f0356a-43e5-453e-9e12-0e230a19b94b"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "31a2cbb8-ff78-48bc-b678-5eb557b71670"}, "orientation": "top_left", "tags": [], "doc": null, "id": "c6ab8747-9eb3-4966-a525-667d322b2724", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "93c14cb8-e739-4f7a-a875-9b6d4c4bd9b3"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "47d42b5f-2d0b-4fc4-b386-c297f59c3b9a"}]]]}, "type": "Legend", "id": "c6ab8747-9eb3-4966-a525-667d322b2724"}, {"attributes": {"doc": null, "id": "2a10c784-db85-418d-a15b-ca704db98b30", "tags": []}, "type": "CategoricalTickFormatter", "id": "2a10c784-db85-418d-a15b-ca704db98b30"}, {"subtype": "Chart", "type": "Plot", "id": "a0686fbe-3de2-41ce-92a9-c9e525d59586", "attributes": {"x_range": {"type": "FactorRange", "id": "a875cb8b-23bb-4e40-b808-2b3973772db8"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "2f67f3c2-c51f-4278-8fb6-80107fc703fd"}, "title": "How would you like to see Mozilla invest in improvements to the Firefox build system?", "renderers": [{"type": "CategoricalAxis", "id": "cb0934a2-b02c-46af-bb0a-98b9c58a9ca7"}, {"type": "LinearAxis", "id": "e386e167-934d-4903-83e2-65293de12f52"}, {"type": "Grid", "id": "74ed4760-1db1-4217-a6be-66f5c76b7edc"}, {"type": "GlyphRenderer", "id": "a13e2ac6-53b6-4d06-9e48-8a6a6371f5d6"}, {"type": "GlyphRenderer", "id": "e25dc41f-6174-44f0-9b1c-0500c8e1db86"}, {"type": "Legend", "id": "aff83227-2ea3-489b-919f-ff1887953e34"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "bbcd448f-4b60-4e37-9d9c-86185867f7ae"}, "plot_height": 560, "doc": null, "id": "a0686fbe-3de2-41ce-92a9-c9e525d59586", "tools": [], "below": [{"type": "CategoricalAxis", "id": "cb0934a2-b02c-46af-bb0a-98b9c58a9ca7"}], "left": [{"type": "LinearAxis", "id": "e386e167-934d-4903-83e2-65293de12f52"}]}}, {"attributes": {"doc": null, "id": "a095c919-829b-4014-a3ed-b678957a549d", "tags": []}, "type": "CategoricalTicker", "id": "a095c919-829b-4014-a3ed-b678957a549d"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "8fce0fdc-64e1-4704-bd67-bf4eed996eec"}, "type": "Rect", "id": "8fce0fdc-64e1-4704-bd67-bf4eed996eec"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "74399b10-6fa1-4d56-bc18-49440d32c07b"}, "tags": [], "doc": null, "selection_glyph": null, "id": "078cf947-6f3b-4519-a3aa-7048c1955b76", "glyph": {"type": "Rect", "id": "06e9ccc3-479a-417b-992d-0d36977e1895"}}, "type": "GlyphRenderer", "id": "078cf947-6f3b-4519-a3aa-7048c1955b76"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "8a3be582-9b74-4101-b7ec-b4cd03637178"}, "type": "BasicTicker", "id": "8a3be582-9b74-4101-b7ec-b4cd03637178"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fd4d596e-e6bc-4330-95c9-3b470d2a5560"}, "orientation": "top_left", "tags": [], "doc": null, "id": "804d4cf3-8288-483f-8c67-2f58e2275ad4", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "8030df50-7264-44b5-9a12-81bd9e009cc6"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "b04678e8-c72f-4522-81eb-b3679059a088"}]]]}, "type": "Legend", "id": "804d4cf3-8288-483f-8c67-2f58e2275ad4"}, {"attributes": {"doc": null, "id": "7903d1a5-ded7-49be-9d81-b5340509e493", "tags": []}, "type": "CategoricalTickFormatter", "id": "7903d1a5-ded7-49be-9d81-b5340509e493"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "056b0be0-3c89-4cb8-b23e-6f5f17ec3629"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "b91489c1-be9c-48c4-8c72-aea1e656bf0b"}, "ticker": {"type": "CategoricalTicker", "id": "d3e1af49-d962-4d98-b9c7-d370769d897a"}, "id": "cb1ee788-ecae-4f34-8b2b-f686449f928a"}, "type": "CategoricalAxis", "id": "cb1ee788-ecae-4f34-8b2b-f686449f928a"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "c290dd1e-1cff-41ac-969c-cbc10bc625fa"}, "type": "Rect", "id": "c290dd1e-1cff-41ac-969c-cbc10bc625fa"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "1c7336b6-7ded-4725-8fee-1d31fe5f6d78"}, "type": "ToolEvents", "id": "1c7336b6-7ded-4725-8fee-1d31fe5f6d78"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "db73f777-88ee-42eb-b726-a708cc334ac9"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "12455e3b-ac4d-46e8-9ce1-22a238d5c740"}, "ticker": {"type": "CategoricalTicker", "id": "5cd2b259-13ea-4636-8fed-6202fe058798"}, "id": "85ec81f5-682e-4053-9a62-e484c5aa8fc7"}, "type": "CategoricalAxis", "id": "85ec81f5-682e-4053-9a62-e484c5aa8fc7"}, {"attributes": {"doc": null, "id": "b08be3d8-0b88-4387-8807-829648b40793", "tags": []}, "type": "CategoricalTickFormatter", "id": "b08be3d8-0b88-4387-8807-829648b40793"}, {"attributes": {"doc": null, "id": "ccc5e975-2919-459b-8ee0-6f3e48e80705", "tags": []}, "type": "CategoricalTicker", "id": "ccc5e975-2919-459b-8ee0-6f3e48e80705"}, {"attributes": {"doc": null, "id": "13b0f11e-d467-4e8e-81ce-fbc1b48bbf89", "tags": []}, "type": "CategoricalTickFormatter", "id": "13b0f11e-d467-4e8e-81ce-fbc1b48bbf89"}, {"attributes": {"doc": null, "id": "d28b919c-e83c-4a89-a63f-f8f8c25730f5", "tags": []}, "type": "CategoricalTickFormatter", "id": "d28b919c-e83c-4a89-a63f-f8f8c25730f5"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "ee0b9af4-7e7d-4d04-b0e7-e9063cbd93b3"}, "tags": [], "doc": null, "selection_glyph": null, "id": "688ad58b-c747-41a9-8d58-23cd30ab40b1", "glyph": {"type": "Rect", "id": "181f2ab6-0b37-4fcd-a366-054a17addea7"}}, "type": "GlyphRenderer", "id": "688ad58b-c747-41a9-8d58-23cd30ab40b1"}, {"attributes": {"doc": null, "id": "93314f54-e021-4c1d-ad01-a1a97f2da3ca", "tags": []}, "type": "BasicTickFormatter", "id": "93314f54-e021-4c1d-ad01-a1a97f2da3ca"}, {"attributes": {"end": 27.500000000000004, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "ab9a7b46-146c-4573-b939-ac422b3eb7fd"}, "type": "Range1d", "id": "ab9a7b46-146c-4573-b939-ac422b3eb7fd"}, {"subtype": "Chart", "type": "Plot", "id": "fac52d34-7da0-498e-9368-548b85e2919b", "attributes": {"x_range": {"type": "FactorRange", "id": "374e0dc6-8a74-41aa-a855-db115754c216"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "53b6a11b-e2c2-458f-8dd9-c84b4593c27f"}, "title": "How do you prefer to debug test failures?", "renderers": [{"type": "CategoricalAxis", "id": "6db7c465-925b-405c-ae0e-69eae8d4d138"}, {"type": "LinearAxis", "id": "16a67aa8-b749-4ee2-b7ed-5217f3894409"}, {"type": "Grid", "id": "2149ee67-44c4-46c8-bf46-3af465f4b2cd"}, {"type": "GlyphRenderer", "id": "85fadf39-9f89-4d35-9f34-cfa5575541af"}, {"type": "GlyphRenderer", "id": "aea2b6c0-8d3a-4691-abd9-dda951718b97"}, {"type": "Legend", "id": "a554e729-8c8b-44b2-8521-bb4ccf92c8a6"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "1d37b100-1ed0-4f78-b2b5-3cb1ce55aca6"}, "plot_height": 560, "doc": null, "id": "fac52d34-7da0-498e-9368-548b85e2919b", "tools": [], "below": [{"type": "CategoricalAxis", "id": "6db7c465-925b-405c-ae0e-69eae8d4d138"}], "left": [{"type": "LinearAxis", "id": "16a67aa8-b749-4ee2-b7ed-5217f3894409"}]}}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "90dc4a19-1b1d-445c-a25b-c1a70804f894"}, "type": "Rect", "id": "90dc4a19-1b1d-445c-a25b-c1a70804f894"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "Git", "Mercurial"], "doc": null, "tags": [], "id": "89f3e248-f2e9-4b76-b05f-5261a0f50275"}, "type": "FactorRange", "id": "89f3e248-f2e9-4b76-b05f-5261a0f50275"}, {"attributes": {"doc": null, "id": "194b2e02-60e1-4e66-b423-12e4931af471", "tags": []}, "type": "BasicTickFormatter", "id": "194b2e02-60e1-4e66-b423-12e4931af471"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "e601f825-86a2-4370-ae3c-e4154550503c"}, "type": "Rect", "id": "e601f825-86a2-4370-ae3c-e4154550503c"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [3.5, 9.5, 2.0, 6.5, 12.0, 30.0, 5.0], "Platform": [7, 19, 4, 13, 24, 60, 10], "catFx-Team": ["All Other Responses:0.666666666667", "Bookmarks:0.666666666667", "Branches:0.666666666667", "Evolve/changeset evolution:0.666666666667", "Import/export from/to Git:0.666666666667", "MQ:0.666666666667", "Nameless heads:0.666666666667"], "cat": ["All Other Responses", "Bookmarks", "Branches", "Evolve/changeset evolution", "Import/export from/to Git", "MQ", "Nameless heads"], "midPlatform": [3.5, 9.5, 2.0, 6.5, 12.0, 30.0, 5.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [15.0, 29.0, 12.0, 23.0, 53.0, 122.0, 26.0], "catPlatform": ["All Other Responses:0.333333333333", "Bookmarks:0.333333333333", "Branches:0.333333333333", "Evolve/changeset evolution:0.333333333333", "Import/export from/to Git:0.333333333333", "MQ:0.333333333333", "Nameless heads:0.333333333333"], "stackedFx-Team": [11.0, 24.0, 8.0, 18.0, 38.5, 91.0, 18.0], "midFx-Team": [4.0, 5.0, 4.0, 5.0, 14.5, 31.0, 8.0], "Fx-Team": [8, 10, 8, 10, 29, 62, 16]}, "id": "acb6eec7-3b9e-45f3-93d1-40d887bd6d3a"}, "type": "ColumnDataSource", "id": "acb6eec7-3b9e-45f3-93d1-40d887bd6d3a"}, {"attributes": {"end": 40.7, "callback": null, "doc": null, "tags": [], "start": 0, "id": "c2e41fa8-0748-4b5e-b276-abaaf774ad6e"}, "type": "Range1d", "id": "c2e41fa8-0748-4b5e-b276-abaaf774ad6e"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "2eb84e92-2eae-4d8e-9ec5-3cc9d1103709"}, "type": "ToolEvents", "id": "2eb84e92-2eae-4d8e-9ec5-3cc9d1103709"}, {"attributes": {"doc": null, "id": "7ff1aeea-9d8d-4a95-9447-9f790aa9f3e7", "tags": []}, "type": "BasicTickFormatter", "id": "7ff1aeea-9d8d-4a95-9447-9f790aa9f3e7"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "069d8f48-8db1-4213-83e6-a0762d73c8b2"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "326d565f-3bb3-4767-8f45-240b05f9fa26"}, "ticker": {"type": "CategoricalTicker", "id": "db5979f6-cd4d-4dd5-8782-7f644f16ea15"}, "id": "29815bd8-dba6-4b8d-abb1-e3603d61ad0b"}, "type": "CategoricalAxis", "id": "29815bd8-dba6-4b8d-abb1-e3603d61ad0b"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2], "stackedPlatform": [5.0, 6.5, 15.0, 22.5], "Platform": [10, 13, 30, 45], "catFx-Team": ["All Other Responses:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["All Other Responses", "2", "3", "4 = most impact"], "midPlatform": [5.0, 6.5, 15.0, 22.5], "width": [0.8, 0.8, 0.8, 0.8], "zero": [15.0, 23.0, 59.0, 99.0], "catPlatform": ["All Other Responses:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [12.5, 18.0, 44.5, 72.0], "midFx-Team": [2.5, 5.0, 14.5, 27.0], "Fx-Team": [5, 10, 29, 54]}, "id": "b3957176-ca40-47fe-a90f-cfb668cc9a38"}, "type": "ColumnDataSource", "id": "b3957176-ca40-47fe-a90f-cfb668cc9a38"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "dfaf0425-af75-440f-9ce7-5ce53fcc97cc"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "9c1867a2-b49a-4f52-9249-28c3bd42eafd"}, "id": "8df304e7-aea8-4cb9-8dc2-ad57d05e6d21"}, "type": "Grid", "id": "8df304e7-aea8-4cb9-8dc2-ad57d05e6d21"}, {"attributes": {"doc": null, "id": "9b5ebd67-7791-40c7-b434-1f4f7f25863a", "tags": []}, "type": "CategoricalTickFormatter", "id": "9b5ebd67-7791-40c7-b434-1f4f7f25863a"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "516f2cc0-be48-4375-af7f-5d23af8066eb"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "5462b246-836a-4689-92cf-7dec49c19c17"}, "id": "f3c7f2a3-76ef-4977-ac6a-cc5792a60afe"}, "type": "Grid", "id": "f3c7f2a3-76ef-4977-ac6a-cc5792a60afe"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "c038c311-ef77-4a02-aed0-93d289e0589b"}, "type": "BasicTicker", "id": "c038c311-ef77-4a02-aed0-93d289e0589b"}, {"attributes": {"doc": null, "id": "999edbf9-bce7-4181-8138-a524ead09ec7", "tags": []}, "type": "CategoricalTickFormatter", "id": "999edbf9-bce7-4181-8138-a524ead09ec7"}, {"attributes": {"doc": null, "id": "b93d67e5-f52a-439c-80c5-83d6d8deae5c", "tags": []}, "type": "BasicTickFormatter", "id": "b93d67e5-f52a-439c-80c5-83d6d8deae5c"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "8a34b013-1181-4e36-b614-fc8ed4ea0b47"}, "type": "Rect", "id": "8a34b013-1181-4e36-b614-fc8ed4ea0b47"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "2b245d2f-4e81-4b25-b20c-6d5860be9e50"}, "type": "ToolEvents", "id": "2b245d2f-4e81-4b25-b20c-6d5860be9e50"}, {"attributes": {"doc": null, "id": "f464aea0-9568-4c05-8ea7-4d62ceeddd3f", "tags": []}, "type": "CategoricalTickFormatter", "id": "f464aea0-9568-4c05-8ea7-4d62ceeddd3f"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "11949ae0-856e-45f2-874d-c82c2cc92ac0"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "4f5c2845-1e9c-4bdc-99d0-62e465f9f42d"}, "ticker": {"type": "CategoricalTicker", "id": "b0af54c3-8e37-4f08-9526-bb57626e582b"}, "id": "781125d6-0c9c-4347-82bb-3cf37a4fff5f"}, "type": "CategoricalAxis", "id": "781125d6-0c9c-4347-82bb-3cf37a4fff5f"}, {"attributes": {"doc": null, "id": "00553207-b19e-40ae-994a-81f47d3e4a9b", "tags": []}, "type": "BasicTickFormatter", "id": "00553207-b19e-40ae-994a-81f47d3e4a9b"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "dfaf0425-af75-440f-9ce7-5ce53fcc97cc"}, "orientation": "top_left", "tags": [], "doc": null, "id": "6d83089c-8599-4567-9927-24813351fb3e", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "060a50a9-f521-4123-bf94-81aaf075111a"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "495ecdc6-29cb-40fa-b9f4-546f549bca2d"}]]]}, "type": "Legend", "id": "6d83089c-8599-4567-9927-24813351fb3e"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "802a6cfb-4f78-4f9f-9aaa-3f3c209c2bcf"}, "tags": [], "doc": null, "selection_glyph": null, "id": "eed8c028-2782-4918-a330-f67ecc3175ab", "glyph": {"type": "Rect", "id": "5fdfb570-1e90-4436-a17b-658c65a11cb3"}}, "type": "GlyphRenderer", "id": "eed8c028-2782-4918-a330-f67ecc3175ab"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "7fa3a5ae-fe29-4ec2-9236-b161e87b0ad7"}, "type": "Rect", "id": "7fa3a5ae-fe29-4ec2-9236-b161e87b0ad7"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "0a5b11ba-b147-4933-a11e-ed712a008782"}, "orientation": "top_left", "tags": [], "doc": null, "id": "5929649c-ec08-4c67-a51c-1cf5532167cd", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "4be5bedc-2ef1-4eac-bc52-d085d592c8b9"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "5a5f6cd2-f1f5-4a01-860a-1cd15c1e2c09"}]]]}, "type": "Legend", "id": "5929649c-ec08-4c67-a51c-1cf5532167cd"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "5281a747-c534-4920-94b3-f165be4a4aff"}, "tags": [], "doc": null, "selection_glyph": null, "id": "01ede30c-5ebd-4f3d-a849-ffa98f573c50", "glyph": {"type": "Rect", "id": "ab4c75c9-6bca-4e60-baeb-eb2192e5dfbb"}}, "type": "GlyphRenderer", "id": "01ede30c-5ebd-4f3d-a849-ffa98f573c50"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "a6e276be-e549-4746-a906-c2233479163c"}, "tags": [], "doc": null, "selection_glyph": null, "id": "300ff262-5f0f-4b8f-b5c2-a9058a29dbfe", "glyph": {"type": "Rect", "id": "c6a0ab86-054a-4745-bacd-08eee74e5c86"}}, "type": "GlyphRenderer", "id": "300ff262-5f0f-4b8f-b5c2-a9058a29dbfe"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "cf852d61-c0cb-4b4e-8e9a-37d79be4d2ef"}, "tags": [], "doc": null, "selection_glyph": null, "id": "577c1771-8643-4f9a-8421-87aab678cc44", "glyph": {"type": "Rect", "id": "c2abb9fe-642d-483e-8741-49953a2f7df4"}}, "type": "GlyphRenderer", "id": "577c1771-8643-4f9a-8421-87aab678cc44"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "dae24baa-0361-4243-8c36-796f910c502a"}, "type": "Rect", "id": "dae24baa-0361-4243-8c36-796f910c502a"}, {"attributes": {"doc": null, "id": "6dda476e-e628-4e66-89be-53d66cf101e8", "tags": []}, "type": "CategoricalTicker", "id": "6dda476e-e628-4e66-89be-53d66cf101e8"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "64b0da1f-57d1-40f5-af8c-fd8591794d87"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "78c71b32-572e-4070-b1e3-7cd74e6fa531"}, "ticker": {"type": "CategoricalTicker", "id": "7ac18fee-7743-4ad2-8a3a-ccdb211d025c"}, "id": "82f91704-4424-4307-949f-416ba85686ed"}, "type": "CategoricalAxis", "id": "82f91704-4424-4307-949f-416ba85686ed"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "6df7b52e-dc25-4c24-a89f-5ce66d972940"}, "type": "Rect", "id": "6df7b52e-dc25-4c24-a89f-5ce66d972940"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "c9aba8b6-2afe-4a4b-9485-72b7019c79b5"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "2cf94f92-ea4f-4e6d-8391-ca32fdfb93e7"}, "ticker": {"type": "BasicTicker", "id": "9511a7c1-3453-4ad0-b437-273158ae7d8b"}, "id": "90804614-f3ab-4cd2-8ca0-3e8d54d7432c"}, "type": "LinearAxis", "id": "90804614-f3ab-4cd2-8ca0-3e8d54d7432c"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "c9db0a7b-a481-458f-b217-d79578eb80ea"}, "type": "BasicTicker", "id": "c9db0a7b-a481-458f-b217-d79578eb80ea"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "5e3ed8a1-a0e8-4774-880e-8b769e8a18f0"}, "orientation": "top_left", "tags": [], "doc": null, "id": "b59601ee-2665-4970-9eda-be6be7aec135", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "433022f3-022f-4e74-b9be-a7c3845fdf1e"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "f50d2a04-0bf0-4fbc-a587-305a776541fd"}]]]}, "type": "Legend", "id": "b59601ee-2665-4970-9eda-be6be7aec135"}, {"subtype": "Chart", "type": "Plot", "id": "31a2cbb8-ff78-48bc-b678-5eb557b71670", "attributes": {"x_range": {"type": "FactorRange", "id": "54ea3b1a-5b84-4207-9408-a6dd20eede29"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "afa7fdac-4e21-4512-bf9d-a98617b97708"}, "title": "How satisfied are you with the following items at Mozilla? [System bootstrapping (mach bootstrap)]", "renderers": [{"type": "CategoricalAxis", "id": "205bf182-3638-4e6f-8071-e91ada784e3a"}, {"type": "LinearAxis", "id": "261b23c6-24d4-47c3-bb7f-dc15f5cf49db"}, {"type": "Grid", "id": "4bce7c8a-3445-4110-a653-639f36c1e0c3"}, {"type": "GlyphRenderer", "id": "93c14cb8-e739-4f7a-a875-9b6d4c4bd9b3"}, {"type": "GlyphRenderer", "id": "47d42b5f-2d0b-4fc4-b386-c297f59c3b9a"}, {"type": "Legend", "id": "c6ab8747-9eb3-4966-a525-667d322b2724"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "3ac278db-f5f1-4cd1-8cbc-611f1667030a"}, "plot_height": 560, "doc": null, "id": "31a2cbb8-ff78-48bc-b678-5eb557b71670", "tools": [], "below": [{"type": "CategoricalAxis", "id": "205bf182-3638-4e6f-8071-e91ada784e3a"}], "left": [{"type": "LinearAxis", "id": "261b23c6-24d4-47c3-bb7f-dc15f5cf49db"}]}}, {"subtype": "Chart", "type": "Plot", "id": "ca660824-da9b-42c8-80f1-b629a907c373", "attributes": {"x_range": {"type": "FactorRange", "id": "bc4d8313-483e-4fc7-87a2-68586bbb4e7b"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "1bf5b07d-e48c-48df-a52d-82961f3db098"}, "title": "What would improve your Treeherder experience?", "renderers": [{"type": "CategoricalAxis", "id": "1066d4ee-1ede-4115-99a1-1e26e01f6200"}, {"type": "LinearAxis", "id": "deb5d5c0-381f-4938-9be7-4d98cf0e83b7"}, {"type": "Grid", "id": "1dcf5a86-be7f-4679-b519-65afa0b6e116"}, {"type": "GlyphRenderer", "id": "a1a0c64b-6350-40a4-a7d7-a729e7e4a3f1"}, {"type": "GlyphRenderer", "id": "5fc77cc8-6fa1-48ff-989a-51748cf787a2"}, {"type": "Legend", "id": "25d484a4-3613-4729-89c6-aa874b048996"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "4f0f5e36-3a7b-49ed-8ae4-e1a48a1b1177"}, "plot_height": 560, "doc": null, "id": "ca660824-da9b-42c8-80f1-b629a907c373", "tools": [], "below": [{"type": "CategoricalAxis", "id": "1066d4ee-1ede-4115-99a1-1e26e01f6200"}], "left": [{"type": "LinearAxis", "id": "deb5d5c0-381f-4938-9be7-4d98cf0e83b7"}]}}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "7fcaf85e-dd3c-442f-9588-4d9107bc9892"}, "type": "ToolEvents", "id": "7fcaf85e-dd3c-442f-9588-4d9107bc9892"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [3.0, 9.5, 10.5, 15.5, 10.0], "Platform": [6, 19, 21, 31, 20], "catFx-Team": ["N/A:0.666666666667", "1 = little impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["N/A", "1 = little impact", "2", "3", "4 = most impact"], "midPlatform": [3.0, 9.5, 10.5, 15.5, 10.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [8.0, 24.0, 50.0, 63.0, 49.0], "catPlatform": ["N/A:0.333333333333", "1 = little impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [7.0, 21.5, 35.5, 47.0, 34.5], "midFx-Team": [1.0, 2.5, 14.5, 16.0, 14.5], "Fx-Team": [2, 5, 29, 32, 29]}, "id": "29f53a10-4888-4246-8883-e54922f0fd48"}, "type": "ColumnDataSource", "id": "29f53a10-4888-4246-8883-e54922f0fd48"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "d03d4b37-32eb-483f-8e73-053978c018c8"}, "orientation": "top_left", "tags": [], "doc": null, "id": "870af318-9176-4105-80ce-1942853836f0", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "c7c1979f-a8a3-4f16-97ff-26c6d3309977"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "00b58b88-845b-4d28-8839-e03a9426c6a3"}]]]}, "type": "Legend", "id": "870af318-9176-4105-80ce-1942853836f0"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "add6fa57-a92a-45e7-b63a-7e9ee8f8821f"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "b64ebe09-d8f3-4084-9c79-f77af1158e85"}, "ticker": {"type": "BasicTicker", "id": "c7c1cd53-2728-4d17-acae-63611e7939c6"}, "id": "ecbc8184-b422-4257-894e-40cbf0ee990b"}, "type": "LinearAxis", "id": "ecbc8184-b422-4257-894e-40cbf0ee990b"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "8f8e690a-995c-4850-820b-8764422eb099"}, "tags": [], "doc": null, "selection_glyph": null, "id": "7066ccae-adb3-48ec-a610-b8044b517190", "glyph": {"type": "Rect", "id": "65a6a88b-e376-461f-9824-09f145ca2c40"}}, "type": "GlyphRenderer", "id": "7066ccae-adb3-48ec-a610-b8044b517190"}, {"subtype": "Chart", "type": "Plot", "id": "66f73d12-4c8e-4412-a61a-952be0b375fb", "attributes": {"x_range": {"type": "FactorRange", "id": "c14a20d3-0b0c-4507-bab9-1461fc47c196"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "f06728a2-0b50-4995-9d82-e6479f55dad2"}, "title": "Thinking of running automated tests, rank the following potential improvements in terms of their impact on your productivity. [Make it easier to reproduce try failures locally]", "renderers": [{"type": "CategoricalAxis", "id": "6585cbbd-763f-47c9-af03-a05356b70f48"}, {"type": "LinearAxis", "id": "b7461d66-5a34-468b-94f0-d0b9ac8a8699"}, {"type": "Grid", "id": "881e2b74-f8f2-450b-80dd-c73e890db3a1"}, {"type": "GlyphRenderer", "id": "1efc85bc-99b4-4e6b-a279-3ec839309fc8"}, {"type": "GlyphRenderer", "id": "4c551df0-02d8-4458-8669-1ad1d12590c0"}, {"type": "Legend", "id": "2e965a57-aafc-4fd3-b713-549125cdc3f2"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "a4750963-8d91-4ce6-a94c-7bfd9be4e998"}, "plot_height": 560, "doc": null, "id": "66f73d12-4c8e-4412-a61a-952be0b375fb", "tools": [], "below": [{"type": "CategoricalAxis", "id": "6585cbbd-763f-47c9-af03-a05356b70f48"}], "left": [{"type": "LinearAxis", "id": "b7461d66-5a34-468b-94f0-d0b9ac8a8699"}]}}, {"subtype": "Chart", "type": "Plot", "id": "490a807f-dfed-464f-bc7a-59571a1b4794", "attributes": {"x_range": {"type": "FactorRange", "id": "2504a724-46d5-4292-a2d0-d4d0b544107f"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "3d151d6f-914f-4822-a3ea-4b8e6fc6a686"}, "title": "How satisfied are you with the following aspects of MozReview? [Initial setup and configuration]", "renderers": [{"type": "CategoricalAxis", "id": "4080d443-bb8d-4116-9383-612efc1973db"}, {"type": "LinearAxis", "id": "ec6a42a8-9eb3-458b-a9bf-f1741938c012"}, {"type": "Grid", "id": "9e517faf-2945-4b87-8235-82dcf8a3cb8c"}, {"type": "GlyphRenderer", "id": "1a1e2f16-7052-41a5-93be-f9ebf39cadeb"}, {"type": "GlyphRenderer", "id": "a3899b43-abbd-482d-b27b-413ae8c5d172"}, {"type": "Legend", "id": "0f84c784-bcdf-4d50-bc0b-009a3557f529"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "ae634f06-c001-4557-b7c2-5e368a1a788e"}, "plot_height": 560, "doc": null, "id": "490a807f-dfed-464f-bc7a-59571a1b4794", "tools": [], "below": [{"type": "CategoricalAxis", "id": "4080d443-bb8d-4116-9383-612efc1973db"}], "left": [{"type": "LinearAxis", "id": "ec6a42a8-9eb3-458b-a9bf-f1741938c012"}]}}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [6.5, 10.0, 8.5, 12.0, 21.0, 9.5, 6.5, 21.0], "Platform": [13, 20, 17, 24, 42, 19, 13, 42], "catFx-Team": ["All Other Responses:0.666666666667", "I can't live without it:0.666666666667", "I love it:0.666666666667", "I tolerate using it, despite deficiencies:0.666666666667", "I use it regularly:0.666666666667", "I used it previously but have stopped:0.666666666667", "MQ is silly and should be avoided:0.666666666667", "Resolving conflicts is annoying:0.666666666667"], "cat": ["All Other Responses", "I can't live without it", "I love it", "I tolerate using it, despite deficiencies", "I use it regularly", "I used it previously but have stopped", "MQ is silly and should be avoided", "Resolving conflicts is annoying"], "midPlatform": [6.5, 10.0, 8.5, 12.0, 21.0, 9.5, 6.5, 21.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [29.0, 30.0, 30.0, 53.0, 79.0, 46.0, 15.0, 66.0], "catPlatform": ["All Other Responses:0.333333333333", "I can't live without it:0.333333333333", "I love it:0.333333333333", "I tolerate using it, despite deficiencies:0.333333333333", "I use it regularly:0.333333333333", "I used it previously but have stopped:0.333333333333", "MQ is silly and should be avoided:0.333333333333", "Resolving conflicts is annoying:0.333333333333"], "stackedFx-Team": [21.0, 25.0, 23.5, 38.5, 60.5, 32.5, 14.0, 54.0], "midFx-Team": [8.0, 5.0, 6.5, 14.5, 18.5, 13.5, 1.0, 12.0], "Fx-Team": [16, 10, 13, 29, 37, 27, 2, 24]}, "id": "42a530cb-6878-474f-a40e-8b2cae921660"}, "type": "ColumnDataSource", "id": "42a530cb-6878-474f-a40e-8b2cae921660"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "11949ae0-856e-45f2-874d-c82c2cc92ac0"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "83f11fa1-5179-41e0-b417-a29a9739ce58"}, "id": "3e359332-fbd1-4608-aebb-8d10556f563e"}, "type": "Grid", "id": "3e359332-fbd1-4608-aebb-8d10556f563e"}, {"attributes": {"end": 31.900000000000002, "callback": null, "doc": null, "tags": [], "start": 0, "id": "d010be91-99b5-4d92-9f49-38a5ce8f7e62"}, "type": "Range1d", "id": "d010be91-99b5-4d92-9f49-38a5ce8f7e62"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "6f6e8855-f997-4380-a757-69a438b5df3c"}, "type": "ToolEvents", "id": "6f6e8855-f997-4380-a757-69a438b5df3c"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "ccada610-25d1-4ecd-9fac-003c3bbdc8b6"}, "type": "Rect", "id": "ccada610-25d1-4ecd-9fac-003c3bbdc8b6"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "ef9ace33-d4b8-4f47-a384-53b9b2b4f5f6"}, "type": "BasicTicker", "id": "ef9ace33-d4b8-4f47-a384-53b9b2b4f5f6"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "4f0f5e36-3a7b-49ed-8ae4-e1a48a1b1177"}, "type": "ToolEvents", "id": "4f0f5e36-3a7b-49ed-8ae4-e1a48a1b1177"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [7.5, 6.5, 12.5, 5.5, 3.5, 1.0], "Platform": [15, 13, 25, 11, 7, 2], "catFx-Team": ["N/A:0.666666666667", "Not satisfied at all:0.666666666667", "Below average:0.666666666667", "Average:0.666666666667", "Above average:0.666666666667", "It's awesome!:0.666666666667"], "cat": ["N/A", "Not satisfied at all", "Below average", "Average", "Above average", "It's awesome!"], "midPlatform": [7.5, 6.5, 12.5, 5.5, 3.5, 1.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [17.0, 23.0, 43.0, 29.0, 17.0, 10.0], "catPlatform": ["N/A:0.333333333333", "Not satisfied at all:0.333333333333", "Below average:0.333333333333", "Average:0.333333333333", "Above average:0.333333333333", "It's awesome!:0.333333333333"], "stackedFx-Team": [16.0, 18.0, 34.0, 20.0, 12.0, 6.0], "midFx-Team": [1.0, 5.0, 9.0, 9.0, 5.0, 4.0], "Fx-Team": [2, 10, 18, 18, 10, 8]}, "id": "317892f8-6166-4bb6-9515-4494ba642ae9"}, "type": "ColumnDataSource", "id": "317892f8-6166-4bb6-9515-4494ba642ae9"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "1 = least impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "1c28b489-dd41-49e1-86d7-08e18a69fb6e"}, "type": "FactorRange", "id": "1c28b489-dd41-49e1-86d7-08e18a69fb6e"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "Less than 1 year", "Less than 2 years", "Less than 3 years", "Less than 5 years", "Less than 7 years", "Over 7 years"], "doc": null, "tags": [], "id": "78edc435-e00b-4123-9303-83b374bf1fd0"}, "type": "FactorRange", "id": "78edc435-e00b-4123-9303-83b374bf1fd0"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "916ef1e7-3d90-4048-81d0-9ec15f8ea660"}, "tags": [], "doc": null, "selection_glyph": null, "id": "323ed172-45f8-4506-95f3-310403f0e00b", "glyph": {"type": "Rect", "id": "cee556dd-1837-4e9f-a636-42172b2aab4f"}}, "type": "GlyphRenderer", "id": "323ed172-45f8-4506-95f3-310403f0e00b"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "cffd5b30-b161-496f-aca3-7efa97f83d1d"}, "type": "BasicTicker", "id": "cffd5b30-b161-496f-aca3-7efa97f83d1d"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "465ef067-3cba-4c89-b981-416c8ba66a4d"}, "type": "Rect", "id": "465ef067-3cba-4c89-b981-416c8ba66a4d"}, {"subtype": "Chart", "type": "Plot", "id": "d03d4b37-32eb-483f-8e73-053978c018c8", "attributes": {"x_range": {"type": "FactorRange", "id": "3edec1fe-dfc3-4108-89ca-babc7a5020d6"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "870399d7-ee09-4484-93db-b3ff90c3f315"}, "title": "Thinking of the patch review and landing process, please rank the following potential improvements in terms of their impact on your productivity. [Integrate code review into my editor or IDE so workflow is unified]", "renderers": [{"type": "CategoricalAxis", "id": "629058f1-cb00-4a40-97c9-d75b78f46b90"}, {"type": "LinearAxis", "id": "695fed1a-48b7-444d-afd3-46a4fddcf3a6"}, {"type": "Grid", "id": "87741b71-4734-4ef8-a6fe-2d5176db695b"}, {"type": "GlyphRenderer", "id": "c7c1979f-a8a3-4f16-97ff-26c6d3309977"}, {"type": "GlyphRenderer", "id": "00b58b88-845b-4d28-8839-e03a9426c6a3"}, {"type": "Legend", "id": "870af318-9176-4105-80ce-1942853836f0"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "18fcd9e9-b059-467c-8b59-6dbbd8c53a6f"}, "plot_height": 560, "doc": null, "id": "d03d4b37-32eb-483f-8e73-053978c018c8", "tools": [], "below": [{"type": "CategoricalAxis", "id": "629058f1-cb00-4a40-97c9-d75b78f46b90"}], "left": [{"type": "LinearAxis", "id": "695fed1a-48b7-444d-afd3-46a4fddcf3a6"}]}}, {"attributes": {"doc": null, "id": "e88a3c63-31e9-495c-9751-c7f522c12e30", "tags": []}, "type": "BasicTickFormatter", "id": "e88a3c63-31e9-495c-9751-c7f522c12e30"}, {"attributes": {"callback": null, "factors": ["N/A", "1 = little impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "ca039f6d-28d9-4289-988f-4ab62e011064"}, "type": "FactorRange", "id": "ca039f6d-28d9-4289-988f-4ab62e011064"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "18de529e-15a0-437b-8923-ab640b1b9b8f"}, "type": "BasicTicker", "id": "18de529e-15a0-437b-8923-ab640b1b9b8f"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ac80c5e0-3f83-454b-b4ed-ee002dcc3c50"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "c9db0a7b-a481-458f-b217-d79578eb80ea"}, "id": "cf533d73-3d4d-4f30-ba9a-a50cc9a193da"}, "type": "Grid", "id": "cf533d73-3d4d-4f30-ba9a-a50cc9a193da"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "3bfd1df1-ca7f-4f10-8a9a-14a7dc2c1a5b"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "0dc64be2-96e7-4632-ad63-f16d36c41b38"}, "ticker": {"type": "CategoricalTicker", "id": "4b85314f-54cc-4031-9763-b8c2ec6829de"}, "id": "6387639d-6024-491d-9976-8a0a59b2063b"}, "type": "CategoricalAxis", "id": "6387639d-6024-491d-9976-8a0a59b2063b"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "2899bd80-d924-42c5-b229-09be594184d5"}, "type": "Rect", "id": "2899bd80-d924-42c5-b229-09be594184d5"}, {"attributes": {"doc": null, "id": "90a132cb-b254-4a2a-a509-aa6057083624", "tags": []}, "type": "CategoricalTicker", "id": "90a132cb-b254-4a2a-a509-aa6057083624"}, {"attributes": {"end": 86.9, "callback": null, "doc": null, "tags": [], "start": 0, "id": "5e7d47ee-2af5-4525-bed4-302f50014313"}, "type": "Range1d", "id": "5e7d47ee-2af5-4525-bed4-302f50014313"}, {"attributes": {"end": 47.300000000000004, "callback": null, "doc": null, "tags": [], "start": 0, "id": "bb78faac-baba-4cba-b115-83d8ce3e1750"}, "type": "Range1d", "id": "bb78faac-baba-4cba-b115-83d8ce3e1750"}, {"attributes": {"end": 36.300000000000004, "callback": null, "doc": null, "tags": [], "start": 0, "id": "af800757-5d6d-4765-9bf2-2c850a27d596"}, "type": "Range1d", "id": "af800757-5d6d-4765-9bf2-2c850a27d596"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2], "stackedPlatform": [6.5, 29.0, 2.0], "Platform": [13, 58, 4], "catFx-Team": ["All Other Responses:0.666666666667", "N/A:0.666666666667", "It's awesome!:0.666666666667"], "cat": ["All Other Responses", "N/A", "It's awesome!"], "midPlatform": [6.5, 29.0, 2.0], "width": [0.8, 0.8, 0.8], "zero": [15.0, 117.0, 12.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A:0.333333333333", "It's awesome!:0.333333333333"], "stackedFx-Team": [14.0, 87.5, 8.0], "midFx-Team": [1.0, 29.5, 4.0], "Fx-Team": [2, 59, 8]}, "id": "dd3a6add-c019-4d5a-9de0-cfee79f48cf2"}, "type": "ColumnDataSource", "id": "dd3a6add-c019-4d5a-9de0-cfee79f48cf2"}, {"attributes": {"doc": null, "id": "76cec742-4005-4fc2-87b3-76121c1ebd91", "tags": []}, "type": "CategoricalTickFormatter", "id": "76cec742-4005-4fc2-87b3-76121c1ebd91"}, {"attributes": {"doc": null, "id": "015e8cdd-b799-47eb-8948-11a8631fade8", "tags": []}, "type": "BasicTickFormatter", "id": "015e8cdd-b799-47eb-8948-11a8631fade8"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "d0d308b0-25e7-44c6-a48c-2a7590f5993a"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "59d623a1-5900-4734-99ee-cdd76ee9d4b1"}, "ticker": {"type": "CategoricalTicker", "id": "c29f68b2-22e0-4869-ac6f-0acce6f2ff9e"}, "id": "a51592d9-da25-4d63-a2d8-8a7b6aaffef2"}, "type": "CategoricalAxis", "id": "a51592d9-da25-4d63-a2d8-8a7b6aaffef2"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "89992255-694f-4793-b06f-aa7d17d74843"}, "type": "BasicTicker", "id": "89992255-694f-4793-b06f-aa7d17d74843"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "64b0da1f-57d1-40f5-af8c-fd8591794d87"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "5d453f74-3abc-47b1-87f6-76be1bc5ed32"}, "id": "eea12ce9-76df-4d91-adb6-708b6a850d2e"}, "type": "Grid", "id": "eea12ce9-76df-4d91-adb6-708b6a850d2e"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "affd1640-a746-46f2-9d29-5ac4390e3075"}, "type": "Rect", "id": "affd1640-a746-46f2-9d29-5ac4390e3075"}, {"attributes": {"doc": null, "id": "a78491db-4034-4011-9096-eae7749ffcf3", "tags": []}, "type": "BasicTickFormatter", "id": "a78491db-4034-4011-9096-eae7749ffcf3"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "1ffa588b-2b23-4a03-a431-40c63fa7c4ae"}, "orientation": "top_left", "tags": [], "doc": null, "id": "1c148277-c6a4-4b46-b204-519a45eb6854", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "27b97026-aa7c-4f96-8f6d-9402966d6738"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "1d877b37-87bf-4b61-8111-6d6d5547864c"}]]]}, "type": "Legend", "id": "1c148277-c6a4-4b46-b204-519a45eb6854"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "483e5293-c3fb-445e-a36d-de33b00b2dc3"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "3c798c18-e8b3-4750-8c30-269b0c50f623"}, "ticker": {"type": "BasicTicker", "id": "24371dd4-bf38-4d07-9214-7520be6f2afa"}, "id": "c30b22c6-1193-4ba3-a36c-05035da40621"}, "type": "LinearAxis", "id": "c30b22c6-1193-4ba3-a36c-05035da40621"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "3ac4b7db-4dfa-475d-a120-b5261357c8d9"}, "tags": [], "doc": null, "selection_glyph": null, "id": "1efc85bc-99b4-4e6b-a279-3ec839309fc8", "glyph": {"type": "Rect", "id": "571bb8bf-e9ce-462c-9c6f-656ff9ab7159"}}, "type": "GlyphRenderer", "id": "1efc85bc-99b4-4e6b-a279-3ec839309fc8"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "069d8f48-8db1-4213-83e6-a0762d73c8b2"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "c7094733-3f19-4113-9ff2-9d995763906a"}, "id": "972d2778-9743-44db-99cd-86226ca2981e"}, "type": "Grid", "id": "972d2778-9743-44db-99cd-86226ca2981e"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "c0211ed4-da00-466c-ac3c-358831743026"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "1ba4cfb9-25c8-4cc7-a90b-a70e93b75563"}, "id": "8f90eecd-ede5-465d-9333-ad73d7d2c70d"}, "type": "Grid", "id": "8f90eecd-ede5-465d-9333-ad73d7d2c70d"}, {"attributes": {"callback": null, "factors": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "81194e1d-8294-457b-bac4-6020dcace603"}, "type": "FactorRange", "id": "81194e1d-8294-457b-bac4-6020dcace603"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "8d37317e-ec95-478c-9eb4-36688e87a471"}, "orientation": "top_left", "tags": [], "doc": null, "id": "1b70dd95-930a-4ad7-a516-5b71179d4957", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "1ca3a1e6-484d-4b6c-901e-2870fbc9af62"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "6eba8804-e5b5-4429-ab74-47bccb390127"}]]]}, "type": "Legend", "id": "1b70dd95-930a-4ad7-a516-5b71179d4957"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "ad5d32ee-5255-4f24-8349-a00dad7d3cb1"}, "tags": [], "doc": null, "selection_glyph": null, "id": "f4455831-b6a8-44ba-b159-b3d311943730", "glyph": {"type": "Rect", "id": "7f57e0d1-d687-453e-b09b-f69b3b177110"}}, "type": "GlyphRenderer", "id": "f4455831-b6a8-44ba-b159-b3d311943730"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "06e9ccc3-479a-417b-992d-0d36977e1895"}, "type": "Rect", "id": "06e9ccc3-479a-417b-992d-0d36977e1895"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "c8654c60-e799-4603-aeaa-c7675d109014"}, "tags": [], "doc": null, "selection_glyph": null, "id": "67e63629-51c4-4e7b-981b-55e60b745911", "glyph": {"type": "Rect", "id": "467d4098-ab2b-45e7-8e31-48dc61e440a0"}}, "type": "GlyphRenderer", "id": "67e63629-51c4-4e7b-981b-55e60b745911"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "No impact / Not applicable", "A little impact", "Significant impact", "Tons of impact / Implement this ASAP"], "doc": null, "tags": [], "id": "8930e188-7837-41e9-8c26-80fde6d39157"}, "type": "FactorRange", "id": "8930e188-7837-41e9-8c26-80fde6d39157"}, {"attributes": {"doc": null, "id": "573a649b-fbb4-4595-98a6-aa0522247984", "tags": []}, "type": "BasicTickFormatter", "id": "573a649b-fbb4-4595-98a6-aa0522247984"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "a01ea7ca-3d46-4257-9902-9b6a4a26dc6b"}, "type": "Rect", "id": "a01ea7ca-3d46-4257-9902-9b6a4a26dc6b"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "211b7754-cfad-42d7-a3d3-7695ef9b9713"}, "orientation": "top_left", "tags": [], "doc": null, "id": "609cb685-9355-427b-b814-f27420486a46", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "a1929c93-a96d-4f32-9334-81a3c283c992"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "c95a385b-ad7f-4818-a531-1b59530b31db"}]]]}, "type": "Legend", "id": "609cb685-9355-427b-b814-f27420486a46"}, {"attributes": {"doc": null, "id": "0e6c0ab6-d2bf-47fd-95ce-0f8fa5f6b2e4", "tags": []}, "type": "CategoricalTicker", "id": "0e6c0ab6-d2bf-47fd-95ce-0f8fa5f6b2e4"}, {"attributes": {"doc": null, "id": "e15f5589-bde9-4ee0-beb2-9bbb83c220c7", "tags": []}, "type": "CategoricalTickFormatter", "id": "e15f5589-bde9-4ee0-beb2-9bbb83c220c7"}, {"attributes": {"doc": null, "id": "6ca28ab8-8f54-4285-a6cf-ef5cd517b91f", "tags": []}, "type": "BasicTickFormatter", "id": "6ca28ab8-8f54-4285-a6cf-ef5cd517b91f"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "5ff56d4d-7ada-4a25-85c4-64a4cbe6ec1b"}, "tags": [], "doc": null, "selection_glyph": null, "id": "24cbf4a1-a403-4dbb-bcc6-e754fd606cbc", "glyph": {"type": "Rect", "id": "536825a5-9b5c-4094-ad89-c71deefc67cc"}}, "type": "GlyphRenderer", "id": "24cbf4a1-a403-4dbb-bcc6-e754fd606cbc"}, {"attributes": {"doc": null, "id": "b06dbffb-a8e9-4bd2-a016-85b230ad8b5d", "tags": []}, "type": "CategoricalTickFormatter", "id": "b06dbffb-a8e9-4bd2-a016-85b230ad8b5d"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "ff3ec4bf-41b8-41d2-87d7-0655921ecfc1"}, "type": "Rect", "id": "ff3ec4bf-41b8-41d2-87d7-0655921ecfc1"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "563861ed-4b30-4bb1-ad40-24439fe897a8"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "a9b1a95f-601b-44cd-9a7e-0fe14d1ed422"}, "id": "6b995d9b-e9d2-4ae7-87ef-b09db15ffc27"}, "type": "Grid", "id": "6b995d9b-e9d2-4ae7-87ef-b09db15ffc27"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "5b0334b9-dedf-4be5-9363-55166eeae860"}, "type": "Rect", "id": "5b0334b9-dedf-4be5-9363-55166eeae860"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "ecdd17b2-7739-423e-b7e2-edf49cd39d93"}, "tags": [], "doc": null, "selection_glyph": null, "id": "11257f37-258d-4c29-b511-0d53533226eb", "glyph": {"type": "Rect", "id": "2899bd80-d924-42c5-b229-09be594184d5"}}, "type": "GlyphRenderer", "id": "11257f37-258d-4c29-b511-0d53533226eb"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "60ede4a5-a5e5-48b7-a3a2-ce78bceb9341"}, "type": "BasicTicker", "id": "60ede4a5-a5e5-48b7-a3a2-ce78bceb9341"}, {"attributes": {"doc": null, "id": "447b709d-dd29-4159-a21e-462ef5d9967e", "tags": []}, "type": "BasicTickFormatter", "id": "447b709d-dd29-4159-a21e-462ef5d9967e"}, {"attributes": {"doc": null, "id": "1af07509-f92f-4ba7-a234-dee6e5493920", "tags": []}, "type": "CategoricalTicker", "id": "1af07509-f92f-4ba7-a234-dee6e5493920"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "6c66b3c9-3357-4cf2-af62-190dc3d90b22"}, "tags": [], "doc": null, "selection_glyph": null, "id": "93c14cb8-e739-4f7a-a875-9b6d4c4bd9b3", "glyph": {"type": "Rect", "id": "0feea656-55e1-420c-84b3-0f31304c5300"}}, "type": "GlyphRenderer", "id": "93c14cb8-e739-4f7a-a875-9b6d4c4bd9b3"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "11949ae0-856e-45f2-874d-c82c2cc92ac0"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "df2496b7-d278-4852-983d-68f7b480d83d"}, "ticker": {"type": "BasicTicker", "id": "83f11fa1-5179-41e0-b417-a29a9739ce58"}, "id": "16bf0e9b-4542-479b-b48d-4628d8ee60a3"}, "type": "LinearAxis", "id": "16bf0e9b-4542-479b-b48d-4628d8ee60a3"}, {"subtype": "Chart", "type": "Plot", "id": "71e4746f-9dd0-432e-8cd6-63dc01dda746", "attributes": {"x_range": {"type": "FactorRange", "id": "7004cdb2-812f-4c72-b5e5-7403c578ac78"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "aa47e163-9308-4107-aa1b-1981ce22227f"}, "title": "When was the last time you experienced repository \"corruption\" and had to re-clone?", "renderers": [{"type": "CategoricalAxis", "id": "9218d6bb-097e-43aa-b28d-4376bc430274"}, {"type": "LinearAxis", "id": "73b02280-7271-4708-9d38-97a46b9b3251"}, {"type": "Grid", "id": "52386d75-3073-4aa1-9cc3-1a45cdf9ff54"}, {"type": "GlyphRenderer", "id": "b90fe00c-9ebc-45f1-8d9c-e8563110f329"}, {"type": "GlyphRenderer", "id": "def04223-5734-4770-b882-24870046e438"}, {"type": "Legend", "id": "4c925b8c-837d-4a62-933a-6ceed8bb24c5"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "589a2c86-ec13-44b6-93e9-f29bdb26bd7a"}, "plot_height": 560, "doc": null, "id": "71e4746f-9dd0-432e-8cd6-63dc01dda746", "tools": [], "below": [{"type": "CategoricalAxis", "id": "9218d6bb-097e-43aa-b28d-4376bc430274"}], "left": [{"type": "LinearAxis", "id": "73b02280-7271-4708-9d38-97a46b9b3251"}]}}, {"attributes": {"end": 38.5, "callback": null, "doc": null, "tags": [], "start": 0, "id": "9e890efb-dcec-4d98-a4ad-bbeef3bd79d5"}, "type": "Range1d", "id": "9e890efb-dcec-4d98-a4ad-bbeef3bd79d5"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "07199e6a-f16d-4717-ab6d-6cab21bb0e99"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "133244ce-838b-4813-9a32-4d50ecb06373"}, "ticker": {"type": "CategoricalTicker", "id": "ba4b9a2d-fb53-48dd-839c-8ef87934857e"}, "id": "f1e96a1b-d889-4c2a-a4ce-f84cadfd712a"}, "type": "CategoricalAxis", "id": "f1e96a1b-d889-4c2a-a4ce-f84cadfd712a"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "bdcd7035-05f6-487f-ae98-b7bf894b20a7"}, "tags": [], "doc": null, "selection_glyph": null, "id": "f434e4c3-598a-4c8f-a1d7-f1bfcdaaf953", "glyph": {"type": "Rect", "id": "8192ce4e-f57b-4d69-8e5d-2dd8f6497a6d"}}, "type": "GlyphRenderer", "id": "f434e4c3-598a-4c8f-a1d7-f1bfcdaaf953"}, {"attributes": {"doc": null, "id": "12455e3b-ac4d-46e8-9ce1-22a238d5c740", "tags": []}, "type": "CategoricalTickFormatter", "id": "12455e3b-ac4d-46e8-9ce1-22a238d5c740"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "6be1aa92-897c-4668-84e4-f15ee16ea8c4"}, "orientation": "top_left", "tags": [], "doc": null, "id": "dff1c59b-d33b-4c24-a160-4dd03777c227", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "0ff633b6-4f1d-45fd-8051-6cd89c2f1aec"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "97151610-a346-4d84-bddf-1d241ca096dc"}]]]}, "type": "Legend", "id": "dff1c59b-d33b-4c24-a160-4dd03777c227"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "44b0f247-9666-48fe-a86e-921b397decb8"}, "orientation": "top_left", "tags": [], "doc": null, "id": "ae0468dd-c0e0-4eac-9927-043dfe76b79f", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "015317df-8ecb-436b-ba42-1885328faa25"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "0324cc46-7699-4ea5-ab82-77142adbe5fc"}]]]}, "type": "Legend", "id": "ae0468dd-c0e0-4eac-9927-043dfe76b79f"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "1 = little impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "84c3c936-92f9-49b9-a59d-990b7c1ca3bd"}, "type": "FactorRange", "id": "84c3c936-92f9-49b9-a59d-990b7c1ca3bd"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a05e5655-b828-4862-a09d-654ec6d29afd"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "914c6244-5b26-46a9-9bd9-57c3b688701e"}, "id": "13ada97a-4024-47df-836f-26ac9c0198ad"}, "type": "Grid", "id": "13ada97a-4024-47df-836f-26ac9c0198ad"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "c7094733-3f19-4113-9ff2-9d995763906a"}, "type": "BasicTicker", "id": "c7094733-3f19-4113-9ff2-9d995763906a"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "bc085a35-b314-41e9-a57d-565def0bbdc6"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "647579c5-dd60-40a8-838e-1813b81bf520"}, "ticker": {"type": "BasicTicker", "id": "5a194388-9237-49ab-81aa-659c5b99c4cd"}, "id": "32bb3068-c40b-414a-af2f-8b8fe77ab62d"}, "type": "LinearAxis", "id": "32bb3068-c40b-414a-af2f-8b8fe77ab62d"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A", "Cut all investment", "Keep about the same", "Increase investment", "Drastically increase investment"], "doc": null, "tags": [], "id": "06ef689b-d03f-4919-9e4e-6fe16722929c"}, "type": "FactorRange", "id": "06ef689b-d03f-4919-9e4e-6fe16722929c"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "10395fe0-0530-422d-a521-6450c67385c2"}, "type": "ToolEvents", "id": "10395fe0-0530-422d-a521-6450c67385c2"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [2.0, 4.0, 5.0, 5.0, 3.5, 10.5, 19.0], "Platform": [4, 8, 10, 10, 7, 21, 38], "catFx-Team": ["All Other Responses:0.666666666667", "Not at all satisfied:0.666666666667", "It's not horrible, but it's still pretty bad:0.666666666667", "It sucks a little:0.666666666667", "It's neither bad nor good:0.666666666667", "It's OK, I guess:0.666666666667", "It's pretty good:0.666666666667"], "cat": ["All Other Responses", "Not at all satisfied", "It's not horrible, but it's still pretty bad", "It sucks a little", "It's neither bad nor good", "It's OK, I guess", "It's pretty good"], "midPlatform": [2.0, 4.0, 5.0, 5.0, 3.5, 10.5, 19.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [6.0, 13.0, 28.0, 20.0, 12.0, 61.0, 54.0], "catPlatform": ["All Other Responses:0.333333333333", "Not at all satisfied:0.333333333333", "It's not horrible, but it's still pretty bad:0.333333333333", "It sucks a little:0.333333333333", "It's neither bad nor good:0.333333333333", "It's OK, I guess:0.333333333333", "It's pretty good:0.333333333333"], "stackedFx-Team": [5.0, 10.5, 19.0, 15.0, 9.5, 41.0, 46.0], "midFx-Team": [1.0, 2.5, 9.0, 5.0, 2.5, 20.0, 8.0], "Fx-Team": [2, 5, 18, 10, 5, 40, 16]}, "id": "3a8acf20-959a-4bc8-bbf7-33f242fd3616"}, "type": "ColumnDataSource", "id": "3a8acf20-959a-4bc8-bbf7-33f242fd3616"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "e33849cd-3fb1-42f3-b789-1c52fad6040d"}, "type": "Rect", "id": "e33849cd-3fb1-42f3-b789-1c52fad6040d"}, {"attributes": {"doc": null, "id": "e16301f3-aa22-4d11-8bae-f28761efa57a", "tags": []}, "type": "BasicTickFormatter", "id": "e16301f3-aa22-4d11-8bae-f28761efa57a"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "0c767648-5c71-4487-8915-b4b03bf0395b"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "5d3eca8e-2c7d-4bf3-aa24-74c6b88301cd"}, "ticker": {"type": "BasicTicker", "id": "b7df0c17-543b-43a7-8b3a-eb117e975f98"}, "id": "89ff1a4a-cf06-47fc-808a-decd2000ca41"}, "type": "LinearAxis", "id": "89ff1a4a-cf06-47fc-808a-decd2000ca41"}, {"attributes": {"doc": null, "id": "c2ded8aa-fc9e-4e7d-823a-df0706a92625", "tags": []}, "type": "BasicTickFormatter", "id": "c2ded8aa-fc9e-4e7d-823a-df0706a92625"}, {"attributes": {"doc": null, "id": "128ba888-8aad-4397-892c-94728def2a77", "tags": []}, "type": "BasicTickFormatter", "id": "128ba888-8aad-4397-892c-94728def2a77"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "8d8cd2c4-1fbc-4f5f-96aa-6d9cb361290b"}, "type": "Rect", "id": "8d8cd2c4-1fbc-4f5f-96aa-6d9cb361290b"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "25984de7-3262-4aca-8a71-1fda4ebfb013"}, "type": "BasicTicker", "id": "25984de7-3262-4aca-8a71-1fda4ebfb013"}, {"attributes": {"doc": null, "id": "0e679e16-5991-4571-a3a6-92331df65986", "tags": []}, "type": "CategoricalTickFormatter", "id": "0e679e16-5991-4571-a3a6-92331df65986"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "d127fde1-9ed2-480c-9583-df4a360c9a51"}, "tags": [], "doc": null, "selection_glyph": null, "id": "4475dc8b-6b66-40fb-81f0-f211e70e0044", "glyph": {"type": "Rect", "id": "98751bbd-988d-479e-8161-c7f9e1fae0f7"}}, "type": "GlyphRenderer", "id": "4475dc8b-6b66-40fb-81f0-f211e70e0044"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [16.5, 8.5, 13.0, 6.5, 3.5], "Platform": [33, 17, 26, 13, 7], "catFx-Team": ["No impact / Not applicable:0.666666666667", "A little impact:0.666666666667", "Moderate impact:0.666666666667", "Significant impact:0.666666666667", "Tons of impact / Implement this ASAP:0.666666666667"], "cat": ["No impact / Not applicable", "A little impact", "Moderate impact", "Significant impact", "Tons of impact / Implement this ASAP"], "midPlatform": [16.5, 8.5, 13.0, 6.5, 3.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [65.0, 38.0, 50.0, 26.0, 15.0], "catPlatform": ["No impact / Not applicable:0.333333333333", "A little impact:0.333333333333", "Moderate impact:0.333333333333", "Significant impact:0.333333333333", "Tons of impact / Implement this ASAP:0.333333333333"], "stackedFx-Team": [49.0, 27.5, 38.0, 19.5, 11.0], "midFx-Team": [16.0, 10.5, 12.0, 6.5, 4.0], "Fx-Team": [32, 21, 24, 13, 8]}, "id": "fcb384b7-a97f-4f4c-8ca8-f2de79459ea7"}, "type": "ColumnDataSource", "id": "fcb384b7-a97f-4f4c-8ca8-f2de79459ea7"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a58b9b9e-6cbd-4c91-86be-fba9d10cecb3"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "3c9623e9-d5de-43ee-acf7-ed875fc265e8"}, "ticker": {"type": "CategoricalTicker", "id": "80e4cf4a-3c8f-4fa1-b2b5-ce993dd25299"}, "id": "3a793f34-5165-47b0-995f-3019721f1b5b"}, "type": "CategoricalAxis", "id": "3a793f34-5165-47b0-995f-3019721f1b5b"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "ccab7926-98de-4b13-a093-3650ba0358d3"}, "type": "Rect", "id": "ccab7926-98de-4b13-a093-3650ba0358d3"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "590387a1-ec15-41cd-8526-f5db5b9fe8d9"}, "orientation": "top_left", "tags": [], "doc": null, "id": "d82e4702-ca05-4386-947b-4da6c9e91b5f", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "b4180a18-96ec-4299-a6ac-989548b69a68"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "f0929213-6d18-4c1b-98f0-716e2b85972f"}]]]}, "type": "Legend", "id": "d82e4702-ca05-4386-947b-4da6c9e91b5f"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "Git", "Mercurial"], "doc": null, "tags": [], "id": "ef9544a2-5446-4918-b104-0a7a910cb2f2"}, "type": "FactorRange", "id": "ef9544a2-5446-4918-b104-0a7a910cb2f2"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "e82dd297-79b0-46eb-8c2c-c792cec26748"}, "orientation": "top_left", "tags": [], "doc": null, "id": "389e3993-ab5c-4fef-81a6-4012b02da9e9", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "2150f83e-dba1-4306-8e94-e9479f5c142d"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "10b4ebab-3676-4a83-bef3-98592e8774fb"}]]]}, "type": "Legend", "id": "389e3993-ab5c-4fef-81a6-4012b02da9e9"}, {"attributes": {"doc": null, "id": "1d2307a2-039c-4a18-9879-71c75db5d055", "tags": []}, "type": "CategoricalTickFormatter", "id": "1d2307a2-039c-4a18-9879-71c75db5d055"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "ead2c6f4-7254-4568-91ef-987b02ebbb40"}, "type": "Rect", "id": "ead2c6f4-7254-4568-91ef-987b02ebbb40"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "ee636778-0f34-4f96-9084-1c1f38bf8e75"}, "tags": [], "doc": null, "selection_glyph": null, "id": "ef990697-6762-4b0d-860d-ff5b994503b4", "glyph": {"type": "Rect", "id": "5be1ecbb-d1ab-42f7-940f-6687d1ce414f"}}, "type": "GlyphRenderer", "id": "ef990697-6762-4b0d-860d-ff5b994503b4"}, {"attributes": {"callback": null, "factors": ["1 - no impact", "2 - little impact", "3 - a fair amount of impact", "4 - a significant amount of impact", "5 - an extremely frustrating amount of impact"], "doc": null, "tags": [], "id": "1a185a23-7c24-4f31-80fa-c6a45d97b226"}, "type": "FactorRange", "id": "1a185a23-7c24-4f31-80fa-c6a45d97b226"}, {"attributes": {"end": 34.1, "callback": null, "doc": null, "tags": [], "start": 0, "id": "8b554c32-7071-4ab4-939b-2f2d0933308d"}, "type": "Range1d", "id": "8b554c32-7071-4ab4-939b-2f2d0933308d"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "de0bb374-68de-4920-b046-be0d02c3562b"}, "type": "ToolEvents", "id": "de0bb374-68de-4920-b046-be0d02c3562b"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "5c4bbcf7-2176-4cbe-8036-1486def97d63"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "4bd75376-1882-4fe8-a51a-cf366a3cb593"}, "ticker": {"type": "CategoricalTicker", "id": "fc65d54b-1c96-40da-bf61-a943e03bc4eb"}, "id": "dbaa61d4-a86d-49e7-8ce5-1d5e30d98e2e"}, "type": "CategoricalAxis", "id": "dbaa61d4-a86d-49e7-8ce5-1d5e30d98e2e"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "f21e67d7-5329-42c9-bd63-50f5cf06d6f9"}, "type": "ToolEvents", "id": "f21e67d7-5329-42c9-bd63-50f5cf06d6f9"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "36e4e267-2fc2-456c-baf3-f5dfb64ce2bb"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "cc9935d6-0311-44bd-b5f4-ff9bdce2ad34"}, "ticker": {"type": "BasicTicker", "id": "68419587-04c4-47cd-be4d-72db951b9b2f"}, "id": "d8c1fff7-252f-4390-af3d-a7892d70bbf4"}, "type": "LinearAxis", "id": "d8c1fff7-252f-4390-af3d-a7892d70bbf4"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "08152ded-c646-4f6a-8d6b-ba0e8e69c0e8"}, "tags": [], "doc": null, "selection_glyph": null, "id": "114a4a46-38d3-4218-8bbf-9b0f24aab386", "glyph": {"type": "Rect", "id": "a1a58e83-b9b6-4415-8825-10b1534def6d"}}, "type": "GlyphRenderer", "id": "114a4a46-38d3-4218-8bbf-9b0f24aab386"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "35a0ef13-f1b7-4f32-a771-a81e1e02bae5"}, "type": "Rect", "id": "35a0ef13-f1b7-4f32-a771-a81e1e02bae5"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "802a6cfb-4f78-4f9f-9aaa-3f3c209c2bcf"}, "tags": [], "doc": null, "selection_glyph": null, "id": "e1113e67-01f6-48c0-b598-34be37ec3190", "glyph": {"type": "Rect", "id": "788e0db3-1354-4fa4-8505-f9ab777d887a"}}, "type": "GlyphRenderer", "id": "e1113e67-01f6-48c0-b598-34be37ec3190"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "7c63424d-6abb-4a37-8231-e384ff94c558"}, "type": "ToolEvents", "id": "7c63424d-6abb-4a37-8231-e384ff94c558"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fd2801db-f7d9-4e81-a693-dd7db4bdc260"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "6f3e88cc-a131-4704-ad48-b280265cbb01"}, "ticker": {"type": "CategoricalTicker", "id": "6a230e06-0913-4efc-a4c7-e5b51649ee8f"}, "id": "7116508e-0c32-4fd7-8f1f-427fbe56aa81"}, "type": "CategoricalAxis", "id": "7116508e-0c32-4fd7-8f1f-427fbe56aa81"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "77d1169c-0b2a-4a20-9899-1d963b34c3b9"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "1d79e0aa-b481-4085-8f33-d2c58a20eb4f"}, "ticker": {"type": "CategoricalTicker", "id": "0af217d6-b26f-419b-8576-cae4e63a11a8"}, "id": "b3c905cb-b0f8-467d-bf8d-9ad308d52406"}, "type": "CategoricalAxis", "id": "b3c905cb-b0f8-467d-bf8d-9ad308d52406"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "6c4a3fd8-4a64-4a90-b5d2-5a106ad9c730"}, "type": "Rect", "id": "6c4a3fd8-4a64-4a90-b5d2-5a106ad9c730"}, {"attributes": {"doc": null, "id": "d36d5b0c-2a8f-4737-8b76-f378c5177bda", "tags": []}, "type": "BasicTickFormatter", "id": "d36d5b0c-2a8f-4737-8b76-f378c5177bda"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "f1999b0c-15ec-4501-9371-199df01c7ee5"}, "type": "BasicTicker", "id": "f1999b0c-15ec-4501-9371-199df01c7ee5"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "bcf2336f-48e4-448b-9761-e3cfbaafb251"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "9b84a9c5-84b4-4aba-9991-c0aab1aea4df"}, "id": "1f0295c6-450d-4e17-82fa-0a6f1403efd5"}, "type": "Grid", "id": "1f0295c6-450d-4e17-82fa-0a6f1403efd5"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "17ac799c-d49d-4577-8e39-49b74a0a121c"}, "orientation": "top_left", "tags": [], "doc": null, "id": "bb05f863-ca68-4f55-9c22-011d426bec9c", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "3552ae2f-d21f-4339-8bee-afc06337654f"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "68d95ed4-2b71-4444-aa83-7f1fea65de99"}]]]}, "type": "Legend", "id": "bb05f863-ca68-4f55-9c22-011d426bec9c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ce0e6eca-a674-4977-99cb-6652b2d7fe92"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "7050c189-d578-4447-b968-9296580dc0e2"}, "ticker": {"type": "CategoricalTicker", "id": "12835ffe-1564-4c91-a818-941e68e555a1"}, "id": "67151e0c-a258-4516-be83-a78f1c50c5a3"}, "type": "CategoricalAxis", "id": "67151e0c-a258-4516-be83-a78f1c50c5a3"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "56be1325-b342-4fd3-a6b0-7c2ed769c406"}, "tags": [], "doc": null, "selection_glyph": null, "id": "4094d90b-ae6b-48f6-9372-01379cebf0e5", "glyph": {"type": "Rect", "id": "f4f4cffc-3b72-4ea6-9abb-4ae7fa20e783"}}, "type": "GlyphRenderer", "id": "4094d90b-ae6b-48f6-9372-01379cebf0e5"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "1 = little impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "72dc1eff-a987-46d3-ab16-338ad5929b0a"}, "type": "FactorRange", "id": "72dc1eff-a987-46d3-ab16-338ad5929b0a"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "216e75b5-aa2b-43ac-9e72-6bf13e161525"}, "orientation": "top_left", "tags": [], "doc": null, "id": "ff3eb07b-3a14-4637-a0ba-2e5745d89c54", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "f3a88762-bbbf-4ae5-9e7b-f469e2efc29e"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "4475dc8b-6b66-40fb-81f0-f211e70e0044"}]]]}, "type": "Legend", "id": "ff3eb07b-3a14-4637-a0ba-2e5745d89c54"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "15379473-9f8e-46e5-baec-dcf5aa99c642"}, "type": "BasicTicker", "id": "15379473-9f8e-46e5-baec-dcf5aa99c642"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "f0491a87-8728-47a9-813c-3f2c0bd6a593"}, "orientation": "top_left", "tags": [], "doc": null, "id": "20414e53-be7a-4b62-b9a5-eb5b0c4fe194", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "05beedb5-8720-4d60-a0fb-7c0ac0d142e1"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "02b51642-2a68-4f38-8c74-ee9869a97bb5"}]]]}, "type": "Legend", "id": "20414e53-be7a-4b62-b9a5-eb5b0c4fe194"}, {"attributes": {"end": 56.1, "callback": null, "doc": null, "tags": [], "start": 0, "id": "b6a4b06a-8e61-4d16-9cc3-c7647564dc19"}, "type": "Range1d", "id": "b6a4b06a-8e61-4d16-9cc3-c7647564dc19"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "68867bb8-e0b8-433b-b5e4-63ea8e54af1b"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "6e54c3ac-9f44-488f-ace4-32f6a085b9be"}, "ticker": {"type": "BasicTicker", "id": "7b6c5882-2edc-498e-8acd-6403a12e18e0"}, "id": "d245045c-6073-4f00-ae46-f9640daf6926"}, "type": "LinearAxis", "id": "d245045c-6073-4f00-ae46-f9640daf6926"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [9.5, 2.5, 17.5, 3.0, 12.5, 16.0, 15.5, 11.5, 18.5], "Platform": [19, 5, 35, 6, 25, 32, 31, 23, 37], "catFx-Team": ["Access to Firefox's CVS history:0.666666666667", "All Other Responses:0.666666666667", "All the heads/branches in one repository / One remote:0.666666666667", "I don't know Mercurial:0.666666666667", "It's more popular:0.666666666667", "Merge / conflict resolution is better:0.666666666667", "More powerful commands and workflows:0.666666666667", "My projects are mostly in Git / I don't need to use Mercurial:0.666666666667", "Operations are faster:0.666666666667"], "cat": ["Access to Firefox's CVS history", "All Other Responses", "All the heads/branches in one repository / One remote", "I don't know Mercurial", "It's more popular", "Merge / conflict resolution is better", "More powerful commands and workflows", "My projects are mostly in Git / I don't need to use Mercurial", "Operations are faster"], "midPlatform": [9.5, 2.5, 17.5, 3.0, 12.5, 16.0, 15.5, 11.5, 18.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [21.0, 10.0, 67.0, 16.0, 52.0, 59.0, 58.0, 52.0, 69.0], "catPlatform": ["Access to Firefox's CVS history:0.333333333333", "All Other Responses:0.333333333333", "All the heads/branches in one repository / One remote:0.333333333333", "I don't know Mercurial:0.333333333333", "It's more popular:0.333333333333", "Merge / conflict resolution is better:0.333333333333", "More powerful commands and workflows:0.333333333333", "My projects are mostly in Git / I don't need to use Mercurial:0.333333333333", "Operations are faster:0.333333333333"], "stackedFx-Team": [20.0, 7.5, 51.0, 11.0, 38.5, 45.5, 44.5, 37.5, 53.0], "midFx-Team": [1.0, 2.5, 16.0, 5.0, 13.5, 13.5, 13.5, 14.5, 16.0], "Fx-Team": [2, 5, 32, 10, 27, 27, 27, 29, 32]}, "id": "24b74690-0430-4b30-890f-7afa5ef93d5e"}, "type": "ColumnDataSource", "id": "24b74690-0430-4b30-890f-7afa5ef93d5e"}, {"subtype": "Chart", "type": "Plot", "id": "9e9e91b9-fe46-4eb3-97c9-9ff989cd30c2", "attributes": {"x_range": {"type": "FactorRange", "id": "211e15a1-72bc-4861-bab3-2ad2dd062735"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "4e42044a-5758-4148-8c7d-d153ce11e384"}, "title": "What language do you primarily work with?", "renderers": [{"type": "CategoricalAxis", "id": "6a672df8-6cca-4a74-93ec-ef4d29bb1132"}, {"type": "LinearAxis", "id": "7c2663d1-e6a5-4b85-8a10-df544d57221a"}, {"type": "Grid", "id": "64611ca2-1b13-4799-9cab-b473fe931b1a"}, {"type": "GlyphRenderer", "id": "d9069d05-1f2e-402c-8464-01fb9665f40e"}, {"type": "GlyphRenderer", "id": "80e9a12b-23e9-4f72-a5a3-7fad269957cb"}, {"type": "Legend", "id": "29fc450b-6275-4fbe-a2b0-a12ede5ee7ce"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "fb024031-98ed-4dc8-bb9b-0039261a3546"}, "plot_height": 560, "doc": null, "id": "9e9e91b9-fe46-4eb3-97c9-9ff989cd30c2", "tools": [], "below": [{"type": "CategoricalAxis", "id": "6a672df8-6cca-4a74-93ec-ef4d29bb1132"}], "left": [{"type": "LinearAxis", "id": "7c2663d1-e6a5-4b85-8a10-df544d57221a"}]}}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "42a530cb-6878-474f-a40e-8b2cae921660"}, "tags": [], "doc": null, "selection_glyph": null, "id": "ed4d1996-87e8-4e0a-8a38-bedbdcac0af6", "glyph": {"type": "Rect", "id": "11efaf3b-4375-4cd6-a832-bc3b028da49c"}}, "type": "GlyphRenderer", "id": "ed4d1996-87e8-4e0a-8a38-bedbdcac0af6"}, {"attributes": {"doc": null, "id": "65b7d013-f8a1-45aa-b4ee-04a0d63b0bc8", "tags": []}, "type": "BasicTickFormatter", "id": "65b7d013-f8a1-45aa-b4ee-04a0d63b0bc8"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "Bookmarks", "Branches", "Evolve/changeset evolution", "Import/export from/to Git", "MQ", "Nameless heads"], "doc": null, "tags": [], "id": "7ee0ed3f-9d26-41fd-8f1f-3514747b3cda"}, "type": "FactorRange", "id": "7ee0ed3f-9d26-41fd-8f1f-3514747b3cda"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A", "Cut all investment", "Keep about the same", "Increase investment", "Drastically increase investment"], "doc": null, "tags": [], "id": "e3678d9a-6f79-4e91-a623-68acc500fa55"}, "type": "FactorRange", "id": "e3678d9a-6f79-4e91-a623-68acc500fa55"}, {"attributes": {"doc": null, "id": "133244ce-838b-4813-9a32-4d50ecb06373", "tags": []}, "type": "CategoricalTickFormatter", "id": "133244ce-838b-4813-9a32-4d50ecb06373"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "02873884-4446-44a0-b6a0-f503c649ec7b"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "8d5555f1-203c-45ea-92c0-8c90f6c3d014"}, "ticker": {"type": "BasicTicker", "id": "77f35882-fcba-43b2-a1b3-07666f732452"}, "id": "692421a1-c520-4d47-90f7-ce09c493be44"}, "type": "LinearAxis", "id": "692421a1-c520-4d47-90f7-ce09c493be44"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "df9cd4cb-16bd-48bd-8f8d-e6d60a25eeb2"}, "type": "Rect", "id": "df9cd4cb-16bd-48bd-8f8d-e6d60a25eeb2"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "7704e2a2-aab2-481b-89b4-44eec5d34f24"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "91afd29b-974b-46b1-a9a8-fc69dce13dcf"}, "ticker": {"type": "BasicTicker", "id": "30e1995e-2980-41e3-9dcb-e803035f87d2"}, "id": "bc7a3e66-08ff-44df-afe0-2b47f845ac92"}, "type": "LinearAxis", "id": "bc7a3e66-08ff-44df-afe0-2b47f845ac92"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "8bdd5e9c-3c7d-42fa-805e-eeb5deee5119"}, "tags": [], "doc": null, "selection_glyph": null, "id": "eb240fdc-0e94-4085-a2f5-2af8172e7123", "glyph": {"type": "Rect", "id": "f2726f3b-a801-4cec-8d2c-ddad7859a81c"}}, "type": "GlyphRenderer", "id": "eb240fdc-0e94-4085-a2f5-2af8172e7123"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "31d695fd-dcdd-47bc-ab7e-19bb3f158fb4"}, "type": "BasicTicker", "id": "31d695fd-dcdd-47bc-ab7e-19bb3f158fb4"}, {"attributes": {"end": 101.2, "callback": null, "doc": null, "tags": [], "start": 0, "id": "a4b86870-6bf0-4b0d-a2b1-7a9e0fd591b3"}, "type": "Range1d", "id": "a4b86870-6bf0-4b0d-a2b1-7a9e0fd591b3"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "03813c9d-f7c2-448c-83da-a990dc513852"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "fa74937a-a468-42c8-bd40-b4420d61e70c"}, "ticker": {"type": "CategoricalTicker", "id": "1dc8489e-1092-4c8f-ba3e-71adaf72d5b8"}, "id": "cc213278-6ab1-4b97-bf57-8728ee6be190"}, "type": "CategoricalAxis", "id": "cc213278-6ab1-4b97-bf57-8728ee6be190"}, {"subtype": "Chart", "type": "Plot", "id": "f8c144d7-1a9e-4cc4-8de0-33ead1cae93a", "attributes": {"x_range": {"type": "FactorRange", "id": "3217fc96-547a-43b2-b140-5157b8663c33"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "4d4a2ef5-cd19-43c2-95f1-e095c0b2cf0c"}, "title": "Please rate your satisfaction with the following items. [The Firefox Mercurial repositories (mozilla-central, inbound, etc)]", "renderers": [{"type": "CategoricalAxis", "id": "f2e8f0fa-b547-4415-b78f-6646ab14c03a"}, {"type": "LinearAxis", "id": "3bdcdfe1-21a2-46ce-874c-37d9ec2a2b37"}, {"type": "Grid", "id": "d7dcec07-3790-4eb6-bab1-be1eb9ca476f"}, {"type": "GlyphRenderer", "id": "a40e44bc-6c84-44dc-b68d-62727418b20b"}, {"type": "GlyphRenderer", "id": "7b990480-5125-445e-bc6c-d037d1a50148"}, {"type": "Legend", "id": "ed1b83c3-d20d-4313-9f21-9e7a0e50ec99"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "d4e1de47-35ea-4aae-b00a-47ef348c2da5"}, "plot_height": 560, "doc": null, "id": "f8c144d7-1a9e-4cc4-8de0-33ead1cae93a", "tools": [], "below": [{"type": "CategoricalAxis", "id": "f2e8f0fa-b547-4415-b78f-6646ab14c03a"}], "left": [{"type": "LinearAxis", "id": "3bdcdfe1-21a2-46ce-874c-37d9ec2a2b37"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "65f9d86b-1c58-4101-a0ef-32fed75fe723"}, "orientation": "top_left", "tags": [], "doc": null, "id": "64a02211-a4cf-4d3e-b270-33e06b83aff2", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "36fa2d00-810b-4ee4-a4c4-531ad146eb0e"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "0fc6aeda-4b80-4b8e-bd8c-4de4a61ae54c"}]]]}, "type": "Legend", "id": "64a02211-a4cf-4d3e-b270-33e06b83aff2"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "b8fc0587-42e8-4658-9314-5926a5529de4"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "3f8c69e0-b7da-42dc-b0b5-81b124e9a340"}, "ticker": {"type": "BasicTicker", "id": "ad531066-f7ee-45ba-94a7-31f5d0316229"}, "id": "8f9d2153-bd87-4657-83bc-a76fae117354"}, "type": "LinearAxis", "id": "8f9d2153-bd87-4657-83bc-a76fae117354"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "664ea45c-53c5-49de-9cf4-5744f88f5264"}, "type": "Rect", "id": "664ea45c-53c5-49de-9cf4-5744f88f5264"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "5a5d97d1-7739-4062-a0c9-910e05db48ab"}, "tags": [], "doc": null, "selection_glyph": null, "id": "374beb42-9918-41ef-860d-6e726caae72f", "glyph": {"type": "Rect", "id": "ff3ec4bf-41b8-41d2-87d7-0655921ecfc1"}}, "type": "GlyphRenderer", "id": "374beb42-9918-41ef-860d-6e726caae72f"}, {"attributes": {"doc": null, "id": "6ee41b3b-da7f-4e65-8891-f5f6b9d17ea5", "tags": []}, "type": "CategoricalTicker", "id": "6ee41b3b-da7f-4e65-8891-f5f6b9d17ea5"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "1a1a58f3-e7d4-4e3d-9cb6-5cac2add2444"}, "type": "ToolEvents", "id": "1a1a58f3-e7d4-4e3d-9cb6-5cac2add2444"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "3f601b1d-444e-4134-bcb7-7997449b186d"}, "type": "ToolEvents", "id": "3f601b1d-444e-4134-bcb7-7997449b186d"}, {"subtype": "Chart", "type": "Plot", "id": "a0e5390f-1e01-4763-b57c-474d6ef45d45", "attributes": {"x_range": {"type": "FactorRange", "id": "3f3b38bb-3396-4f2d-81ac-cb4a6c88d602"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "dbcfd146-7f96-42fc-b307-3d31a778091f"}, "title": "How should Mozilla invest in the following Git related items? [Mozilla specific Git customizations (local tools to aid workflow, etc)]", "renderers": [{"type": "CategoricalAxis", "id": "f3691b91-56bb-4478-b249-7b93d0ae80fb"}, {"type": "LinearAxis", "id": "3040e07a-a9ca-48c0-a2c6-5cf7c65f3baf"}, {"type": "Grid", "id": "be7a34cb-6701-4519-b058-ebadb77ba371"}, {"type": "GlyphRenderer", "id": "3cfccd05-8ae8-4bfd-b479-b8436c2df1e3"}, {"type": "GlyphRenderer", "id": "365e04c6-a612-468b-bf72-c84df6c3fcca"}, {"type": "Legend", "id": "5d874c3d-fe6f-4387-9cb7-f9d79e404c22"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "65ada7bd-a55f-43b7-83dc-8e58e947a4f0"}, "plot_height": 560, "doc": null, "id": "a0e5390f-1e01-4763-b57c-474d6ef45d45", "tools": [], "below": [{"type": "CategoricalAxis", "id": "f3691b91-56bb-4478-b249-7b93d0ae80fb"}], "left": [{"type": "LinearAxis", "id": "3040e07a-a9ca-48c0-a2c6-5cf7c65f3baf"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "0e178837-e55a-4d99-a3f8-4597a95121f0"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "15379473-9f8e-46e5-baec-dcf5aa99c642"}, "id": "6abbc476-6948-4bc4-b339-98b118c0c28c"}, "type": "Grid", "id": "6abbc476-6948-4bc4-b339-98b118c0c28c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "047c1b5e-b1e2-4ec8-879c-81ae48cb24f6"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "f028234e-cc8c-441d-bfdb-522dc73dd2ff"}, "ticker": {"type": "BasicTicker", "id": "3a967ccf-e55b-48d9-a4af-83e3fc01b0ba"}, "id": "7a5e540d-3792-4c02-be38-9f97e6e7e642"}, "type": "LinearAxis", "id": "7a5e540d-3792-4c02-be38-9f97e6e7e642"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ae9c28fb-d4a1-4a0f-89f5-1101ea237083"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "a107d5e8-6a44-426a-a575-ec917ea67f6e"}, "ticker": {"type": "BasicTicker", "id": "281ee3f6-656d-4f59-8328-5b2bfa080b84"}, "id": "25316325-19da-4cf2-8eb3-a8422cf349c3"}, "type": "LinearAxis", "id": "25316325-19da-4cf2-8eb3-a8422cf349c3"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "8192ce4e-f57b-4d69-8e5d-2dd8f6497a6d"}, "type": "Rect", "id": "8192ce4e-f57b-4d69-8e5d-2dd8f6497a6d"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "44cacf6e-20fd-42f5-ba8c-4a4655406c2c"}, "type": "Rect", "id": "44cacf6e-20fd-42f5-ba8c-4a4655406c2c"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "933d675a-3739-40b3-8973-f27c50d62549"}, "type": "BasicTicker", "id": "933d675a-3739-40b3-8973-f27c50d62549"}, {"attributes": {"doc": null, "id": "39ffd7ad-034b-4170-a676-bf48cc2bbcbe", "tags": []}, "type": "CategoricalTickFormatter", "id": "39ffd7ad-034b-4170-a676-bf48cc2bbcbe"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "65f9d86b-1c58-4101-a0ef-32fed75fe723"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "5e709d67-4e9c-4c2e-97aa-25cd7fb68266"}, "id": "58249702-563e-4eaa-af3b-9d4d76e65dff"}, "type": "Grid", "id": "58249702-563e-4eaa-af3b-9d4d76e65dff"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "3f6451bd-a783-4e0d-8fb3-5b59fc7ace06"}, "orientation": "top_left", "tags": [], "doc": null, "id": "a9b3ce9f-db1d-45be-a345-61c63979be5e", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "7575a9a1-6789-48c9-a0ed-b0b9d8249748"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "efc119eb-e7ab-4111-9e3d-48d8b2d62520"}]]]}, "type": "Legend", "id": "a9b3ce9f-db1d-45be-a345-61c63979be5e"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "8e533061-3f2b-4d96-9f27-29645c502bae"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "42c230be-df07-404a-a5b6-dba03af104a1"}, "ticker": {"type": "BasicTicker", "id": "0b857157-5205-405e-b722-76856b819a54"}, "id": "076e0b66-8c4d-405a-8381-998b76cd3357"}, "type": "LinearAxis", "id": "076e0b66-8c4d-405a-8381-998b76cd3357"}, {"attributes": {"doc": null, "id": "2449428f-9c0c-4d7a-96eb-e8cdaceea526", "tags": []}, "type": "CategoricalTickFormatter", "id": "2449428f-9c0c-4d7a-96eb-e8cdaceea526"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "1f86723f-f8e2-456b-ae4b-4e2f52bafd70"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "128ba888-8aad-4397-892c-94728def2a77"}, "ticker": {"type": "BasicTicker", "id": "4d77cf1b-3760-4bbf-ac96-83dbdace8e13"}, "id": "4bd8bcfc-0d1d-459c-aa4c-94e4d8d1a7ed"}, "type": "LinearAxis", "id": "4bd8bcfc-0d1d-459c-aa4c-94e4d8d1a7ed"}, {"attributes": {"doc": null, "id": "399ddb6a-03d7-4381-b962-0feb2c16f4f4", "tags": []}, "type": "CategoricalTickFormatter", "id": "399ddb6a-03d7-4381-b962-0feb2c16f4f4"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "dbbbd97b-5d77-4b59-a59a-0a46c7a8f5a8"}, "type": "Rect", "id": "dbbbd97b-5d77-4b59-a59a-0a46c7a8f5a8"}, {"attributes": {"doc": null, "id": "a75a2092-d550-45be-9194-f10357b8adf9", "tags": []}, "type": "BasicTickFormatter", "id": "a75a2092-d550-45be-9194-f10357b8adf9"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "6f3995b6-e154-4091-8387-0ad69f9b3482"}, "type": "Rect", "id": "6f3995b6-e154-4091-8387-0ad69f9b3482"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "e82dd297-79b0-46eb-8c2c-c792cec26748"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "d0154d52-5c7b-43fa-a91e-8258c68b5f85"}, "id": "de8b5137-7545-4ebc-8530-416a5de56b2c"}, "type": "Grid", "id": "de8b5137-7545-4ebc-8530-416a5de56b2c"}, {"subtype": "Chart", "type": "Plot", "id": "a58b9b9e-6cbd-4c91-86be-fba9d10cecb3", "attributes": {"x_range": {"type": "FactorRange", "id": "0374963c-0ab6-43da-8995-6a6bcd440148"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "9265c88e-a108-4a97-b4cb-9ad158be8b33"}, "title": "Please rate your satisfaction with the following items. [hg.mozilla.org push/pull/clone performance]", "renderers": [{"type": "CategoricalAxis", "id": "3a793f34-5165-47b0-995f-3019721f1b5b"}, {"type": "LinearAxis", "id": "dc2de477-e692-4b86-a877-bde5256f2a7c"}, {"type": "Grid", "id": "b60f62ac-9748-45a3-ba00-f37a3db05d48"}, {"type": "GlyphRenderer", "id": "67e63629-51c4-4e7b-981b-55e60b745911"}, {"type": "GlyphRenderer", "id": "816bc19c-fdf2-485b-9c46-2f80e96a5fed"}, {"type": "Legend", "id": "53b63967-4483-445f-9aa6-494d39e70c44"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "d1f18933-480b-4a5f-961f-0e399c44e1b5"}, "plot_height": 560, "doc": null, "id": "a58b9b9e-6cbd-4c91-86be-fba9d10cecb3", "tools": [], "below": [{"type": "CategoricalAxis", "id": "3a793f34-5165-47b0-995f-3019721f1b5b"}], "left": [{"type": "LinearAxis", "id": "dc2de477-e692-4b86-a877-bde5256f2a7c"}]}}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "648c6161-773d-4163-ac5b-7a5c1df3ec88"}, "type": "Rect", "id": "648c6161-773d-4163-ac5b-7a5c1df3ec88"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "45083bd7-00c7-4fea-b94a-23bb2c8f2c9e"}, "type": "Rect", "id": "45083bd7-00c7-4fea-b94a-23bb2c8f2c9e"}, {"attributes": {"doc": null, "id": "f6cc1e4a-b680-4498-8dc0-964ceb076483", "tags": []}, "type": "CategoricalTicker", "id": "f6cc1e4a-b680-4498-8dc0-964ceb076483"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "66f73d12-4c8e-4412-a61a-952be0b375fb"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "820d8acd-6551-402c-860b-06ff0a468b9c"}, "ticker": {"type": "CategoricalTicker", "id": "b5232a19-933f-4e92-a07b-8ecb67bc7009"}, "id": "6585cbbd-763f-47c9-af03-a05356b70f48"}, "type": "CategoricalAxis", "id": "6585cbbd-763f-47c9-af03-a05356b70f48"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "No", "You can do that?!"], "doc": null, "tags": [], "id": "a6e734de-e64f-46e4-a6f9-b96312b1828f"}, "type": "FactorRange", "id": "a6e734de-e64f-46e4-a6f9-b96312b1828f"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "1088cb25-ae1e-46a7-b65e-1f5e8c5450bd"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "a71a49a0-1992-4663-97e2-53b3e19d2a02"}, "id": "89430e3b-9e14-4f4f-81ed-42b3f291854a"}, "type": "Grid", "id": "89430e3b-9e14-4f4f-81ed-42b3f291854a"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "181f467e-8df8-4c5c-a416-21b1cfe03a81"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "32e73144-4f8d-40e2-b4a0-63fb80ff1415"}, "id": "f391ab6e-bb14-4639-83a6-5c4d016d59cf"}, "type": "Grid", "id": "f391ab6e-bb14-4639-83a6-5c4d016d59cf"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "9b1e456e-6a96-4a42-8fb7-20262fb52275"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "059be369-06e3-4f9e-bcb6-f00f007fe8c5"}, "ticker": {"type": "CategoricalTicker", "id": "ccc5e975-2919-459b-8ee0-6f3e48e80705"}, "id": "62ebde2e-da00-4a9e-be71-d07ab166d5bd"}, "type": "CategoricalAxis", "id": "62ebde2e-da00-4a9e-be71-d07ab166d5bd"}, {"attributes": {"doc": null, "id": "c5cc2ce6-b002-402e-a359-74eee31aa2b5", "tags": []}, "type": "CategoricalTicker", "id": "c5cc2ce6-b002-402e-a359-74eee31aa2b5"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "5c189153-e981-4f29-8ef7-e0eb5ae084ee"}, "type": "Rect", "id": "5c189153-e981-4f29-8ef7-e0eb5ae084ee"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "aac2a500-803f-413a-8aba-7aebeaeedbe6"}, "type": "BasicTicker", "id": "aac2a500-803f-413a-8aba-7aebeaeedbe6"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "22cbc21e-b62a-4909-b55f-ee229da821ff"}, "type": "BasicTicker", "id": "22cbc21e-b62a-4909-b55f-ee229da821ff"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "7d986d53-ed95-4cfc-a8d2-df18e2915763"}, "orientation": "top_left", "tags": [], "doc": null, "id": "3eb12e50-81cc-47d3-9a2f-b288fd3e5651", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "41683fe4-62e6-428f-a186-e4593b2eaa91"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "8213790e-904c-4c4b-a82f-2cf596afe778"}]]]}, "type": "Legend", "id": "3eb12e50-81cc-47d3-9a2f-b288fd3e5651"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "721c3dc0-2d48-4839-95d3-71a4009420ee"}, "tags": [], "doc": null, "selection_glyph": null, "id": "59d09cbf-2e13-488b-8d79-341cd79213a5", "glyph": {"type": "Rect", "id": "8873468c-41dd-489d-85d2-6c20d9ceeec7"}}, "type": "GlyphRenderer", "id": "59d09cbf-2e13-488b-8d79-341cd79213a5"}, {"attributes": {"doc": null, "id": "86afd1d1-5286-40ef-a34e-af39d4540f8c", "tags": []}, "type": "BasicTickFormatter", "id": "86afd1d1-5286-40ef-a34e-af39d4540f8c"}, {"attributes": {"callback": null, "factors": ["No impact / Not applicable", "A little impact", "Moderate impact", "Significant impact", "Tons of impact / Implement this ASAP"], "doc": null, "tags": [], "id": "45b3905b-7026-42bc-838b-d77e7c786b27"}, "type": "FactorRange", "id": "45b3905b-7026-42bc-838b-d77e7c786b27"}, {"subtype": "Chart", "type": "Plot", "id": "57e25b97-a78e-437c-bde0-2ade5ef5a920", "attributes": {"x_range": {"type": "FactorRange", "id": "97dc6c29-7668-44ca-9381-62be04813494"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "0cd15bf8-5890-47a3-869f-674c21d91ef9"}, "title": "Has the Firefox build system improved? [In the past 3 years]", "renderers": [{"type": "CategoricalAxis", "id": "6ed23353-5a47-4449-890c-298f29d2f05c"}, {"type": "LinearAxis", "id": "6c07ea11-3d84-45b1-9a58-1d191e94bfb3"}, {"type": "Grid", "id": "b50a00d0-9e01-4620-877b-98320c5c5aea"}, {"type": "GlyphRenderer", "id": "d7d006b7-7ea8-4ad0-9b96-8e8fd57392ab"}, {"type": "GlyphRenderer", "id": "93152c17-86b1-4754-b3fc-4266f17ea1af"}, {"type": "Legend", "id": "019fbc16-36a2-49da-99d8-c1dec65da5e5"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "b3dfccd7-23b7-4d59-8ad5-b33af7d97bc0"}, "plot_height": 560, "doc": null, "id": "57e25b97-a78e-437c-bde0-2ade5ef5a920", "tools": [], "below": [{"type": "CategoricalAxis", "id": "6ed23353-5a47-4449-890c-298f29d2f05c"}], "left": [{"type": "LinearAxis", "id": "6c07ea11-3d84-45b1-9a58-1d191e94bfb3"}]}}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "dae2d14e-69cd-495e-82d4-3734eefdd2cf"}, "type": "BasicTicker", "id": "dae2d14e-69cd-495e-82d4-3734eefdd2cf"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "dc0a0b99-a347-493c-8404-e7f1ac4199b1"}, "type": "ToolEvents", "id": "dc0a0b99-a347-493c-8404-e7f1ac4199b1"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "e4189bbe-2255-461f-870b-cb22e7be3b76"}, "type": "BasicTicker", "id": "e4189bbe-2255-461f-870b-cb22e7be3b76"}, {"attributes": {"end": 47.300000000000004, "callback": null, "doc": null, "tags": [], "start": 0, "id": "afa7fdac-4e21-4512-bf9d-a98617b97708"}, "type": "Range1d", "id": "afa7fdac-4e21-4512-bf9d-a98617b97708"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "111d9c52-c2cd-4427-9db0-4ef41e28e2c0"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "1664be4b-bf6c-4438-b161-608fc96bb8cf"}, "ticker": {"type": "BasicTicker", "id": "ed59bfe2-d6c0-42fa-aff9-ec5cb7755a6d"}, "id": "bbab4eec-da9a-4bd5-893e-2dc8a2021f4b"}, "type": "LinearAxis", "id": "bbab4eec-da9a-4bd5-893e-2dc8a2021f4b"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [4.5, 12.0, 9.0, 10.5, 8.5], "Platform": [9, 24, 18, 21, 17], "catFx-Team": ["All Other Responses:0.666666666667", "N/A (not relevant to me):0.666666666667", "Cut all investment:0.666666666667", "Keep about the same:0.666666666667", "Increase investment:0.666666666667"], "cat": ["All Other Responses", "N/A (not relevant to me)", "Cut all investment", "Keep about the same", "Increase investment"], "midPlatform": [4.5, 12.0, 9.0, 10.5, 8.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [17.0, 61.0, 34.0, 29.0, 33.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A (not relevant to me):0.333333333333", "Cut all investment:0.333333333333", "Keep about the same:0.333333333333", "Increase investment:0.333333333333"], "stackedFx-Team": [13.0, 42.5, 26.0, 25.0, 25.0], "midFx-Team": [4.0, 18.5, 8.0, 4.0, 8.0], "Fx-Team": [8, 37, 16, 8, 16]}, "id": "08152ded-c646-4f6a-8d6b-ba0e8e69c0e8"}, "type": "ColumnDataSource", "id": "08152ded-c646-4f6a-8d6b-ba0e8e69c0e8"}, {"attributes": {"doc": null, "id": "c3a09fc4-754d-47ad-912e-d5f87d7fa15f", "tags": []}, "type": "CategoricalTicker", "id": "c3a09fc4-754d-47ad-912e-d5f87d7fa15f"}, {"attributes": {"doc": null, "id": "9105cf5d-2c52-48b1-a981-242b8b3c87d2", "tags": []}, "type": "CategoricalTickFormatter", "id": "9105cf5d-2c52-48b1-a981-242b8b3c87d2"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "68f996a4-c7e4-4faf-b95b-efa7a8fca723"}, "type": "Rect", "id": "68f996a4-c7e4-4faf-b95b-efa7a8fca723"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "24b74690-0430-4b30-890f-7afa5ef93d5e"}, "tags": [], "doc": null, "selection_glyph": null, "id": "c13c0e48-fd8f-4c18-a336-a6ad157ff09e", "glyph": {"type": "Rect", "id": "34f5a33c-9db3-4e6f-b3ea-8fc6fe943e9b"}}, "type": "GlyphRenderer", "id": "c13c0e48-fd8f-4c18-a336-a6ad157ff09e"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "9a319f01-ce7f-4f75-b962-cc34c326d7f4"}, "type": "Rect", "id": "9a319f01-ce7f-4f75-b962-cc34c326d7f4"}, {"attributes": {"end": 33.0, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "53fbdd9a-d09c-4022-a33a-898d5c1f0f85"}, "type": "Range1d", "id": "53fbdd9a-d09c-4022-a33a-898d5c1f0f85"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "3fdddab8-37f2-4d3b-98db-c370b67bf2cf"}, "type": "Rect", "id": "3fdddab8-37f2-4d3b-98db-c370b67bf2cf"}, {"attributes": {"doc": null, "id": "86e84836-6d03-4d01-8cf2-29f8223e52ea", "tags": []}, "type": "CategoricalTickFormatter", "id": "86e84836-6d03-4d01-8cf2-29f8223e52ea"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [2.5, 8.0, 11.5, 13.0, 14.0], "Platform": [5, 16, 23, 26, 28], "catFx-Team": ["All Other Responses:0.666666666667", "2 - little impact:0.666666666667", "3 - a fair amount of impact:0.666666666667", "4 - a significant amount of impact:0.666666666667", "5 - an extremely frustrating amount of impact:0.666666666667"], "cat": ["All Other Responses", "2 - little impact", "3 - a fair amount of impact", "4 - a significant amount of impact", "5 - an extremely frustrating amount of impact"], "midPlatform": [2.5, 8.0, 11.5, 13.0, 14.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [7.0, 34.0, 55.0, 55.0, 44.0], "catPlatform": ["All Other Responses:0.333333333333", "2 - little impact:0.333333333333", "3 - a fair amount of impact:0.333333333333", "4 - a significant amount of impact:0.333333333333", "5 - an extremely frustrating amount of impact:0.333333333333"], "stackedFx-Team": [6.0, 25.0, 39.0, 40.5, 36.0], "midFx-Team": [1.0, 9.0, 16.0, 14.5, 8.0], "Fx-Team": [2, 18, 32, 29, 16]}, "id": "11962b53-b5c3-4990-b68e-237cf2876b1d"}, "type": "ColumnDataSource", "id": "11962b53-b5c3-4990-b68e-237cf2876b1d"}, {"attributes": {"doc": null, "id": "3f357b73-56a9-4b3c-bab5-9a950a1056f3", "tags": []}, "type": "CategoricalTickFormatter", "id": "3f357b73-56a9-4b3c-bab5-9a950a1056f3"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A (not relevant to me)", "Cut all investment", "Cut some investment", "Keep about the same", "Increase investment"], "doc": null, "tags": [], "id": "6a5e0732-204e-4ca8-955b-e8fb31633064"}, "type": "FactorRange", "id": "6a5e0732-204e-4ca8-955b-e8fb31633064"}, {"attributes": {"end": 40.7, "callback": null, "doc": null, "tags": [], "start": 0, "id": "bbd559bb-65c7-4c9e-9771-fa67e770f037"}, "type": "Range1d", "id": "bbd559bb-65c7-4c9e-9771-fa67e770f037"}, {"attributes": {"doc": null, "id": "4d39050a-61b4-4706-8699-fddfb098d87e", "tags": []}, "type": "BasicTickFormatter", "id": "4d39050a-61b4-4706-8699-fddfb098d87e"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "0c99baf3-0a17-4068-b90a-bfd9346e7946"}, "type": "ToolEvents", "id": "0c99baf3-0a17-4068-b90a-bfd9346e7946"}, {"attributes": {"doc": null, "id": "c82ae66b-acf3-4376-abc4-a3453614ed5c", "tags": []}, "type": "BasicTickFormatter", "id": "c82ae66b-acf3-4376-abc4-a3453614ed5c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "0c767648-5c71-4487-8915-b4b03bf0395b"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "b7df0c17-543b-43a7-8b3a-eb117e975f98"}, "id": "bd7a3cfa-44d0-471e-a85c-327ce4f52fa0"}, "type": "Grid", "id": "bd7a3cfa-44d0-471e-a85c-327ce4f52fa0"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "2774a6fd-825b-4ca9-b4ac-ccb7723293ff"}, "type": "Rect", "id": "2774a6fd-825b-4ca9-b4ac-ccb7723293ff"}, {"attributes": {"doc": null, "id": "438c6048-c333-443c-a0b6-cc3953a4bb84", "tags": []}, "type": "CategoricalTicker", "id": "438c6048-c333-443c-a0b6-cc3953a4bb84"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "5be1ecbb-d1ab-42f7-940f-6687d1ce414f"}, "type": "Rect", "id": "5be1ecbb-d1ab-42f7-940f-6687d1ce414f"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [2.0, 12.5, 10.5, 16.5, 6.5], "Platform": [4, 25, 21, 33, 13], "catFx-Team": ["All Other Responses:0.666666666667", "No impact / Not applicable:0.666666666667", "A little impact:0.666666666667", "Moderate impact:0.666666666667", "Significant impact:0.666666666667"], "cat": ["All Other Responses", "No impact / Not applicable", "A little impact", "Moderate impact", "Significant impact"], "midPlatform": [2.0, 12.5, 10.5, 16.5, 6.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [6.0, 65.0, 42.0, 62.0, 15.0], "catPlatform": ["All Other Responses:0.333333333333", "No impact / Not applicable:0.333333333333", "A little impact:0.333333333333", "Moderate impact:0.333333333333", "Significant impact:0.333333333333"], "stackedFx-Team": [5.0, 45.0, 31.5, 47.5, 14.0], "midFx-Team": [1.0, 20.0, 10.5, 14.5, 1.0], "Fx-Team": [2, 40, 21, 29, 2]}, "id": "1509d362-db1c-4e63-a6db-1d80287161d6"}, "type": "ColumnDataSource", "id": "1509d362-db1c-4e63-a6db-1d80287161d6"}, {"attributes": {"doc": null, "id": "8bb6c633-b633-43c6-8e35-fabaa3680bed", "tags": []}, "type": "CategoricalTicker", "id": "8bb6c633-b633-43c6-8e35-fabaa3680bed"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "32e73144-4f8d-40e2-b4a0-63fb80ff1415"}, "type": "BasicTicker", "id": "32e73144-4f8d-40e2-b4a0-63fb80ff1415"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "cf852d61-c0cb-4b4e-8e9a-37d79be4d2ef"}, "tags": [], "doc": null, "selection_glyph": null, "id": "a23bc05c-fcca-4f21-ac6b-f596ff61f7e6", "glyph": {"type": "Rect", "id": "9a319f01-ce7f-4f75-b962-cc34c326d7f4"}}, "type": "GlyphRenderer", "id": "a23bc05c-fcca-4f21-ac6b-f596ff61f7e6"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "5b959267-0fa2-40dc-a97b-0e560578bbde"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "4717f3a3-3e9a-4b14-9c4d-974142bbcd5a"}, "id": "44d66cad-cb2c-4281-8916-a5a71cf5cd37"}, "type": "Grid", "id": "44d66cad-cb2c-4281-8916-a5a71cf5cd37"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "10544a4e-d09a-4d33-b9db-dad1dffdd8b4"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "86afd1d1-5286-40ef-a34e-af39d4540f8c"}, "ticker": {"type": "BasicTicker", "id": "ae6e6448-e846-4d01-85be-eb643faab9a2"}, "id": "207bee3f-779b-4db5-9804-2a1a510d72d5"}, "type": "LinearAxis", "id": "207bee3f-779b-4db5-9804-2a1a510d72d5"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a0e5390f-1e01-4763-b57c-474d6ef45d45"}, "orientation": "top_left", "tags": [], "doc": null, "id": "5d874c3d-fe6f-4387-9cb7-f9d79e404c22", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "3cfccd05-8ae8-4bfd-b479-b8436c2df1e3"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "365e04c6-a612-468b-bf72-c84df6c3fcca"}]]]}, "type": "Legend", "id": "5d874c3d-fe6f-4387-9cb7-f9d79e404c22"}, {"subtype": "Chart", "type": "Plot", "id": "9a8f6713-a7f2-486f-b470-eb14124ed16f", "attributes": {"x_range": {"type": "FactorRange", "id": "e6c52f9a-1e97-4678-b9f1-44c90204d8bc"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "64ec5bee-c1cd-4b2e-b52e-cf11bdfc004a"}, "title": "Do you use GitHub for any major Mozilla product? (small tools and support repos don't count)", "renderers": [{"type": "CategoricalAxis", "id": "31dab527-712c-4155-b401-9f1babda66e1"}, {"type": "LinearAxis", "id": "b7149849-dfa8-44b9-82d3-12f99174ad49"}, {"type": "Grid", "id": "dd9fa5ad-281a-4231-b26a-ef1a618ffcd4"}, {"type": "GlyphRenderer", "id": "f7832ead-a6a0-4ae8-a89c-1e5feb6619fa"}, {"type": "GlyphRenderer", "id": "944ef638-68b7-40d8-9cfc-00e9ef3a181e"}, {"type": "Legend", "id": "9dae11ef-3fb0-4b80-8cb5-1fa320c3745c"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "ecbd62cd-2493-4468-b044-ab3e71b33062"}, "plot_height": 560, "doc": null, "id": "9a8f6713-a7f2-486f-b470-eb14124ed16f", "tools": [], "below": [{"type": "CategoricalAxis", "id": "31dab527-712c-4155-b401-9f1babda66e1"}], "left": [{"type": "LinearAxis", "id": "b7149849-dfa8-44b9-82d3-12f99174ad49"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a58b9b9e-6cbd-4c91-86be-fba9d10cecb3"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "c1ec0b42-abc4-4036-aaf6-1739ff962fb0"}, "id": "b60f62ac-9748-45a3-ba00-f37a3db05d48"}, "type": "Grid", "id": "b60f62ac-9748-45a3-ba00-f37a3db05d48"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "169b8b79-dac0-437c-8b81-9f6098e73ff1"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "0aeadd16-c12c-4f4a-a1d2-569261163c2e"}, "ticker": {"type": "BasicTicker", "id": "4ad592dc-dde0-4ae1-ba9a-5421ac8071d4"}, "id": "0a03e7df-9bc7-4ed8-ac37-af5fd2cd5e61"}, "type": "LinearAxis", "id": "0a03e7df-9bc7-4ed8-ac37-af5fd2cd5e61"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "7951b0e1-7272-4bb6-a202-8550f77cb368"}, "type": "Rect", "id": "7951b0e1-7272-4bb6-a202-8550f77cb368"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "0e178837-e55a-4d99-a3f8-4597a95121f0"}, "orientation": "top_left", "tags": [], "doc": null, "id": "e29e843f-3d8c-4979-be29-0e57619b519a", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "f628c8a2-ac14-4d4e-a5e5-dd5dbf92a023"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "cb0b63dd-fa0d-40f5-b14b-9dc3ea306af2"}]]]}, "type": "Legend", "id": "e29e843f-3d8c-4979-be29-0e57619b519a"}, {"attributes": {"doc": null, "id": "208d5738-7193-4bfc-b8ed-fef0f8ab9875", "tags": []}, "type": "CategoricalTickFormatter", "id": "208d5738-7193-4bfc-b8ed-fef0f8ab9875"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "fc6bcfc7-6e28-44c4-9061-e8f4c91b80af"}, "tags": [], "doc": null, "selection_glyph": null, "id": "626a987b-e946-498a-934c-f670f4ec318d", "glyph": {"type": "Rect", "id": "4e8bda7e-f427-4f28-a30c-7615dcdf56d2"}}, "type": "GlyphRenderer", "id": "626a987b-e946-498a-934c-f670f4ec318d"}, {"attributes": {"end": 66.0, "callback": null, "doc": null, "tags": [], "start": 0, "id": "30eaa52b-2125-42d6-8a01-790227776831"}, "type": "Range1d", "id": "30eaa52b-2125-42d6-8a01-790227776831"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "31f820dd-e577-4d1c-970a-390b8d9ed532"}, "tags": [], "doc": null, "selection_glyph": null, "id": "a46b875b-7f94-446b-a871-fca40de1c217", "glyph": {"type": "Rect", "id": "bd84a5e5-e7c2-41ae-b807-6d0995689c09"}}, "type": "GlyphRenderer", "id": "a46b875b-7f94-446b-a871-fca40de1c217"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "48ed1c65-8836-42ae-b5e7-680b1ae23d0b"}, "tags": [], "doc": null, "selection_glyph": null, "id": "0410ae3f-9346-4ded-99bd-309697772335", "glyph": {"type": "Rect", "id": "ee8c29c7-562e-4eb3-ab8f-40ff7384cfac"}}, "type": "GlyphRenderer", "id": "0410ae3f-9346-4ded-99bd-309697772335"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "59cb7714-8b4b-406c-bef2-d2f5852cf288"}, "type": "ToolEvents", "id": "59cb7714-8b4b-406c-bef2-d2f5852cf288"}, {"attributes": {"doc": null, "id": "4bd75376-1882-4fe8-a51a-cf366a3cb593", "tags": []}, "type": "CategoricalTickFormatter", "id": "4bd75376-1882-4fe8-a51a-cf366a3cb593"}, {"attributes": {"doc": null, "id": "38040b43-c42d-4002-a26b-ff4c59bb741d", "tags": []}, "type": "BasicTickFormatter", "id": "38040b43-c42d-4002-a26b-ff4c59bb741d"}, {"attributes": {"doc": null, "id": "4d636013-24d5-43f1-bd93-c6d6c9c3d66f", "tags": []}, "type": "CategoricalTicker", "id": "4d636013-24d5-43f1-bd93-c6d6c9c3d66f"}, {"attributes": {"doc": null, "id": "36f465b6-2fff-4bc7-b779-415f720bccca", "tags": []}, "type": "BasicTickFormatter", "id": "36f465b6-2fff-4bc7-b779-415f720bccca"}, {"attributes": {"doc": null, "id": "3e13c865-2656-477b-b356-b85c6f44cb3b", "tags": []}, "type": "BasicTickFormatter", "id": "3e13c865-2656-477b-b356-b85c6f44cb3b"}, {"attributes": {"doc": null, "id": "a23e4d78-aee3-48e7-a102-9951ebed6449", "tags": []}, "type": "BasicTickFormatter", "id": "a23e4d78-aee3-48e7-a102-9951ebed6449"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "ccb0bedc-b249-46c5-83dd-9ea16e4b4469"}, "type": "Rect", "id": "ccb0bedc-b249-46c5-83dd-9ea16e4b4469"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "3fad6639-adfa-4f9d-b07e-85a34c25053c"}, "type": "ToolEvents", "id": "3fad6639-adfa-4f9d-b07e-85a34c25053c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "982450d2-3281-496c-8d55-9d279807bfd4"}, "orientation": "top_left", "tags": [], "doc": null, "id": "f100f08b-d93d-431e-98b0-b4a32f1c729b", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "300ff262-5f0f-4b8f-b5c2-a9058a29dbfe"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "bec33b21-8316-4289-9fcd-02b5bfa7582d"}]]]}, "type": "Legend", "id": "f100f08b-d93d-431e-98b0-b4a32f1c729b"}, {"attributes": {"doc": null, "id": "f028234e-cc8c-441d-bfdb-522dc73dd2ff", "tags": []}, "type": "BasicTickFormatter", "id": "f028234e-cc8c-441d-bfdb-522dc73dd2ff"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "99384585-1096-4d8d-8a63-62ecbe4b315b"}, "orientation": "top_left", "tags": [], "doc": null, "id": "45442974-8a74-43ec-8898-900f76dfd061", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "667c105d-40b7-441d-9368-71fc06e1e3ce"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "dca87db1-4628-4572-8ac7-e7011ef6bf1e"}]]]}, "type": "Legend", "id": "45442974-8a74-43ec-8898-900f76dfd061"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "10eaf7bf-d428-4114-b040-2a63835d1942"}, "tags": [], "doc": null, "selection_glyph": null, "id": "43499ae2-8d08-4d54-b264-7756fd0efd06", "glyph": {"type": "Rect", "id": "ccada610-25d1-4ecd-9fac-003c3bbdc8b6"}}, "type": "GlyphRenderer", "id": "43499ae2-8d08-4d54-b264-7756fd0efd06"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "72fa68be-a8ed-474d-973c-ef9e9d96557b"}, "type": "Rect", "id": "72fa68be-a8ed-474d-973c-ef9e9d96557b"}, {"subtype": "Chart", "type": "Plot", "id": "8e533061-3f2b-4d96-9f27-29645c502bae", "attributes": {"x_range": {"type": "FactorRange", "id": "70dbdf99-fc6e-4817-b29d-a7ca08622602"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "93fd5ad8-fdcf-4fc5-88b5-a95b59db5bcd"}, "title": "Thinking of the mozilla-central/Firefox build system, rank the following potential improvements in terms of their impact to your productivity. [Make full builds much faster]", "renderers": [{"type": "CategoricalAxis", "id": "2749dbdf-0a04-4d51-a225-68fe6815b6bd"}, {"type": "LinearAxis", "id": "076e0b66-8c4d-405a-8381-998b76cd3357"}, {"type": "Grid", "id": "bf5f0a9a-5a16-4ba9-8514-baf056f842aa"}, {"type": "GlyphRenderer", "id": "e69c0f54-5921-4900-8e5d-0793d19c943f"}, {"type": "GlyphRenderer", "id": "7eb72593-862a-4254-84c2-7d61eb572f68"}, {"type": "Legend", "id": "59f513e1-0fa1-418c-ad0d-8cce93283dd4"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "f21e67d7-5329-42c9-bd63-50f5cf06d6f9"}, "plot_height": 560, "doc": null, "id": "8e533061-3f2b-4d96-9f27-29645c502bae", "tools": [], "below": [{"type": "CategoricalAxis", "id": "2749dbdf-0a04-4d51-a225-68fe6815b6bd"}], "left": [{"type": "LinearAxis", "id": "076e0b66-8c4d-405a-8381-998b76cd3357"}]}}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "54263e2e-38e3-4732-a904-a2a52538308c"}, "type": "ToolEvents", "id": "54263e2e-38e3-4732-a904-a2a52538308c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ca660824-da9b-42c8-80f1-b629a907c373"}, "orientation": "top_left", "tags": [], "doc": null, "id": "25d484a4-3613-4729-89c6-aa874b048996", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "a1a0c64b-6350-40a4-a7d7-a729e7e4a3f1"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "5fc77cc8-6fa1-48ff-989a-51748cf787a2"}]]]}, "type": "Legend", "id": "25d484a4-3613-4729-89c6-aa874b048996"}, {"attributes": {"end": 82.5, "callback": null, "doc": null, "tags": [], "start": 0, "id": "0e6b68f4-f562-4258-8d3b-b7112d139569"}, "type": "Range1d", "id": "0e6b68f4-f562-4258-8d3b-b7112d139569"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "24b74690-0430-4b30-890f-7afa5ef93d5e"}, "tags": [], "doc": null, "selection_glyph": null, "id": "ba7ead4e-6f24-4429-9edd-d704c03c8ebb", "glyph": {"type": "Rect", "id": "15cec81b-12ab-4c57-98cb-90f95e2e0fcb"}}, "type": "GlyphRenderer", "id": "ba7ead4e-6f24-4429-9edd-d704c03c8ebb"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "c9aba8b6-2afe-4a4b-9485-72b7019c79b5"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "55fb7bcb-8448-4923-a7d7-c0a12c87c453"}, "ticker": {"type": "CategoricalTicker", "id": "05ebadde-8ee2-41e0-b1b0-29770f68c189"}, "id": "1f31b3db-2d2b-4cc9-bdc7-06edae255d61"}, "type": "CategoricalAxis", "id": "1f31b3db-2d2b-4cc9-bdc7-06edae255d61"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "7db7d78f-5eaf-4100-8981-4e66134f1a79"}, "type": "Rect", "id": "7db7d78f-5eaf-4100-8981-4e66134f1a79"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "4f7d7a24-f0fa-4f34-a4c6-1a6b4d5e8fcd"}, "type": "Rect", "id": "4f7d7a24-f0fa-4f34-a4c6-1a6b4d5e8fcd"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "4b0f98bd-9e04-47d9-8bd8-694de028404a"}, "tags": [], "doc": null, "selection_glyph": null, "id": "b90fe00c-9ebc-45f1-8d9c-e8563110f329", "glyph": {"type": "Rect", "id": "902645da-864e-4527-af25-c0a80098809c"}}, "type": "GlyphRenderer", "id": "b90fe00c-9ebc-45f1-8d9c-e8563110f329"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "11c289b7-f3c8-4348-b5e1-ca7a3660ad4f"}, "tags": [], "doc": null, "selection_glyph": null, "id": "76e9e23b-9d1c-4a33-8f09-1da03107e3aa", "glyph": {"type": "Rect", "id": "df9cd4cb-16bd-48bd-8f8d-e6d60a25eeb2"}}, "type": "GlyphRenderer", "id": "76e9e23b-9d1c-4a33-8f09-1da03107e3aa"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "8ce1e0ba-20c4-4522-b470-447e0cfa93f0"}, "type": "Rect", "id": "8ce1e0ba-20c4-4522-b470-447e0cfa93f0"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "d0c9ca69-8b33-4d0f-877b-a23be0a4be1c"}, "type": "Rect", "id": "d0c9ca69-8b33-4d0f-877b-a23be0a4be1c"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [4.0, 20.0, 14.0, 7.5, 3.5], "Platform": [8, 40, 28, 15, 7], "catFx-Team": ["N/A:0.666666666667", "1 = little impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["N/A", "1 = little impact", "2", "3", "4 = most impact"], "midPlatform": [4.0, 20.0, 14.0, 7.5, 3.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [18.0, 77.0, 52.0, 28.0, 20.0], "catPlatform": ["N/A:0.333333333333", "1 = little impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [13.0, 58.5, 40.0, 21.5, 13.5], "midFx-Team": [5.0, 18.5, 12.0, 6.5, 6.5], "Fx-Team": [10, 37, 24, 13, 13]}, "id": "8bf057f3-0522-4b78-aee0-e3364bce39c6"}, "type": "ColumnDataSource", "id": "8bf057f3-0522-4b78-aee0-e3364bce39c6"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "3437ad23-aec2-4899-af88-a9284302ec7f"}, "tags": [], "doc": null, "selection_glyph": null, "id": "10b4ebab-3676-4a83-bef3-98592e8774fb", "glyph": {"type": "Rect", "id": "68f996a4-c7e4-4faf-b95b-efa7a8fca723"}}, "type": "GlyphRenderer", "id": "10b4ebab-3676-4a83-bef3-98592e8774fb"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "563861ed-4b30-4bb1-ad40-24439fe897a8"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "043ce065-5084-4b8c-8670-114686fa9b18"}, "ticker": {"type": "BasicTicker", "id": "a9b1a95f-601b-44cd-9a7e-0fe14d1ed422"}, "id": "f6ca85fa-37aa-400a-b6a8-2a51d4c1af53"}, "type": "LinearAxis", "id": "f6ca85fa-37aa-400a-b6a8-2a51d4c1af53"}, {"attributes": {"callback": null, "factors": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "8ffdaab9-71f7-43eb-9635-937b813897e2"}, "type": "FactorRange", "id": "8ffdaab9-71f7-43eb-9635-937b813897e2"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "11949ae0-856e-45f2-874d-c82c2cc92ac0"}, "orientation": "top_left", "tags": [], "doc": null, "id": "e3926dbd-d3b6-47eb-80ae-82c39931ad1b", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "1d97628e-d899-45c6-ac7b-51aa80e27483"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "09f19681-1f00-4ce0-8aac-437f30dec614"}]]]}, "type": "Legend", "id": "e3926dbd-d3b6-47eb-80ae-82c39931ad1b"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a05e5655-b828-4862-a09d-654ec6d29afd"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "38040b43-c42d-4002-a26b-ff4c59bb741d"}, "ticker": {"type": "BasicTicker", "id": "914c6244-5b26-46a9-9bd9-57c3b688701e"}, "id": "eba7e37b-150a-4ec0-be47-dd6e4e9028f1"}, "type": "LinearAxis", "id": "eba7e37b-150a-4ec0-be47-dd6e4e9028f1"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "1 = least impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "0ecbf9b4-9374-4c1b-bcc7-abdf287b7e25"}, "type": "FactorRange", "id": "0ecbf9b4-9374-4c1b-bcc7-abdf287b7e25"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "31a2cbb8-ff78-48bc-b678-5eb557b71670"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "7b3081a6-b806-4983-9ab2-2c072efb6319"}, "ticker": {"type": "BasicTicker", "id": "cffd5b30-b161-496f-aca3-7efa97f83d1d"}, "id": "261b23c6-24d4-47c3-bb7f-dc15f5cf49db"}, "type": "LinearAxis", "id": "261b23c6-24d4-47c3-bb7f-dc15f5cf49db"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "219d1c93-23df-4582-8adc-7e8ea1246cd6"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "00331d20-6200-4fd2-a959-320181ed22f8"}, "ticker": {"type": "CategoricalTicker", "id": "8c6de0d7-665d-4113-8dc9-d349c2cb732a"}, "id": "2eaaa94f-febe-4420-8cde-0640cc039cfe"}, "type": "CategoricalAxis", "id": "2eaaa94f-febe-4420-8cde-0640cc039cfe"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "b8f0993b-8df4-4a1c-8aa4-4dc016baa0ed"}, "type": "Rect", "id": "b8f0993b-8df4-4a1c-8aa4-4dc016baa0ed"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "cede2d46-bc79-4641-b404-e38d39899c5f"}, "type": "Rect", "id": "cede2d46-bc79-4641-b404-e38d39899c5f"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "98751bbd-988d-479e-8161-c7f9e1fae0f7"}, "type": "Rect", "id": "98751bbd-988d-479e-8161-c7f9e1fae0f7"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "08dc0bdd-e8ee-44b1-af01-2ecb09219fac"}, "tags": [], "doc": null, "selection_glyph": null, "id": "257cc878-2b37-44ff-9d05-6c8966a1d5d7", "glyph": {"type": "Rect", "id": "81ab62bc-09e2-406f-a570-1f221664efb6"}}, "type": "GlyphRenderer", "id": "257cc878-2b37-44ff-9d05-6c8966a1d5d7"}, {"attributes": {"callback": null, "factors": ["No", "Yes"], "doc": null, "tags": [], "id": "e2092c0f-64df-4e30-9f9e-0f1dedde7e3a"}, "type": "FactorRange", "id": "e2092c0f-64df-4e30-9f9e-0f1dedde7e3a"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "dbc32cfa-298c-497a-a216-5c36cd76e942"}, "type": "Rect", "id": "dbc32cfa-298c-497a-a216-5c36cd76e942"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ab788251-b12b-4ac1-8f06-309a94a3e42e"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "137165c8-e64f-4fa3-af95-cc88d1b522f2"}, "id": "9566334a-f05f-4886-8b42-c28067a7f556"}, "type": "Grid", "id": "9566334a-f05f-4886-8b42-c28067a7f556"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "f0491a87-8728-47a9-813c-3f2c0bd6a593"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "2f91d1e6-555b-438f-80b6-960a6bdb5cca"}, "id": "c32dd572-d26d-4379-9887-017cf5d8988e"}, "type": "Grid", "id": "c32dd572-d26d-4379-9887-017cf5d8988e"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "e399ad8d-a677-413e-b2f1-e506fdd38748"}, "type": "Rect", "id": "e399ad8d-a677-413e-b2f1-e506fdd38748"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "f9636d21-4eb0-4db7-aac0-240b1ee06872"}, "tags": [], "doc": null, "selection_glyph": null, "id": "27b97026-aa7c-4f96-8f6d-9402966d6738", "glyph": {"type": "Rect", "id": "7c717be5-14f3-4fc0-bb91-baea7f2522a7"}}, "type": "GlyphRenderer", "id": "27b97026-aa7c-4f96-8f6d-9402966d6738"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [5.5, 33.5, 3.0, 1.0, 6.5], "Platform": [11, 67, 6, 2, 13], "catFx-Team": ["N/A:0.666666666667", "1 = least impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "midPlatform": [5.5, 33.5, 3.0, 1.0, 6.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [21.0, 110.0, 16.0, 15.0, 31.0], "catPlatform": ["N/A:0.333333333333", "1 = least impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [16.0, 88.5, 11.0, 8.5, 22.0], "midFx-Team": [5.0, 21.5, 5.0, 6.5, 9.0], "Fx-Team": [10, 43, 10, 13, 18]}, "id": "571b60e3-a940-47dc-834b-f80ea6cee636"}, "type": "ColumnDataSource", "id": "571b60e3-a940-47dc-834b-f80ea6cee636"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "2fcff337-0b19-48f7-90d6-b153f095dd3c"}, "type": "Rect", "id": "2fcff337-0b19-48f7-90d6-b153f095dd3c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "7808946e-3b7d-4351-9671-294b782a031e"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "b1f12c70-aec8-4d98-ab10-c71dc8c32f52"}, "ticker": {"type": "BasicTicker", "id": "c9fcc38a-3584-4bc4-a7d2-f73c302ff141"}, "id": "30e23414-4e1f-4d9b-b917-dad4aa71066e"}, "type": "LinearAxis", "id": "30e23414-4e1f-4d9b-b917-dad4aa71066e"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "f48a2fba-a132-4113-9594-5160f229c393"}, "type": "BasicTicker", "id": "f48a2fba-a132-4113-9594-5160f229c393"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "26f31889-4207-4e41-827a-2e0b693a7197"}, "type": "Rect", "id": "26f31889-4207-4e41-827a-2e0b693a7197"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "614333e2-a8c0-44e6-92b8-e0bbd3d4d6ab"}, "type": "BasicTicker", "id": "614333e2-a8c0-44e6-92b8-e0bbd3d4d6ab"}, {"attributes": {"doc": null, "id": "647579c5-dd60-40a8-838e-1813b81bf520", "tags": []}, "type": "BasicTickFormatter", "id": "647579c5-dd60-40a8-838e-1813b81bf520"}, {"attributes": {"doc": null, "id": "bfb01253-fd5d-44af-b7e7-1dbc2dae1019", "tags": []}, "type": "CategoricalTickFormatter", "id": "bfb01253-fd5d-44af-b7e7-1dbc2dae1019"}, {"attributes": {"doc": null, "id": "78a3cd79-1777-453c-96e2-010b508dca74", "tags": []}, "type": "CategoricalTickFormatter", "id": "78a3cd79-1777-453c-96e2-010b508dca74"}, {"attributes": {"doc": null, "id": "7abacabb-8534-427e-aa0f-7d928828be51", "tags": []}, "type": "CategoricalTickFormatter", "id": "7abacabb-8534-427e-aa0f-7d928828be51"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "3e236193-d476-4b3f-a2b6-003bd0ea6fbb"}, "tags": [], "doc": null, "selection_glyph": null, "id": "365e04c6-a612-468b-bf72-c84df6c3fcca", "glyph": {"type": "Rect", "id": "dfb267b5-3c27-40cd-9276-6ee007f47fed"}}, "type": "GlyphRenderer", "id": "365e04c6-a612-468b-bf72-c84df6c3fcca"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "6be1aa92-897c-4668-84e4-f15ee16ea8c4"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "3c88ae66-237d-47a5-aff5-a4711ed590bf"}, "ticker": {"type": "BasicTicker", "id": "4b647213-eb9a-46ca-809d-dd7c46e55101"}, "id": "765f6d23-8d2e-4fbd-bf3f-6c74c3418fda"}, "type": "LinearAxis", "id": "765f6d23-8d2e-4fbd-bf3f-6c74c3418fda"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [2.0, 3.0, 6.5, 13.0, 25.0], "Platform": [4, 6, 13, 26, 50], "catFx-Team": ["N/A:0.666666666667", "1 = least impactful:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impactful:0.666666666667"], "cat": ["N/A", "1 = least impactful", "2", "3", "4 = most impactful"], "midPlatform": [2.0, 3.0, 6.5, 13.0, 25.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [12.0, 33.0, 40.0, 58.0, 55.0], "catPlatform": ["N/A:0.333333333333", "1 = least impactful:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impactful:0.333333333333"], "stackedFx-Team": [8.0, 19.5, 26.5, 42.0, 52.5], "midFx-Team": [4.0, 13.5, 13.5, 16.0, 2.5], "Fx-Team": [8, 27, 27, 32, 5]}, "id": "10eaf7bf-d428-4114-b040-2a63835d1942"}, "type": "ColumnDataSource", "id": "10eaf7bf-d428-4114-b040-2a63835d1942"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "61a335cc-400d-4dbb-8cc8-b8b5640d7ef8"}, "type": "ToolEvents", "id": "61a335cc-400d-4dbb-8cc8-b8b5640d7ef8"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "d3af0e6f-bb09-4aab-b40a-52941c03c585"}, "type": "BasicTicker", "id": "d3af0e6f-bb09-4aab-b40a-52941c03c585"}, {"attributes": {"doc": null, "id": "67492b9f-60db-4c5d-ac65-b43d8e090695", "tags": []}, "type": "BasicTickFormatter", "id": "67492b9f-60db-4c5d-ac65-b43d8e090695"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "fbdca56e-018f-4325-9db9-eb493882cc30"}, "tags": [], "doc": null, "selection_glyph": null, "id": "b4bf40fb-b3a1-4def-b05f-5f531ba48f20", "glyph": {"type": "Rect", "id": "0b9053cc-95e2-4fc9-8e4a-cc41e192e621"}}, "type": "GlyphRenderer", "id": "b4bf40fb-b3a1-4def-b05f-5f531ba48f20"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "f11bf09f-cca3-4310-9dbd-8a075a6b7d4e"}, "tags": [], "doc": null, "selection_glyph": null, "id": "66a1122d-0d3b-437a-a291-a4ccfafc700c", "glyph": {"type": "Rect", "id": "8e6f8144-42c7-411e-91f9-588c4fb6ad0d"}}, "type": "GlyphRenderer", "id": "66a1122d-0d3b-437a-a291-a4ccfafc700c"}, {"attributes": {"doc": null, "id": "91afd29b-974b-46b1-a9a8-fc69dce13dcf", "tags": []}, "type": "BasicTickFormatter", "id": "91afd29b-974b-46b1-a9a8-fc69dce13dcf"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [4.0, 17.5, 17.0, 7.0, 3.5], "Platform": [8, 35, 34, 14, 7], "catFx-Team": ["N/A:0.666666666667", "1 = little impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["N/A", "1 = little impact", "2", "3", "4 = most impact"], "midPlatform": [4.0, 17.5, 17.0, 7.0, 3.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [16.0, 75.0, 63.0, 19.0, 20.0], "catPlatform": ["N/A:0.333333333333", "1 = little impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [12.0, 55.0, 48.5, 16.5, 13.5], "midFx-Team": [4.0, 20.0, 14.5, 2.5, 6.5], "Fx-Team": [8, 40, 29, 5, 13]}, "id": "d127fde1-9ed2-480c-9583-df4a360c9a51"}, "type": "ColumnDataSource", "id": "d127fde1-9ed2-480c-9583-df4a360c9a51"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [6.0, 13.5, 14.0, 10.0, 5.5], "Platform": [12, 27, 28, 20, 11], "catFx-Team": ["1 - no impact:0.666666666667", "2 - little impact:0.666666666667", "3 - a fair amount of impact:0.666666666667", "4 - a significant amount of impact:0.666666666667", "5 - an extremely frustrating amount of impact:0.666666666667"], "cat": ["1 - no impact", "2 - little impact", "3 - a fair amount of impact", "4 - a significant amount of impact", "5 - an extremely frustrating amount of impact"], "midPlatform": [6.0, 13.5, 14.0, 10.0, 5.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [14.0, 51.0, 60.0, 41.0, 29.0], "catPlatform": ["1 - no impact:0.333333333333", "2 - little impact:0.333333333333", "3 - a fair amount of impact:0.333333333333", "4 - a significant amount of impact:0.333333333333", "5 - an extremely frustrating amount of impact:0.333333333333"], "stackedFx-Team": [13.0, 39.0, 44.0, 30.5, 20.0], "midFx-Team": [1.0, 12.0, 16.0, 10.5, 9.0], "Fx-Team": [2, 24, 32, 21, 18]}, "id": "b2392387-88d1-4763-b858-fec87e036077"}, "type": "ColumnDataSource", "id": "b2392387-88d1-4763-b858-fec87e036077"}, {"attributes": {"doc": null, "id": "907cdbe5-ef8a-466e-9719-d302130ae4f4", "tags": []}, "type": "CategoricalTicker", "id": "907cdbe5-ef8a-466e-9719-d302130ae4f4"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "718dead2-5755-4edf-837a-42d0de0d282a"}, "type": "ToolEvents", "id": "718dead2-5755-4edf-837a-42d0de0d282a"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "93a679cb-8fb6-4108-923a-b037ee207d1c"}, "type": "Rect", "id": "93a679cb-8fb6-4108-923a-b037ee207d1c"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "ea9e7e39-a58a-4d67-9a17-646e79ff9bac"}, "type": "Rect", "id": "ea9e7e39-a58a-4d67-9a17-646e79ff9bac"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "4b647213-eb9a-46ca-809d-dd7c46e55101"}, "type": "BasicTicker", "id": "4b647213-eb9a-46ca-809d-dd7c46e55101"}, {"attributes": {"doc": null, "id": "a1ace8f6-6570-41ef-8a0d-c12013fca169", "tags": []}, "type": "CategoricalTicker", "id": "a1ace8f6-6570-41ef-8a0d-c12013fca169"}, {"subtype": "Chart", "type": "Plot", "id": "1ad8e43e-3591-44c6-ac87-a667a2afa698", "attributes": {"x_range": {"type": "FactorRange", "id": "79ae9144-580a-4dac-9187-0c9778724bb8"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "cef0ab8f-ee2a-4f16-846f-adc139888217"}, "title": "How satisfied are you with the following items at Mozilla? [Local tools for editing code (IDE support, autocomplete tools)]", "renderers": [{"type": "CategoricalAxis", "id": "6c1fa5a4-53b0-41da-8fe8-1b1a80590542"}, {"type": "LinearAxis", "id": "9d010036-ea4e-4482-ac8b-0baa1fda264f"}, {"type": "Grid", "id": "2cf9456f-f76d-42bd-a558-60f46a3e9ecb"}, {"type": "GlyphRenderer", "id": "15484022-03ab-4534-9951-3c85e757eeae"}, {"type": "GlyphRenderer", "id": "c72c613c-3782-45dc-9461-c55d21532517"}, {"type": "Legend", "id": "9e688d64-1024-4901-89c9-6cdfb2e08ace"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "461a28fa-7f03-4c8d-9b5b-3e3b6b2d207c"}, "plot_height": 560, "doc": null, "id": "1ad8e43e-3591-44c6-ac87-a667a2afa698", "tools": [], "below": [{"type": "CategoricalAxis", "id": "6c1fa5a4-53b0-41da-8fe8-1b1a80590542"}], "left": [{"type": "LinearAxis", "id": "9d010036-ea4e-4482-ac8b-0baa1fda264f"}]}}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "902645da-864e-4527-af25-c0a80098809c"}, "type": "Rect", "id": "902645da-864e-4527-af25-c0a80098809c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "9a8f6713-a7f2-486f-b470-eb14124ed16f"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "a66cec9e-a5d8-46f0-bc59-f71ddb258a19"}, "ticker": {"type": "BasicTicker", "id": "a27289a9-6b42-4174-b4a0-66dfffd65955"}, "id": "b7149849-dfa8-44b9-82d3-12f99174ad49"}, "type": "LinearAxis", "id": "b7149849-dfa8-44b9-82d3-12f99174ad49"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "fe116632-d966-4359-90ea-bca0ad32379e"}, "type": "ToolEvents", "id": "fe116632-d966-4359-90ea-bca0ad32379e"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "31e56254-66df-4dad-862b-f6660ea76c0f"}, "tags": [], "doc": null, "selection_glyph": null, "id": "a1a0c64b-6350-40a4-a7d7-a729e7e4a3f1", "glyph": {"type": "Rect", "id": "4a704972-1df4-4656-a1ff-6ea9b718304a"}}, "type": "GlyphRenderer", "id": "a1a0c64b-6350-40a4-a7d7-a729e7e4a3f1"}, {"subtype": "Chart", "type": "Plot", "id": "d0d308b0-25e7-44c6-a48c-2a7590f5993a", "attributes": {"x_range": {"type": "FactorRange", "id": "330ac903-a3e6-485f-a9f4-af164868e8bd"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "82b3cb09-54ff-4193-9a49-c797c269c43c"}, "title": "Thinking of the ways our test automation works in continuous integration, rank the following potential improvements in terms of their impact on your productivity. [Make it easier to create new test harnesses and get them running in our automation]", "renderers": [{"type": "CategoricalAxis", "id": "a51592d9-da25-4d63-a2d8-8a7b6aaffef2"}, {"type": "LinearAxis", "id": "e66f02d3-f6a6-4c1a-bbff-0fa5796e71f8"}, {"type": "Grid", "id": "a9778dcc-5638-4233-b2f7-9f58e505f96c"}, {"type": "GlyphRenderer", "id": "c2abcb8f-edfe-4012-8f10-eca26ab739b4"}, {"type": "GlyphRenderer", "id": "f259c54d-a3aa-4d02-b731-1611fecde1dc"}, {"type": "Legend", "id": "dd7f0d1f-504b-46f3-b876-d1c4a7154e74"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "efc8e972-2ff1-4f62-8ae1-2f9d9191c69b"}, "plot_height": 560, "doc": null, "id": "d0d308b0-25e7-44c6-a48c-2a7590f5993a", "tools": [], "below": [{"type": "CategoricalAxis", "id": "a51592d9-da25-4d63-a2d8-8a7b6aaffef2"}], "left": [{"type": "LinearAxis", "id": "e66f02d3-f6a6-4c1a-bbff-0fa5796e71f8"}]}}, {"attributes": {"doc": null, "id": "fc957b43-a204-4a32-9816-92e147dca500", "tags": []}, "type": "BasicTickFormatter", "id": "fc957b43-a204-4a32-9816-92e147dca500"}, {"attributes": {"doc": null, "id": "8bdea3ef-a422-4b07-b638-f822407810be", "tags": []}, "type": "BasicTickFormatter", "id": "8bdea3ef-a422-4b07-b638-f822407810be"}, {"subtype": "Chart", "type": "Plot", "id": "b576d1a0-61b4-4617-b798-6e12969f4a51", "attributes": {"x_range": {"type": "FactorRange", "id": "ae6bdd16-ed0f-4e3c-a364-b5ef4c49cee1"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "923e17a4-180e-40aa-8d66-2e589af9a404"}, "title": "How satisfied are you with the following aspects of MozReview? [Understanding the state/status of reviews and reviewers]", "renderers": [{"type": "CategoricalAxis", "id": "3b7f631e-f9cc-4785-a34f-e71f4afb4865"}, {"type": "LinearAxis", "id": "eef13de4-2dd1-4507-bdfd-c2c648c9acfb"}, {"type": "Grid", "id": "861a6efe-8d3d-449e-892e-5978f811486c"}, {"type": "GlyphRenderer", "id": "e1113e67-01f6-48c0-b598-34be37ec3190"}, {"type": "GlyphRenderer", "id": "eed8c028-2782-4918-a330-f67ecc3175ab"}, {"type": "Legend", "id": "156c7e1f-ee65-4adb-9c50-aa1086e8f969"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "84278270-36f0-4b61-b641-a2874e26fe94"}, "plot_height": 560, "doc": null, "id": "b576d1a0-61b4-4617-b798-6e12969f4a51", "tools": [], "below": [{"type": "CategoricalAxis", "id": "3b7f631e-f9cc-4785-a34f-e71f4afb4865"}], "left": [{"type": "LinearAxis", "id": "eef13de4-2dd1-4507-bdfd-c2c648c9acfb"}]}}, {"attributes": {"doc": null, "id": "1baa39b4-ca01-4ef7-baf7-9b38c757e936", "tags": []}, "type": "CategoricalTickFormatter", "id": "1baa39b4-ca01-4ef7-baf7-9b38c757e936"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "77d1169c-0b2a-4a20-9899-1d963b34c3b9"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "759bc4c3-3f29-4f74-aefd-aa8ce4beee7b"}, "id": "a02bb240-eb63-4fb5-b106-e896e04edf76"}, "type": "Grid", "id": "a02bb240-eb63-4fb5-b106-e896e04edf76"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a0686fbe-3de2-41ce-92a9-c9e525d59586"}, "orientation": "top_left", "tags": [], "doc": null, "id": "aff83227-2ea3-489b-919f-ff1887953e34", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "a13e2ac6-53b6-4d06-9e48-8a6a6371f5d6"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "e25dc41f-6174-44f0-9b1c-0500c8e1db86"}]]]}, "type": "Legend", "id": "aff83227-2ea3-489b-919f-ff1887953e34"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "f019de16-1599-476f-8dbc-d13249918fe0"}, "type": "BasicTicker", "id": "f019de16-1599-476f-8dbc-d13249918fe0"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2], "stackedPlatform": [4.0, 19.5, 17.0, 8.5], "Platform": [8, 39, 34, 17], "catFx-Team": ["N/A:0.666666666667", "Keep about the same:0.666666666667", "Increase investment:0.666666666667", "Drastically increase investment:0.666666666667"], "cat": ["N/A", "Keep about the same", "Increase investment", "Drastically increase investment"], "midPlatform": [4.0, 19.5, 17.0, 8.5], "width": [0.8, 0.8, 0.8, 0.8], "zero": [8.0, 60.0, 90.0, 38.0], "catPlatform": ["N/A:0.333333333333", "Keep about the same:0.333333333333", "Increase investment:0.333333333333", "Drastically increase investment:0.333333333333"], "stackedFx-Team": [8.0, 49.5, 62.0, 27.5], "midFx-Team": [0.0, 10.5, 28.0, 10.5], "Fx-Team": [0, 21, 56, 21]}, "id": "696ccf69-5943-4ee6-bb2d-fb5617f2971c"}, "type": "ColumnDataSource", "id": "696ccf69-5943-4ee6-bb2d-fb5617f2971c"}, {"attributes": {"doc": null, "id": "b5a25993-c266-4103-8951-1f35c94da90b", "tags": []}, "type": "BasicTickFormatter", "id": "b5a25993-c266-4103-8951-1f35c94da90b"}, {"attributes": {"end": 40.7, "callback": null, "doc": null, "tags": [], "start": 0, "id": "09b3c7fa-70ef-43af-9929-001ec8e893df"}, "type": "Range1d", "id": "09b3c7fa-70ef-43af-9929-001ec8e893df"}, {"attributes": {"doc": null, "id": "6821067b-4ff0-4add-aefb-d3cd67b00ace", "tags": []}, "type": "CategoricalTickFormatter", "id": "6821067b-4ff0-4add-aefb-d3cd67b00ace"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "84e28c38-2400-4cd7-bb81-74fd76644ffa"}, "tags": [], "doc": null, "selection_glyph": null, "id": "6473a91f-8cec-4750-be3d-b7b146bc329a", "glyph": {"type": "Rect", "id": "96f6eedc-c588-41b9-8704-d4a172075ee0"}}, "type": "GlyphRenderer", "id": "6473a91f-8cec-4750-be3d-b7b146bc329a"}, {"attributes": {"doc": null, "id": "92d8d680-6952-458c-a018-90f227ca73a6", "tags": []}, "type": "BasicTickFormatter", "id": "92d8d680-6952-458c-a018-90f227ca73a6"}, {"attributes": {"end": 40.7, "callback": null, "doc": null, "tags": [], "start": 0, "id": "640a4c9c-2909-45fd-9b7d-86b30ccd9f52"}, "type": "Range1d", "id": "640a4c9c-2909-45fd-9b7d-86b30ccd9f52"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "e1dc57c7-2233-4a41-b3e0-32ab89541be0"}, "orientation": "top_left", "tags": [], "doc": null, "id": "8e321889-2523-4620-b62b-a72137e2cc36", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "cbd961a7-2e14-4d25-b3f0-1c2700d71f20"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "f9d24373-01a2-4aec-a6ab-8b44950e070f"}]]]}, "type": "Legend", "id": "8e321889-2523-4620-b62b-a72137e2cc36"}, {"attributes": {"doc": null, "id": "9bb9fb34-1546-44b6-8766-6f80a95ddb85", "tags": []}, "type": "CategoricalTicker", "id": "9bb9fb34-1546-44b6-8766-6f80a95ddb85"}, {"attributes": {"doc": null, "id": "65c06bda-0027-4df1-b146-72549fa55e25", "tags": []}, "type": "BasicTickFormatter", "id": "65c06bda-0027-4df1-b146-72549fa55e25"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A", "Extremely dissatisfied", "Below average", "Average", "Above average"], "doc": null, "tags": [], "id": "3fa5eeb1-7a5f-47f4-a805-2dfdf2da2bfb"}, "type": "FactorRange", "id": "3fa5eeb1-7a5f-47f4-a805-2dfdf2da2bfb"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ab788251-b12b-4ac1-8f06-309a94a3e42e"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "57c1f452-6864-4271-a137-f0bce7812c2b"}, "ticker": {"type": "BasicTicker", "id": "137165c8-e64f-4fa3-af95-cc88d1b522f2"}, "id": "1497bacc-1ae0-4ae0-8c15-b891f8c2913b"}, "type": "LinearAxis", "id": "1497bacc-1ae0-4ae0-8c15-b891f8c2913b"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "3ac278db-f5f1-4cd1-8cbc-611f1667030a"}, "type": "ToolEvents", "id": "3ac278db-f5f1-4cd1-8cbc-611f1667030a"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "6c537958-bcc3-442d-a2f7-2d9593d56919"}, "type": "ToolEvents", "id": "6c537958-bcc3-442d-a2f7-2d9593d56919"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "5e709d67-4e9c-4c2e-97aa-25cd7fb68266"}, "type": "BasicTicker", "id": "5e709d67-4e9c-4c2e-97aa-25cd7fb68266"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "31a2cbb8-ff78-48bc-b678-5eb557b71670"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "8da56dd8-417b-4367-8a57-cc295e89d7b2"}, "ticker": {"type": "CategoricalTicker", "id": "744f62ae-a4da-45f6-9bab-1da66b899375"}, "id": "205bf182-3638-4e6f-8071-e91ada784e3a"}, "type": "CategoricalAxis", "id": "205bf182-3638-4e6f-8071-e91ada784e3a"}, {"attributes": {"end": 47.300000000000004, "callback": null, "doc": null, "tags": [], "start": 0, "id": "8d23dfe9-6514-4999-b0f1-d22f583a327e"}, "type": "Range1d", "id": "8d23dfe9-6514-4999-b0f1-d22f583a327e"}, {"attributes": {"doc": null, "id": "40169974-6fb7-4be6-880f-996bc54b0c11", "tags": []}, "type": "CategoricalTickFormatter", "id": "40169974-6fb7-4be6-880f-996bc54b0c11"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "83c80902-8e88-423c-a67b-be9b3a10b149"}, "orientation": "top_left", "tags": [], "doc": null, "id": "e710e741-0213-41a0-908d-dce4a3e3b22c", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "98f0356a-43e5-453e-9e12-0e230a19b94b"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "51b597f8-a734-47bb-a85c-5183a3398411"}]]]}, "type": "Legend", "id": "e710e741-0213-41a0-908d-dce4a3e3b22c"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "1509d362-db1c-4e63-a6db-1d80287161d6"}, "tags": [], "doc": null, "selection_glyph": null, "id": "268014a1-5e51-476e-a11a-303778e13ae5", "glyph": {"type": "Rect", "id": "550ea265-e0dd-4949-b2dd-cacb1cb1a4df"}}, "type": "GlyphRenderer", "id": "268014a1-5e51-476e-a11a-303778e13ae5"}, {"attributes": {"doc": null, "id": "4bb3ba8f-1412-44b7-8132-9d514a298533", "tags": []}, "type": "BasicTickFormatter", "id": "4bb3ba8f-1412-44b7-8132-9d514a298533"}, {"attributes": {"doc": null, "id": "9035afe7-db18-457a-a90f-93e02a6dec67", "tags": []}, "type": "CategoricalTickFormatter", "id": "9035afe7-db18-457a-a90f-93e02a6dec67"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2], "stackedPlatform": [2.5, 17.0, 13.0, 16.5], "Platform": [5, 34, 26, 33], "catFx-Team": ["All Other Responses:0.666666666667", "I know enough to do just the basics:0.666666666667", "Fairly competent (I still get stuck from time to time):0.666666666667", "Highly competent:0.666666666667"], "cat": ["All Other Responses", "I know enough to do just the basics", "Fairly competent (I still get stuck from time to time)", "Highly competent"], "midPlatform": [2.5, 17.0, 13.0, 16.5], "width": [0.8, 0.8, 0.8, 0.8], "zero": [5.0, 66.0, 58.0, 68.0], "catPlatform": ["All Other Responses:0.333333333333", "I know enough to do just the basics:0.333333333333", "Fairly competent (I still get stuck from time to time):0.333333333333", "Highly competent:0.333333333333"], "stackedFx-Team": [5.0, 50.0, 42.0, 50.5], "midFx-Team": [0.0, 16.0, 16.0, 17.5], "Fx-Team": [0, 32, 32, 35]}, "id": "622aa022-2fce-44fd-bdb6-55dc16000e27"}, "type": "ColumnDataSource", "id": "622aa022-2fce-44fd-bdb6-55dc16000e27"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "b8a7fd18-99b1-4c5d-b9d1-9c1fafdc38ef"}, "type": "ToolEvents", "id": "b8a7fd18-99b1-4c5d-b9d1-9c1fafdc38ef"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "74162ac3-65b8-4334-b03e-d75018411f0e"}, "tags": [], "doc": null, "selection_glyph": null, "id": "d39e109c-0b2e-4163-89e6-e755f63ca85a", "glyph": {"type": "Rect", "id": "ccb0bedc-b249-46c5-83dd-9ea16e4b4469"}}, "type": "GlyphRenderer", "id": "d39e109c-0b2e-4163-89e6-e755f63ca85a"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "d2c62929-ec40-4c4d-82a0-b16801f76c88"}, "type": "Rect", "id": "d2c62929-ec40-4c4d-82a0-b16801f76c88"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "751a430c-51b6-4d63-9593-734b36917545"}, "type": "Rect", "id": "751a430c-51b6-4d63-9593-734b36917545"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [5.5, 17.5, 13.0, 10.0, 3.0], "Platform": [11, 35, 26, 20, 6], "catFx-Team": ["N/A:0.666666666667", "1 = least impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "midPlatform": [5.5, 17.5, 13.0, 10.0, 3.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [19.0, 75.0, 58.0, 30.0, 11.0], "catPlatform": ["N/A:0.333333333333", "1 = least impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [15.0, 55.0, 42.0, 25.0, 8.5], "midFx-Team": [4.0, 20.0, 16.0, 5.0, 2.5], "Fx-Team": [8, 40, 32, 10, 5]}, "id": "a7465520-7a1a-47a5-ba09-26802fad745e"}, "type": "ColumnDataSource", "id": "a7465520-7a1a-47a5-ba09-26802fad745e"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "7b359874-a29d-471b-b392-49e8b423815c"}, "type": "Rect", "id": "7b359874-a29d-471b-b392-49e8b423815c"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "08dc0bdd-e8ee-44b1-af01-2ecb09219fac"}, "tags": [], "doc": null, "selection_glyph": null, "id": "1f9afa6a-2138-4d3a-b60b-b67930b1c2d0", "glyph": {"type": "Rect", "id": "ab66e2e3-e7a9-4711-aa48-88698f07a231"}}, "type": "GlyphRenderer", "id": "1f9afa6a-2138-4d3a-b60b-b67930b1c2d0"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "169b8b79-dac0-437c-8b81-9f6098e73ff1"}, "orientation": "top_left", "tags": [], "doc": null, "id": "39fcd32d-7ca1-4743-98bb-f6abd8499960", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "9fc5fb8f-a18f-49e0-b972-b911baeeff8b"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "2b1c0e21-6ec6-4dea-b690-0604779d5444"}]]]}, "type": "Legend", "id": "39fcd32d-7ca1-4743-98bb-f6abd8499960"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a58b9b9e-6cbd-4c91-86be-fba9d10cecb3"}, "orientation": "top_left", "tags": [], "doc": null, "id": "53b63967-4483-445f-9aa6-494d39e70c44", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "67e63629-51c4-4e7b-981b-55e60b745911"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "816bc19c-fdf2-485b-9c46-2f80e96a5fed"}]]]}, "type": "Legend", "id": "53b63967-4483-445f-9aa6-494d39e70c44"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ca660824-da9b-42c8-80f1-b629a907c373"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "94a59465-fabc-4d89-95c0-13072c1b46fa"}, "ticker": {"type": "CategoricalTicker", "id": "791830ed-69c3-45fb-8774-ad8a260283c6"}, "id": "1066d4ee-1ede-4115-99a1-1e26e01f6200"}, "type": "CategoricalAxis", "id": "1066d4ee-1ede-4115-99a1-1e26e01f6200"}, {"attributes": {"doc": null, "id": "744f62ae-a4da-45f6-9bab-1da66b899375", "tags": []}, "type": "CategoricalTicker", "id": "744f62ae-a4da-45f6-9bab-1da66b899375"}, {"attributes": {"end": 40.7, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "1037439e-79ef-4bb8-b0aa-e64f1832908b"}, "type": "Range1d", "id": "1037439e-79ef-4bb8-b0aa-e64f1832908b"}, {"subtype": "Chart", "type": "Plot", "id": "dfaf0425-af75-440f-9ce7-5ce53fcc97cc", "attributes": {"x_range": {"type": "FactorRange", "id": "6f24b680-7173-4a2f-8868-83c7bcd97ab8"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "c9783b95-bc69-4ca6-b0f5-7f80e2c3bc89"}, "title": "Thinking of running automated tests, rank the following potential improvements in terms of their impact on your productivity. [Make it easier to run B2G or Android emulator tests locally]", "renderers": [{"type": "CategoricalAxis", "id": "6b33e48b-9562-4614-8b9c-c640b21aa3a7"}, {"type": "LinearAxis", "id": "08855559-83f7-4e2c-963a-8f9a22d07496"}, {"type": "Grid", "id": "8df304e7-aea8-4cb9-8dc2-ad57d05e6d21"}, {"type": "GlyphRenderer", "id": "060a50a9-f521-4123-bf94-81aaf075111a"}, {"type": "GlyphRenderer", "id": "495ecdc6-29cb-40fa-b9f4-546f549bca2d"}, {"type": "Legend", "id": "6d83089c-8599-4567-9927-24813351fb3e"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "6f6e8855-f997-4380-a757-69a438b5df3c"}, "plot_height": 560, "doc": null, "id": "dfaf0425-af75-440f-9ce7-5ce53fcc97cc", "tools": [], "below": [{"type": "CategoricalAxis", "id": "6b33e48b-9562-4614-8b9c-c640b21aa3a7"}], "left": [{"type": "LinearAxis", "id": "08855559-83f7-4e2c-963a-8f9a22d07496"}]}}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "c7bd5301-e792-472a-8757-49beb4af8c27"}, "tags": [], "doc": null, "selection_glyph": null, "id": "b4180a18-96ec-4299-a6ac-989548b69a68", "glyph": {"type": "Rect", "id": "1b9335bc-b9ad-4170-9f68-076006aafabc"}}, "type": "GlyphRenderer", "id": "b4180a18-96ec-4299-a6ac-989548b69a68"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "4202c217-5c75-423d-8a68-89636f6fc90c"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "60ede4a5-a5e5-48b7-a3a2-ce78bceb9341"}, "id": "aeb79e7c-9dc8-4f59-9581-38ec916f8383"}, "type": "Grid", "id": "aeb79e7c-9dc8-4f59-9581-38ec916f8383"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "d251b8f6-edb9-4a44-b45d-158a16ff19a5"}, "type": "ToolEvents", "id": "d251b8f6-edb9-4a44-b45d-158a16ff19a5"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "C/C++", "HTML/CSS", "Java", "Javascript", "Python", "Rust"], "doc": null, "tags": [], "id": "6b95d5eb-1220-41d9-974c-7cfff9e45624"}, "type": "FactorRange", "id": "6b95d5eb-1220-41d9-974c-7cfff9e45624"}, {"attributes": {"callback": null, "factors": ["N/A", "1 = little impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "6f24b680-7173-4a2f-8868-83c7bcd97ab8"}, "type": "FactorRange", "id": "6f24b680-7173-4a2f-8868-83c7bcd97ab8"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "83c80902-8e88-423c-a67b-be9b3a10b149"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "266e4b98-2989-4d8d-9ffb-329f73f2239f"}, "id": "58c1990d-baf1-4958-b48a-562ce5af6343"}, "type": "Grid", "id": "58c1990d-baf1-4958-b48a-562ce5af6343"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "7fb895c0-0991-4ca7-ba92-5d291c293750"}, "tags": [], "doc": null, "selection_glyph": null, "id": "925f50a1-f7f1-4237-8672-39e892556e60", "glyph": {"type": "Rect", "id": "55bbe7be-f506-4bc4-a990-ad7087c2fe09"}}, "type": "GlyphRenderer", "id": "925f50a1-f7f1-4237-8672-39e892556e60"}, {"attributes": {"doc": null, "id": "a96cd5b6-fcc8-47ac-a5e2-6f4409cfdf79", "tags": []}, "type": "CategoricalTicker", "id": "a96cd5b6-fcc8-47ac-a5e2-6f4409cfdf79"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "550ea265-e0dd-4949-b2dd-cacb1cb1a4df"}, "type": "Rect", "id": "550ea265-e0dd-4949-b2dd-cacb1cb1a4df"}, {"attributes": {"end": 44.0, "callback": null, "doc": null, "tags": [], "start": 0, "id": "661f17f3-3e60-4c4b-a580-0eeab8becd39"}, "type": "Range1d", "id": "661f17f3-3e60-4c4b-a580-0eeab8becd39"}, {"attributes": {"doc": null, "id": "6bc09b48-0d5c-4fc8-84eb-1ad7d893707b", "tags": []}, "type": "CategoricalTicker", "id": "6bc09b48-0d5c-4fc8-84eb-1ad7d893707b"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "06c4ac21-160b-4179-9af8-a880c4ddfd3d"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "ed58b3c7-5a26-40b9-aa34-9a0ab605673a"}, "ticker": {"type": "BasicTicker", "id": "614333e2-a8c0-44e6-92b8-e0bbd3d4d6ab"}, "id": "f34abae4-280d-47af-b564-d366d5045164"}, "type": "LinearAxis", "id": "f34abae4-280d-47af-b564-d366d5045164"}, {"subtype": "Chart", "type": "Plot", "id": "06c4ac21-160b-4179-9af8-a880c4ddfd3d", "attributes": {"x_range": {"type": "FactorRange", "id": "3bbf6903-597e-47e6-a0f7-1ebdc3143f65"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "ea5ee080-4ffb-48d4-a6b2-f77bf195569f"}, "title": "Please rate your satisfaction with the following items. [hg.mozilla.org web interface functionality]", "renderers": [{"type": "CategoricalAxis", "id": "e0b7f644-c799-42c7-90b3-ed2d16fa40d7"}, {"type": "LinearAxis", "id": "f34abae4-280d-47af-b564-d366d5045164"}, {"type": "Grid", "id": "9e8d0ce2-e55b-4c23-95d7-32213e84d342"}, {"type": "GlyphRenderer", "id": "ef990697-6762-4b0d-860d-ff5b994503b4"}, {"type": "GlyphRenderer", "id": "7213f886-272e-4e55-89a9-c45800cfcc00"}, {"type": "Legend", "id": "7b54f530-d631-45b4-aaad-33019ebbb003"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "d37e3faf-ec25-42d1-8952-e1dfbf7c86fa"}, "plot_height": 560, "doc": null, "id": "06c4ac21-160b-4179-9af8-a880c4ddfd3d", "tools": [], "below": [{"type": "CategoricalAxis", "id": "e0b7f644-c799-42c7-90b3-ed2d16fa40d7"}], "left": [{"type": "LinearAxis", "id": "f34abae4-280d-47af-b564-d366d5045164"}]}}, {"subtype": "Chart", "type": "Plot", "id": "f4922c15-154c-41fa-9f38-f0df3b4cf579", "attributes": {"x_range": {"type": "FactorRange", "id": "06ef689b-d03f-4919-9e4e-6fe16722929c"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "10e8700a-a5ba-4ee1-960c-e2cad638b59f"}, "title": "How should Mozilla invest in the following Git related items? [git-cinnabar]", "renderers": [{"type": "CategoricalAxis", "id": "e0151f3a-6738-4f0c-8c47-a066caa58d01"}, {"type": "LinearAxis", "id": "079e7b7a-734c-4533-835f-75f979f51e01"}, {"type": "Grid", "id": "1ca44804-8390-4bfa-82b0-b4586d7b7c15"}, {"type": "GlyphRenderer", "id": "e0f8dada-a2c9-4be3-8720-69890679bed9"}, {"type": "GlyphRenderer", "id": "67693119-85f7-4b09-99dd-1b723bf1d717"}, {"type": "Legend", "id": "31a78165-faa3-4258-a9c8-dd04daa280f2"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "f5a44604-65aa-4728-9027-f4e342060930"}, "plot_height": 560, "doc": null, "id": "f4922c15-154c-41fa-9f38-f0df3b4cf579", "tools": [], "below": [{"type": "CategoricalAxis", "id": "e0151f3a-6738-4f0c-8c47-a066caa58d01"}], "left": [{"type": "LinearAxis", "id": "079e7b7a-734c-4533-835f-75f979f51e01"}]}}, {"attributes": {"doc": null, "id": "76fe6750-1dcc-4a79-948b-03767ae5017b", "tags": []}, "type": "CategoricalTickFormatter", "id": "76fe6750-1dcc-4a79-948b-03767ae5017b"}, {"attributes": {"doc": null, "id": "4b85314f-54cc-4031-9763-b8c2ec6829de", "tags": []}, "type": "CategoricalTicker", "id": "4b85314f-54cc-4031-9763-b8c2ec6829de"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "31e56254-66df-4dad-862b-f6660ea76c0f"}, "tags": [], "doc": null, "selection_glyph": null, "id": "5fc77cc8-6fa1-48ff-989a-51748cf787a2", "glyph": {"type": "Rect", "id": "4f533d56-af56-4041-94ed-b6bd6ddd1d76"}}, "type": "GlyphRenderer", "id": "5fc77cc8-6fa1-48ff-989a-51748cf787a2"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "83f11fa1-5179-41e0-b417-a29a9739ce58"}, "type": "BasicTicker", "id": "83f11fa1-5179-41e0-b417-a29a9739ce58"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "8618f888-e7c4-4685-b511-8aa7607b9e3a"}, "type": "BasicTicker", "id": "8618f888-e7c4-4685-b511-8aa7607b9e3a"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "bcdf84c6-a3fd-451a-b2b4-6d9a781e69e2"}, "type": "Rect", "id": "bcdf84c6-a3fd-451a-b2b4-6d9a781e69e2"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "b893cefb-ebda-4a84-8b61-4bc82ff401a6"}, "type": "Rect", "id": "b893cefb-ebda-4a84-8b61-4bc82ff401a6"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a0e5390f-1e01-4763-b57c-474d6ef45d45"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "3fe3590c-3041-4f84-9f23-3ee51fc30b01"}, "ticker": {"type": "CategoricalTicker", "id": "7ee0cf6d-27e2-488c-9ee3-a45e00f3778e"}, "id": "f3691b91-56bb-4478-b249-7b93d0ae80fb"}, "type": "CategoricalAxis", "id": "f3691b91-56bb-4478-b249-7b93d0ae80fb"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "6f29235a-6fc2-44b0-b165-09f7ab73dbc5"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "d18a911a-05b3-4eb1-b360-2e218c77cde5"}, "ticker": {"type": "CategoricalTicker", "id": "a0c11663-7275-4db1-b25d-2cb340499e2d"}, "id": "6a50838b-11f9-4072-90bf-87e8b6a66ef4"}, "type": "CategoricalAxis", "id": "6a50838b-11f9-4072-90bf-87e8b6a66ef4"}, {"attributes": {"callback": null, "factors": ["N/A", "1 = little impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "f31446a7-969b-4ed2-9409-50c384b991e6"}, "type": "FactorRange", "id": "f31446a7-969b-4ed2-9409-50c384b991e6"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "3d13b868-e736-488d-b5ae-f702b7bb6d91"}, "type": "ToolEvents", "id": "3d13b868-e736-488d-b5ae-f702b7bb6d91"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "65a6a88b-e376-461f-9824-09f145ca2c40"}, "type": "Rect", "id": "65a6a88b-e376-461f-9824-09f145ca2c40"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "7cbc46a2-abdb-489d-96ee-2fce123eeee1"}, "tags": [], "doc": null, "selection_glyph": null, "id": "09461497-7c6a-4c59-be1f-8f86ea4d35b9", "glyph": {"type": "Rect", "id": "7b359874-a29d-471b-b392-49e8b423815c"}}, "type": "GlyphRenderer", "id": "09461497-7c6a-4c59-be1f-8f86ea4d35b9"}, {"subtype": "Chart", "type": "Plot", "id": "5e3ed8a1-a0e8-4774-880e-8b769e8a18f0", "attributes": {"x_range": {"type": "FactorRange", "id": "055fc7ee-18fa-4192-be94-358f500000c0"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "8d23dfe9-6514-4999-b0f1-d22f583a327e"}, "title": "Thinking of the mozilla-central/Firefox build system, rank the following potential improvements in terms of their impact to your productivity. [Make incremental builds that don\u2019t touch C++ code much faster]", "renderers": [{"type": "CategoricalAxis", "id": "6b0bacd6-f2e0-4788-898f-3d66e16d7a42"}, {"type": "LinearAxis", "id": "c21b1be1-d71b-44bd-afb3-d133ad5d9652"}, {"type": "Grid", "id": "a8af74eb-486a-4597-b7f2-23cb0a08e6ca"}, {"type": "GlyphRenderer", "id": "433022f3-022f-4e74-b9be-a7c3845fdf1e"}, {"type": "GlyphRenderer", "id": "f50d2a04-0bf0-4fbc-a587-305a776541fd"}, {"type": "Legend", "id": "b59601ee-2665-4970-9eda-be6be7aec135"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "eada517f-02bb-43c7-895f-d5093b9cf974"}, "plot_height": 560, "doc": null, "id": "5e3ed8a1-a0e8-4774-880e-8b769e8a18f0", "tools": [], "below": [{"type": "CategoricalAxis", "id": "6b0bacd6-f2e0-4788-898f-3d66e16d7a42"}], "left": [{"type": "LinearAxis", "id": "c21b1be1-d71b-44bd-afb3-d133ad5d9652"}]}}, {"attributes": {"doc": null, "id": "ebb32c35-cd4c-43d9-b4ef-9d1975ff9f08", "tags": []}, "type": "CategoricalTickFormatter", "id": "ebb32c35-cd4c-43d9-b4ef-9d1975ff9f08"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "26f1bd84-61bb-4e58-a9cb-02ae5bed4b75"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "6b4444e5-5a7a-4f59-be0d-28c3f7e06ce7"}, "ticker": {"type": "CategoricalTicker", "id": "3f27d64b-630c-4cd0-9a80-7457ff7ca69e"}, "id": "7b5f5b15-7835-438c-b962-2fd15fa7ae55"}, "type": "CategoricalAxis", "id": "7b5f5b15-7835-438c-b962-2fd15fa7ae55"}, {"attributes": {"doc": null, "id": "86886235-c6ba-4cd2-9b37-fca3899709cf", "tags": []}, "type": "BasicTickFormatter", "id": "86886235-c6ba-4cd2-9b37-fca3899709cf"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "No impact / Not applicable", "A little impact", "Moderate impact", "Significant impact"], "doc": null, "tags": [], "id": "b6ccc4cf-5966-49fe-9bdd-8b00500a7b5e"}, "type": "FactorRange", "id": "b6ccc4cf-5966-49fe-9bdd-8b00500a7b5e"}, {"attributes": {"doc": null, "id": "b8d25c36-a54f-44ed-a3b5-7d755da8c6d0", "tags": []}, "type": "CategoricalTickFormatter", "id": "b8d25c36-a54f-44ed-a3b5-7d755da8c6d0"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "571b60e3-a940-47dc-834b-f80ea6cee636"}, "tags": [], "doc": null, "selection_glyph": null, "id": "676bd990-b6d2-4bf5-adbe-e4b44dc10fd1", "glyph": {"type": "Rect", "id": "ea9e7e39-a58a-4d67-9a17-646e79ff9bac"}}, "type": "GlyphRenderer", "id": "676bd990-b6d2-4bf5-adbe-e4b44dc10fd1"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "f1759c57-7dec-45f1-ade0-16934abce0db"}, "type": "Rect", "id": "f1759c57-7dec-45f1-ade0-16934abce0db"}, {"attributes": {"end": 51.7, "callback": null, "doc": null, "tags": [], "start": 0, "id": "41d1551b-69cc-41c9-842f-b5dcbde3eb96"}, "type": "Range1d", "id": "41d1551b-69cc-41c9-842f-b5dcbde3eb96"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "6773311c-cfb1-455c-98b7-72cd857e8950"}, "type": "ToolEvents", "id": "6773311c-cfb1-455c-98b7-72cd857e8950"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "02776478-701b-4368-9060-e7b70bed0081"}, "orientation": "top_left", "tags": [], "doc": null, "id": "4e6da67b-b715-45da-9557-5298722acb43", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "e9f6f871-5422-4b9e-ad23-950f95cc56a1"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "c501575f-2f06-4901-b5a8-1f74b586b072"}]]]}, "type": "Legend", "id": "4e6da67b-b715-45da-9557-5298722acb43"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "1cbe8503-b31e-4129-9913-6880a9f69c78"}, "type": "BasicTicker", "id": "1cbe8503-b31e-4129-9913-6880a9f69c78"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "0db9cdb5-f172-4aed-b2dd-2a8aaf8a7278"}, "tags": [], "doc": null, "selection_glyph": null, "id": "1a1e2f16-7052-41a5-93be-f9ebf39cadeb", "glyph": {"type": "Rect", "id": "c55712e1-d67c-4e56-a8df-155d6e82eb46"}}, "type": "GlyphRenderer", "id": "1a1e2f16-7052-41a5-93be-f9ebf39cadeb"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "c0211ed4-da00-466c-ac3c-358831743026"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "d12fb743-d676-450a-890a-bf5f4071e1e9"}, "ticker": {"type": "BasicTicker", "id": "1ba4cfb9-25c8-4cc7-a90b-a70e93b75563"}, "id": "e014463a-a1d7-4a5d-827e-80a5236b4b40"}, "type": "LinearAxis", "id": "e014463a-a1d7-4a5d-827e-80a5236b4b40"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "e4c06cfb-dde1-40a0-9b68-2da7d8f33ecb"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "858d445d-0a9d-423f-ad65-616ba8e32512"}, "id": "20d6c657-3e31-418a-873f-e20826c22368"}, "type": "Grid", "id": "20d6c657-3e31-418a-873f-e20826c22368"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "758b2f65-117f-48db-a194-b2391e90cc8f"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "7104dbef-f191-4afa-88a8-43c0b1f042d1"}, "ticker": {"type": "BasicTicker", "id": "2257ebae-6f61-4056-a247-054880696f3d"}, "id": "0789551d-5c59-4140-980b-83a85067c8ca"}, "type": "LinearAxis", "id": "0789551d-5c59-4140-980b-83a85067c8ca"}, {"subtype": "Chart", "type": "Plot", "id": "f0491a87-8728-47a9-813c-3f2c0bd6a593", "attributes": {"x_range": {"type": "FactorRange", "id": "4b90272e-2a44-4116-a9ca-5d61b713be9e"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "af4853ed-84f1-4dc5-8a12-f575b4f16d36"}, "title": "Please rate your satisfaction with the following items. [git-cinnabar]", "renderers": [{"type": "CategoricalAxis", "id": "68ac3659-5db3-4f08-a06b-3339ede6f0aa"}, {"type": "LinearAxis", "id": "e505db49-3780-49fe-8be6-23a3048f14a9"}, {"type": "Grid", "id": "c32dd572-d26d-4379-9887-017cf5d8988e"}, {"type": "GlyphRenderer", "id": "05beedb5-8720-4d60-a0fb-7c0ac0d142e1"}, {"type": "GlyphRenderer", "id": "02b51642-2a68-4f38-8c74-ee9869a97bb5"}, {"type": "Legend", "id": "20414e53-be7a-4b62-b9a5-eb5b0c4fe194"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "50664afb-1e66-41d0-8d0a-46dfe50cfa77"}, "plot_height": 560, "doc": null, "id": "f0491a87-8728-47a9-813c-3f2c0bd6a593", "tools": [], "below": [{"type": "CategoricalAxis", "id": "68ac3659-5db3-4f08-a06b-3339ede6f0aa"}], "left": [{"type": "LinearAxis", "id": "e505db49-3780-49fe-8be6-23a3048f14a9"}]}}, {"attributes": {"doc": null, "id": "a8f30599-97e5-421d-81fe-ab6b0d79da56", "tags": []}, "type": "CategoricalTicker", "id": "a8f30599-97e5-421d-81fe-ab6b0d79da56"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "08d112df-cc2f-434b-bc72-4b270fe5903f"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "31d695fd-dcdd-47bc-ab7e-19bb3f158fb4"}, "id": "71e4b069-1ad2-4b49-a32c-3499aeea7742"}, "type": "Grid", "id": "71e4b069-1ad2-4b49-a32c-3499aeea7742"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "a4e670fb-f11b-4ceb-a104-4333bad80652"}, "type": "Rect", "id": "a4e670fb-f11b-4ceb-a104-4333bad80652"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [11.0, 4.0, 6.0, 9.0, 12.0, 7.0], "Platform": [22, 8, 12, 18, 24, 14], "catFx-Team": ["N/A:0.666666666667", "Extremely dissatisfied:0.666666666667", "Below average:0.666666666667", "Average:0.666666666667", "Above average:0.666666666667", "It's awesome!:0.666666666667"], "cat": ["N/A", "Extremely dissatisfied", "Below average", "Average", "Above average", "It's awesome!"], "midPlatform": [11.0, 4.0, 6.0, 9.0, 12.0, 7.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [43.0, 13.0, 14.0, 47.0, 42.0, 35.0], "catPlatform": ["N/A:0.333333333333", "Extremely dissatisfied:0.333333333333", "Below average:0.333333333333", "Average:0.333333333333", "Above average:0.333333333333", "It's awesome!:0.333333333333"], "stackedFx-Team": [32.5, 10.5, 13.0, 32.5, 33.0, 24.5], "midFx-Team": [10.5, 2.5, 1.0, 14.5, 9.0, 10.5], "Fx-Team": [21, 5, 2, 29, 18, 21]}, "id": "a26acfb9-55ab-4534-806b-963a90d45e2f"}, "type": "ColumnDataSource", "id": "a26acfb9-55ab-4534-806b-963a90d45e2f"}, {"subtype": "Chart", "type": "Plot", "id": "02873884-4446-44a0-b6a0-f503c649ec7b", "attributes": {"x_range": {"type": "FactorRange", "id": "ca039f6d-28d9-4289-988f-4ab62e011064"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "33be2a62-651d-4374-b46c-afa2efe21526"}, "title": "Thinking of running automated tests, rank the following potential improvements in terms of their impact on your productivity. [Fix test isolation problems in our test harnesses, so we don\u2019t have cross-test contamination]", "renderers": [{"type": "CategoricalAxis", "id": "26920e6c-2830-477f-a5d1-ba52bf12355b"}, {"type": "LinearAxis", "id": "692421a1-c520-4d47-90f7-ce09c493be44"}, {"type": "Grid", "id": "4b7c16fe-fefc-4b3a-8cd4-dc9456b0f362"}, {"type": "GlyphRenderer", "id": "78471b37-934e-4002-b54d-55b996bb6d60"}, {"type": "GlyphRenderer", "id": "0f9f167b-d8fe-46cb-a518-ce995f112495"}, {"type": "Legend", "id": "61fdf83b-0855-4cb8-97a3-bd1008802fe5"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "21d7a08e-d36c-41bd-8f68-62576540bd6d"}, "plot_height": 560, "doc": null, "id": "02873884-4446-44a0-b6a0-f503c649ec7b", "tools": [], "below": [{"type": "CategoricalAxis", "id": "26920e6c-2830-477f-a5d1-ba52bf12355b"}], "left": [{"type": "LinearAxis", "id": "692421a1-c520-4d47-90f7-ce09c493be44"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fac52d34-7da0-498e-9368-548b85e2919b"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "c038c311-ef77-4a02-aed0-93d289e0589b"}, "id": "2149ee67-44c4-46c8-bf46-3af465f4b2cd"}, "type": "Grid", "id": "2149ee67-44c4-46c8-bf46-3af465f4b2cd"}, {"subtype": "Chart", "type": "Plot", "id": "516f2cc0-be48-4375-af7f-5d23af8066eb", "attributes": {"x_range": {"type": "FactorRange", "id": "cb300da4-d640-43ab-b42b-b83a957ae145"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "bbd559bb-65c7-4c9e-9771-fa67e770f037"}, "title": "How much should Mozilla invest in the following Mercurial related items? [Creating a Firefox repository with full CVS history]", "renderers": [{"type": "CategoricalAxis", "id": "00614eb1-f2dd-4863-a72d-3e3c8f9dc665"}, {"type": "LinearAxis", "id": "5a765507-d769-4b4e-8700-87a3886a82b5"}, {"type": "Grid", "id": "f3c7f2a3-76ef-4977-ac6a-cc5792a60afe"}, {"type": "GlyphRenderer", "id": "114a4a46-38d3-4218-8bbf-9b0f24aab386"}, {"type": "GlyphRenderer", "id": "3c9234cd-df12-4b58-9410-f7d1805bf2ed"}, {"type": "Legend", "id": "bc5ec28f-02c6-4346-86ec-caf1e2042eef"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "3945b289-7f63-446e-b6e7-dfcacfe1cd11"}, "plot_height": 560, "doc": null, "id": "516f2cc0-be48-4375-af7f-5d23af8066eb", "tools": [], "below": [{"type": "CategoricalAxis", "id": "00614eb1-f2dd-4863-a72d-3e3c8f9dc665"}], "left": [{"type": "LinearAxis", "id": "5a765507-d769-4b4e-8700-87a3886a82b5"}]}}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "ae6e6448-e846-4d01-85be-eb643faab9a2"}, "type": "BasicTicker", "id": "ae6e6448-e846-4d01-85be-eb643faab9a2"}, {"attributes": {"end": 80.30000000000001, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "e379a8f5-40f8-4de1-8501-0800e58c8992"}, "type": "Range1d", "id": "e379a8f5-40f8-4de1-8501-0800e58c8992"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "90be15a4-fcab-49b5-b4bc-9c3cec3018fe"}, "tags": [], "doc": null, "selection_glyph": null, "id": "bdd16ab2-e262-41b8-83ea-ddc1c4548679", "glyph": {"type": "Rect", "id": "cccb8cde-44f7-42d9-bf3a-8b3471ee8986"}}, "type": "GlyphRenderer", "id": "bdd16ab2-e262-41b8-83ea-ddc1c4548679"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "e98a804e-a43f-494e-922b-834f2f520f58"}, "type": "Rect", "id": "e98a804e-a43f-494e-922b-834f2f520f58"}, {"attributes": {"doc": null, "id": "51064a40-b209-472c-b9cd-7093b9c5cef9", "tags": []}, "type": "BasicTickFormatter", "id": "51064a40-b209-472c-b9cd-7093b9c5cef9"}, {"subtype": "Chart", "type": "Plot", "id": "a6ad311a-50f7-421b-91ec-dee401cf22d5", "attributes": {"x_range": {"type": "FactorRange", "id": "dee81151-a0cd-4d09-8612-95660dbca481"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "4ec2c42b-859b-4d66-8b65-aa7852e019e2"}, "title": "How would you rate your competence in the following version control tools? [Subversion]", "renderers": [{"type": "CategoricalAxis", "id": "6cf1b4da-d5b3-4abd-a735-eb5d1bfe184e"}, {"type": "LinearAxis", "id": "4991be66-eaaf-422e-abc1-e79d76f351a3"}, {"type": "Grid", "id": "fae0e34a-8252-4b55-8128-e014b0b474df"}, {"type": "GlyphRenderer", "id": "eac81318-357e-4192-a516-241938b716ff"}, {"type": "GlyphRenderer", "id": "be9fe1ee-09c8-4f40-8c30-ea6187975cf1"}, {"type": "Legend", "id": "ddef5e2f-862f-4d13-8d6e-90149d6d2b41"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "54263e2e-38e3-4732-a904-a2a52538308c"}, "plot_height": 560, "doc": null, "id": "a6ad311a-50f7-421b-91ec-dee401cf22d5", "tools": [], "below": [{"type": "CategoricalAxis", "id": "6cf1b4da-d5b3-4abd-a735-eb5d1bfe184e"}], "left": [{"type": "LinearAxis", "id": "4991be66-eaaf-422e-abc1-e79d76f351a3"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "26f1bd84-61bb-4e58-a9cb-02ae5bed4b75"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "d33e0ca1-9e6e-49a9-b761-93f2de2ee7c8"}, "ticker": {"type": "BasicTicker", "id": "4b346df4-3d18-4de5-9fff-05512720ead3"}, "id": "12b7dc42-3ce1-4fab-8f50-8277843be827"}, "type": "LinearAxis", "id": "12b7dc42-3ce1-4fab-8f50-8277843be827"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "573e3e10-a08a-4339-9d1a-0d4c6234fe70"}, "type": "ToolEvents", "id": "573e3e10-a08a-4339-9d1a-0d4c6234fe70"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "c7c90e9d-22b1-4602-9a4d-efdd63afa873"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "83516706-0294-4188-93cb-0a19c102b42f"}, "id": "dae58fac-1aed-458f-a30c-9d412d5c86dd"}, "type": "Grid", "id": "dae58fac-1aed-458f-a30c-9d412d5c86dd"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "03186cce-6ddf-4427-8453-19f33ce366cc"}, "type": "Rect", "id": "03186cce-6ddf-4427-8453-19f33ce366cc"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "bd84a5e5-e7c2-41ae-b807-6d0995689c09"}, "type": "Rect", "id": "bd84a5e5-e7c2-41ae-b807-6d0995689c09"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "4202c217-5c75-423d-8a68-89636f6fc90c"}, "orientation": "top_left", "tags": [], "doc": null, "id": "a882a576-cde7-4b61-8fd4-480ea64e5370", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "b54db0f7-d374-45f2-85ee-92b38f655d4c"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "08f4121e-b124-4755-b2b5-dfcc256ac06e"}]]]}, "type": "Legend", "id": "a882a576-cde7-4b61-8fd4-480ea64e5370"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "dd3a6add-c019-4d5a-9de0-cfee79f48cf2"}, "tags": [], "doc": null, "selection_glyph": null, "id": "05beedb5-8720-4d60-a0fb-7c0ac0d142e1", "glyph": {"type": "Rect", "id": "ddee9c64-b4c3-4e43-b547-3847db61db89"}}, "type": "GlyphRenderer", "id": "05beedb5-8720-4d60-a0fb-7c0ac0d142e1"}, {"attributes": {"end": 35.2, "callback": null, "doc": null, "tags": [], "start": 0, "id": "a0016c48-3a09-4f71-b0f1-c0bf764c140d"}, "type": "Range1d", "id": "a0016c48-3a09-4f71-b0f1-c0bf764c140d"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A", "1 = least impact", "2", "3"], "doc": null, "tags": [], "id": "dc474deb-4ab2-4569-9402-40a25d3507c5"}, "type": "FactorRange", "id": "dc474deb-4ab2-4569-9402-40a25d3507c5"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "792c1e3d-c994-46e4-88aa-cc467e76f046"}, "tags": [], "doc": null, "selection_glyph": null, "id": "80e9a12b-23e9-4f72-a5a3-7fad269957cb", "glyph": {"type": "Rect", "id": "4f7d7a24-f0fa-4f34-a4c6-1a6b4d5e8fcd"}}, "type": "GlyphRenderer", "id": "80e9a12b-23e9-4f72-a5a3-7fad269957cb"}, {"attributes": {"callback": null, "factors": ["Access to Firefox's CVS history", "All Other Responses", "All the heads/branches in one repository / One remote", "I don't know Mercurial", "It's more popular", "Merge / conflict resolution is better", "More powerful commands and workflows", "My projects are mostly in Git / I don't need to use Mercurial", "Operations are faster"], "doc": null, "tags": [], "id": "fce95f54-42f6-44f5-850f-7e42a3f439ed"}, "type": "FactorRange", "id": "fce95f54-42f6-44f5-850f-7e42a3f439ed"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "059cd9ac-98c3-44b6-83db-cc05b1f959ec"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "e41b3092-d69b-4c27-a8b2-f1beb5c05a79"}, "id": "96b4d299-7293-413e-a9be-a943be5eb613"}, "type": "Grid", "id": "96b4d299-7293-413e-a9be-a943be5eb613"}, {"attributes": {"doc": null, "id": "7ac18fee-7743-4ad2-8a3a-ccdb211d025c", "tags": []}, "type": "CategoricalTicker", "id": "7ac18fee-7743-4ad2-8a3a-ccdb211d025c"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "3a726073-0131-400c-9d44-0c3562504a75"}, "type": "Rect", "id": "3a726073-0131-400c-9d44-0c3562504a75"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ac80c5e0-3f83-454b-b4ed-ee002dcc3c50"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "adedc941-868f-4858-9bda-1e3214a3782a"}, "ticker": {"type": "CategoricalTicker", "id": "c5cc2ce6-b002-402e-a359-74eee31aa2b5"}, "id": "a6b61701-2b3c-4fdd-85be-069c25e97f19"}, "type": "CategoricalAxis", "id": "a6b61701-2b3c-4fdd-85be-069c25e97f19"}, {"subtype": "Chart", "type": "Plot", "id": "92ff98ee-44de-47b6-a03b-27b8d7200a4e", "attributes": {"x_range": {"type": "FactorRange", "id": "b0a99274-9568-4941-a1cf-6b04e860b177"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "cb535757-b4a5-4b23-a791-6eeb0326c20a"}, "title": "Thinking of the entire development process, from checking out code to landing a patch, please rank the following categories according to how much they impact your own productivity. [The tree is closed too often]", "renderers": [{"type": "CategoricalAxis", "id": "b609d8a4-d6a2-4d3a-b791-afc1c1092dd7"}, {"type": "LinearAxis", "id": "7c4c5125-62ee-4428-bce2-51d44567bef1"}, {"type": "Grid", "id": "c00559ec-4b4c-4df6-b298-6cb787654b21"}, {"type": "GlyphRenderer", "id": "c04a4e98-1dfc-4591-8014-663a929d3b3c"}, {"type": "GlyphRenderer", "id": "dd9774c3-d2f5-495d-854e-69160056fa99"}, {"type": "Legend", "id": "0fb5265a-59ca-4040-b4e2-ce52069c5b8a"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "36a856e6-7f3b-484b-8b96-13789f247c30"}, "plot_height": 560, "doc": null, "id": "92ff98ee-44de-47b6-a03b-27b8d7200a4e", "tools": [], "below": [{"type": "CategoricalAxis", "id": "b609d8a4-d6a2-4d3a-b791-afc1c1092dd7"}], "left": [{"type": "LinearAxis", "id": "7c4c5125-62ee-4428-bce2-51d44567bef1"}]}}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [6.0, 29.0, 6.0, 6.0, 2.5], "Platform": [12, 58, 12, 12, 5], "catFx-Team": ["N/A:0.666666666667", "1 = least impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "midPlatform": [6.0, 29.0, 6.0, 6.0, 2.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [17.0, 133.0, 17.0, 20.0, 10.0], "catPlatform": ["N/A:0.333333333333", "1 = least impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [14.5, 95.5, 14.5, 16.0, 7.5], "midFx-Team": [2.5, 37.5, 2.5, 4.0, 2.5], "Fx-Team": [5, 75, 5, 8, 5]}, "id": "d3178d67-d38c-482c-95a1-2b3a047d0c5f"}, "type": "ColumnDataSource", "id": "d3178d67-d38c-482c-95a1-2b3a047d0c5f"}, {"attributes": {"doc": null, "id": "14316c34-5baa-408d-8905-84c942244a6d", "tags": []}, "type": "BasicTickFormatter", "id": "14316c34-5baa-408d-8905-84c942244a6d"}, {"attributes": {"callback": null, "factors": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "60f981ad-066b-4561-9f72-8c4575e53d20"}, "type": "FactorRange", "id": "60f981ad-066b-4561-9f72-8c4575e53d20"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "ee0b9af4-7e7d-4d04-b0e7-e9063cbd93b3"}, "tags": [], "doc": null, "selection_glyph": null, "id": "885c7856-7d74-4922-93d5-0906b160ee56", "glyph": {"type": "Rect", "id": "71e77a07-a240-42cb-a0f0-86a75f3eb462"}}, "type": "GlyphRenderer", "id": "885c7856-7d74-4922-93d5-0906b160ee56"}, {"attributes": {"doc": null, "id": "195a527c-c778-4d77-997f-dbf61d14313d", "tags": []}, "type": "CategoricalTickFormatter", "id": "195a527c-c778-4d77-997f-dbf61d14313d"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "bcf2336f-48e4-448b-9761-e3cfbaafb251"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "c4cd50a1-dc54-4f60-9a1a-b54a53a350b4"}, "ticker": {"type": "CategoricalTicker", "id": "33c35692-d7da-4f13-9eeb-5dafb017f058"}, "id": "a223f062-6c99-4a19-9acc-17a7eb4a7dec"}, "type": "CategoricalAxis", "id": "a223f062-6c99-4a19-9acc-17a7eb4a7dec"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "62944075-58c8-42a5-a355-808516772de9"}, "orientation": "top_left", "tags": [], "doc": null, "id": "8ce7afdb-3be4-4a6b-9010-5a7bff3786a5", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "5692e079-0433-47e7-8f67-514f703925ed"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "7a8c3486-5128-41b5-90f4-f1f0ec389374"}]]]}, "type": "Legend", "id": "8ce7afdb-3be4-4a6b-9010-5a7bff3786a5"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "57e25b97-a78e-437c-bde0-2ade5ef5a920"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "8169780e-90e6-4d0e-a83c-c8aae3bbe2b8"}, "id": "b50a00d0-9e01-4620-877b-98320c5c5aea"}, "type": "Grid", "id": "b50a00d0-9e01-4620-877b-98320c5c5aea"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "4928bcb5-754e-42ba-a58a-186d8a3cd125"}, "type": "Rect", "id": "4928bcb5-754e-42ba-a58a-186d8a3cd125"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "5a194388-9237-49ab-81aa-659c5b99c4cd"}, "type": "BasicTicker", "id": "5a194388-9237-49ab-81aa-659c5b99c4cd"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [1.5, 3.5, 31.5, 6.5, 6.5], "Platform": [3, 7, 63, 13, 13], "catFx-Team": ["All Other Responses:0.666666666667", "N/A:0.666666666667", "1 = least impact:0.666666666667", "2:0.666666666667", "3:0.666666666667"], "cat": ["All Other Responses", "N/A", "1 = least impact", "2", "3"], "midPlatform": [1.5, 3.5, 31.5, 6.5, 6.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [5.0, 7.0, 117.0, 45.0, 23.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A:0.333333333333", "1 = least impact:0.333333333333", "2:0.333333333333", "3:0.333333333333"], "stackedFx-Team": [4.0, 7.0, 90.0, 29.0, 18.0], "midFx-Team": [1.0, 0.0, 27.0, 16.0, 5.0], "Fx-Team": [2, 0, 54, 32, 10]}, "id": "71788d54-cdac-4ed9-aa92-926dc7b0663d"}, "type": "ColumnDataSource", "id": "71788d54-cdac-4ed9-aa92-926dc7b0663d"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "99384585-1096-4d8d-8a63-62ecbe4b315b"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "62954fbf-2966-44f4-88b3-d7c98565b250"}, "ticker": {"type": "CategoricalTicker", "id": "7123addd-4e29-484c-9970-238ed57d5308"}, "id": "f6158e84-27ce-4718-bf10-a6b6e0da42e3"}, "type": "CategoricalAxis", "id": "f6158e84-27ce-4718-bf10-a6b6e0da42e3"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "9e9e91b9-fe46-4eb3-97c9-9ff989cd30c2"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "1baa39b4-ca01-4ef7-baf7-9b38c757e936"}, "ticker": {"type": "CategoricalTicker", "id": "c3a09fc4-754d-47ad-912e-d5f87d7fa15f"}, "id": "6a672df8-6cca-4a74-93ec-ef4d29bb1132"}, "type": "CategoricalAxis", "id": "6a672df8-6cca-4a74-93ec-ef4d29bb1132"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "111d9c52-c2cd-4427-9db0-4ef41e28e2c0"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "3dd709ab-c98e-4d6f-a2bf-433a0ee35aaf"}, "ticker": {"type": "CategoricalTicker", "id": "f4d6f242-a51d-4384-9096-9381c0b65171"}, "id": "b267190d-be9f-4c0b-8687-fa0d3104c7f7"}, "type": "CategoricalAxis", "id": "b267190d-be9f-4c0b-8687-fa0d3104c7f7"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "85eee339-71dd-4b32-885e-6e841a58b5b8"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "76cec742-4005-4fc2-87b3-76121c1ebd91"}, "ticker": {"type": "CategoricalTicker", "id": "14f264a3-9695-47b4-aab6-e3f35542bc85"}, "id": "690fbc81-97ce-4f01-adad-0ba07070b53a"}, "type": "CategoricalAxis", "id": "690fbc81-97ce-4f01-adad-0ba07070b53a"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "8cea71ed-07e3-414e-baeb-599ab90c6f58"}, "type": "Rect", "id": "8cea71ed-07e3-414e-baeb-599ab90c6f58"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "68419587-04c4-47cd-be4d-72db951b9b2f"}, "type": "BasicTicker", "id": "68419587-04c4-47cd-be4d-72db951b9b2f"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "de55e910-d8be-4d40-a321-d715fbe10a88"}, "orientation": "top_left", "tags": [], "doc": null, "id": "5d25f167-f66b-4fea-b41a-82433a4c0105", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "c544ec61-9824-4f20-be06-2b4a2b24db49"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "48348c94-a5e3-46a1-8def-7574c40844b5"}]]]}, "type": "Legend", "id": "5d25f167-f66b-4fea-b41a-82433a4c0105"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "8c188278-fc41-4e11-8878-f89817285895"}, "type": "BasicTicker", "id": "8c188278-fc41-4e11-8878-f89817285895"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "035267cb-b46f-4fa5-bdb6-d2f0f2bbf50d"}, "tags": [], "doc": null, "selection_glyph": null, "id": "61de7685-9d72-4627-a272-b0e23cda8d2f", "glyph": {"type": "Rect", "id": "9baf52a9-005a-42fc-822b-2748657983d2"}}, "type": "GlyphRenderer", "id": "61de7685-9d72-4627-a272-b0e23cda8d2f"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "219d1c93-23df-4582-8adc-7e8ea1246cd6"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "33c9b01c-1147-44f1-b1ad-c8b0c4010775"}, "ticker": {"type": "BasicTicker", "id": "22cbc21e-b62a-4909-b55f-ee229da821ff"}, "id": "6c6516cb-651d-4e4b-8fed-cb6ae73cbe98"}, "type": "LinearAxis", "id": "6c6516cb-651d-4e4b-8fed-cb6ae73cbe98"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "24371dd4-bf38-4d07-9214-7520be6f2afa"}, "type": "BasicTicker", "id": "24371dd4-bf38-4d07-9214-7520be6f2afa"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fac52d34-7da0-498e-9368-548b85e2919b"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "9c1ee106-2bc5-4aa5-8e6e-1bb185399dcd"}, "ticker": {"type": "BasicTicker", "id": "c038c311-ef77-4a02-aed0-93d289e0589b"}, "id": "16a67aa8-b749-4ee2-b7ed-5217f3894409"}, "type": "LinearAxis", "id": "16a67aa8-b749-4ee2-b7ed-5217f3894409"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "8af738e2-bb5f-4fc5-8ad7-e055e53f0a3d"}, "tags": [], "doc": null, "selection_glyph": null, "id": "c72c613c-3782-45dc-9461-c55d21532517", "glyph": {"type": "Rect", "id": "84f1676a-128e-4845-a8be-404961600f9e"}}, "type": "GlyphRenderer", "id": "c72c613c-3782-45dc-9461-c55d21532517"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "db85f360-0ea5-4db1-ab2c-b79cfa1beeb3"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "29d6beea-5b7b-4e2d-90e6-36ba9601f965"}, "id": "f2e20127-b919-49cb-81e5-701589716f95"}, "type": "Grid", "id": "f2e20127-b919-49cb-81e5-701589716f95"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "467d4098-ab2b-45e7-8e31-48dc61e440a0"}, "type": "Rect", "id": "467d4098-ab2b-45e7-8e31-48dc61e440a0"}, {"attributes": {"doc": null, "id": "7ec21655-38ee-49c8-82c6-6935746bea48", "tags": []}, "type": "BasicTickFormatter", "id": "7ec21655-38ee-49c8-82c6-6935746bea48"}, {"subtype": "Chart", "type": "Plot", "id": "fd4d596e-e6bc-4330-95c9-3b470d2a5560", "attributes": {"x_range": {"type": "FactorRange", "id": "abcf9abd-1531-4a90-9f05-978e3d6541c2"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "c2e41fa8-0748-4b5e-b276-abaaf774ad6e"}, "title": "Rank the following issues according to how they impact your ability to debug tests locally. [Figuring out how to run the tests I want is confusing]", "renderers": [{"type": "CategoricalAxis", "id": "201b2071-7886-4089-8348-729c2f0b8477"}, {"type": "LinearAxis", "id": "805ba7a0-c15d-42ac-a681-0b9935879682"}, {"type": "Grid", "id": "25ac5cc1-1227-431a-9442-1a99f1ad596e"}, {"type": "GlyphRenderer", "id": "8030df50-7264-44b5-9a12-81bd9e009cc6"}, {"type": "GlyphRenderer", "id": "b04678e8-c72f-4522-81eb-b3679059a088"}, {"type": "Legend", "id": "804d4cf3-8288-483f-8c67-2f58e2275ad4"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "2b245d2f-4e81-4b25-b20c-6d5860be9e50"}, "plot_height": 560, "doc": null, "id": "fd4d596e-e6bc-4330-95c9-3b470d2a5560", "tools": [], "below": [{"type": "CategoricalAxis", "id": "201b2071-7886-4089-8348-729c2f0b8477"}], "left": [{"type": "LinearAxis", "id": "805ba7a0-c15d-42ac-a681-0b9935879682"}]}}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "7ee615f8-ba32-4ee9-b2c9-363b9971fbcd"}, "type": "Rect", "id": "7ee615f8-ba32-4ee9-b2c9-363b9971fbcd"}, {"attributes": {"end": 38.5, "callback": null, "doc": null, "tags": [], "start": 0, "id": "2e990196-ed2e-4626-bb0d-d73db9b5d270"}, "type": "Range1d", "id": "2e990196-ed2e-4626-bb0d-d73db9b5d270"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A", "Cut all investment", "Keep about the same", "Increase investment", "Drastically increase investment"], "doc": null, "tags": [], "id": "70b2071f-495d-4010-8a01-356a1c2f8478"}, "type": "FactorRange", "id": "70b2071f-495d-4010-8a01-356a1c2f8478"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "979329db-3ffa-450b-acb8-e804615bae87"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "f54b3ea3-313b-47a4-933b-2449d562088a"}, "id": "46aea047-2633-4c96-9a3f-6bc11fccbd4d"}, "type": "Grid", "id": "46aea047-2633-4c96-9a3f-6bc11fccbd4d"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "71e77a07-a240-42cb-a0f0-86a75f3eb462"}, "type": "Rect", "id": "71e77a07-a240-42cb-a0f0-86a75f3eb462"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "dee5d3e8-e7de-49a7-802f-97c2cb2409e3"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "86886235-c6ba-4cd2-9b37-fca3899709cf"}, "ticker": {"type": "BasicTicker", "id": "f1999b0c-15ec-4501-9371-199df01c7ee5"}, "id": "1ccac8e0-23b3-4f35-846a-95c555043787"}, "type": "LinearAxis", "id": "1ccac8e0-23b3-4f35-846a-95c555043787"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "09808561-43f7-4900-b699-3d0f6b75c335"}, "type": "ToolEvents", "id": "09808561-43f7-4900-b699-3d0f6b75c335"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "Below average", "Average", "Above average", "It's awesome!"], "doc": null, "tags": [], "id": "3208a6ca-ce64-429a-ab00-d3714edf842d"}, "type": "FactorRange", "id": "3208a6ca-ce64-429a-ab00-d3714edf842d"}, {"attributes": {"end": 42.900000000000006, "callback": null, "doc": null, "tags": [], "start": 0, "id": "421fd8dd-e49f-4c50-9f84-39ab1455a131"}, "type": "Range1d", "id": "421fd8dd-e49f-4c50-9f84-39ab1455a131"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "c2ab30e2-a90c-46bd-9db6-d6c8a2f66ce1"}, "type": "Rect", "id": "c2ab30e2-a90c-46bd-9db6-d6c8a2f66ce1"}, {"attributes": {"doc": null, "id": "e839e33f-9117-4a1b-8b4a-c3442faaa56c", "tags": []}, "type": "CategoricalTicker", "id": "e839e33f-9117-4a1b-8b4a-c3442faaa56c"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "57259fdb-e568-44cd-b8bf-bcf307c4669a"}, "type": "Rect", "id": "57259fdb-e568-44cd-b8bf-bcf307c4669a"}, {"attributes": {"end": 40.7, "callback": null, "doc": null, "tags": [], "start": 0, "id": "65e5fed7-2cd5-452f-bc82-470486b6c448"}, "type": "Range1d", "id": "65e5fed7-2cd5-452f-bc82-470486b6c448"}, {"subtype": "Chart", "type": "Plot", "id": "982450d2-3281-496c-8d55-9d279807bfd4", "attributes": {"x_range": {"type": "FactorRange", "id": "17c6db97-b3f4-41bc-99f9-720efc9d6ac7"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "a8f9c086-6fe0-4d6f-a59e-b25b53ae83fd"}, "title": "Thinking of the patch review and landing process, please rank the following potential improvements in terms of their impact on your productivity. [Integrate a variety of automatic static analysis tools into the review process so machines do more of the review for me]", "renderers": [{"type": "CategoricalAxis", "id": "0f2227f2-bf7c-4922-b70d-741559a66ccd"}, {"type": "LinearAxis", "id": "52f1c92c-fddc-4eeb-8045-a40c86226c88"}, {"type": "Grid", "id": "719bc7f2-0d6c-4173-b9b6-95f39069218a"}, {"type": "GlyphRenderer", "id": "300ff262-5f0f-4b8f-b5c2-a9058a29dbfe"}, {"type": "GlyphRenderer", "id": "bec33b21-8316-4289-9fcd-02b5bfa7582d"}, {"type": "Legend", "id": "f100f08b-d93d-431e-98b0-b4a32f1c729b"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "117f4dcc-6cc5-4741-b6da-090d1bf1d2bd"}, "plot_height": 560, "doc": null, "id": "982450d2-3281-496c-8d55-9d279807bfd4", "tools": [], "below": [{"type": "CategoricalAxis", "id": "0f2227f2-bf7c-4922-b70d-741559a66ccd"}], "left": [{"type": "LinearAxis", "id": "52f1c92c-fddc-4eeb-8045-a40c86226c88"}]}}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "ab66e2e3-e7a9-4711-aa48-88698f07a231"}, "type": "Rect", "id": "ab66e2e3-e7a9-4711-aa48-88698f07a231"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "d03d4b37-32eb-483f-8e73-053978c018c8"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "d3af0e6f-bb09-4aab-b40a-52941c03c585"}, "id": "87741b71-4734-4ef8-a6fe-2d5176db695b"}, "type": "Grid", "id": "87741b71-4734-4ef8-a6fe-2d5176db695b"}, {"attributes": {"end": 47.300000000000004, "callback": null, "doc": null, "tags": [], "start": 0, "id": "f9fdb9e7-e12b-4d2b-8977-7f17f80e81f7"}, "type": "Range1d", "id": "f9fdb9e7-e12b-4d2b-8977-7f17f80e81f7"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "e0d97aa9-0cfb-4cc7-b568-44448053872b"}, "tags": [], "doc": null, "selection_glyph": null, "id": "944ef638-68b7-40d8-9cfc-00e9ef3a181e", "glyph": {"type": "Rect", "id": "f40e4638-6026-4020-a8a1-b0c4a670ed15"}}, "type": "GlyphRenderer", "id": "944ef638-68b7-40d8-9cfc-00e9ef3a181e"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "296d47bd-2769-4e9e-be00-a3f0f76022f5"}, "type": "BasicTicker", "id": "296d47bd-2769-4e9e-be00-a3f0f76022f5"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "e41b3092-d69b-4c27-a8b2-f1beb5c05a79"}, "type": "BasicTicker", "id": "e41b3092-d69b-4c27-a8b2-f1beb5c05a79"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "64b0da1f-57d1-40f5-af8c-fd8591794d87"}, "orientation": "top_left", "tags": [], "doc": null, "id": "c6c8acdf-78cf-4190-aa07-936d1f68dd40", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "40bd5839-cb3b-4fc0-831a-c047b9ce79f1"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "55692a77-0b4e-45b0-80f7-85c83b76503c"}]]]}, "type": "Legend", "id": "c6c8acdf-78cf-4190-aa07-936d1f68dd40"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2], "stackedPlatform": [23.5, 10.0, 11.5], "Platform": [47, 20, 23], "catFx-Team": ["No:0.666666666667", "Yes:0.666666666667", "You can do that?!:0.666666666667"], "cat": ["No", "Yes", "You can do that?!"], "midPlatform": [23.5, 10.0, 11.5], "width": [0.8, 0.8, 0.8], "zero": [90.0, 36.0, 50.0], "catPlatform": ["No:0.333333333333", "Yes:0.333333333333", "You can do that?!:0.333333333333"], "stackedFx-Team": [68.5, 28.0, 36.5], "midFx-Team": [21.5, 8.0, 13.5], "Fx-Team": [43, 16, 27]}, "id": "72f2a3e9-3216-4383-b08f-37a1d6a7651f"}, "type": "ColumnDataSource", "id": "72f2a3e9-3216-4383-b08f-37a1d6a7651f"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "6aad5b84-2f80-49b0-af9f-896d41ab07ce"}, "type": "Rect", "id": "6aad5b84-2f80-49b0-af9f-896d41ab07ce"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "8d167d3d-6b97-4584-aa19-8011ec16e1f5"}, "type": "BasicTicker", "id": "8d167d3d-6b97-4584-aa19-8011ec16e1f5"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "c44c617c-ce42-4220-81b0-a42ed578f179"}, "type": "Rect", "id": "c44c617c-ce42-4220-81b0-a42ed578f179"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "971b2036-690d-49d8-bb9a-20aa6468fd55"}, "tags": [], "doc": null, "selection_glyph": null, "id": "e9f6f871-5422-4b9e-ad23-950f95cc56a1", "glyph": {"type": "Rect", "id": "9ed1e19e-0adf-4d03-a58a-3c5954f3ac8c"}}, "type": "GlyphRenderer", "id": "e9f6f871-5422-4b9e-ad23-950f95cc56a1"}, {"attributes": {"doc": null, "id": "27c2217e-579c-4f79-81b9-9e5ad4bccf09", "tags": []}, "type": "CategoricalTicker", "id": "27c2217e-579c-4f79-81b9-9e5ad4bccf09"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "5650848a-083b-4db8-b770-75aa8f90c4e4"}, "type": "Rect", "id": "5650848a-083b-4db8-b770-75aa8f90c4e4"}, {"attributes": {"end": 48.400000000000006, "callback": null, "doc": null, "tags": [], "start": 0, "id": "e7f22fef-b7fa-40d4-9eef-dd5e41a1729e"}, "type": "Range1d", "id": "e7f22fef-b7fa-40d4-9eef-dd5e41a1729e"}, {"attributes": {"end": 39.6, "callback": null, "doc": null, "tags": [], "start": 0, "id": "93fd5ad8-fdcf-4fc5-88b5-a95b59db5bcd"}, "type": "Range1d", "id": "93fd5ad8-fdcf-4fc5-88b5-a95b59db5bcd"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "cde90c72-d305-42a6-94aa-22b50e254594"}, "tags": [], "doc": null, "selection_glyph": null, "id": "c95a385b-ad7f-4818-a531-1b59530b31db", "glyph": {"type": "Rect", "id": "761150d0-c88d-40d6-919c-a1b96f694972"}}, "type": "GlyphRenderer", "id": "c95a385b-ad7f-4818-a531-1b59530b31db"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "bbc3b461-4e02-459f-92d4-302a3032f61c"}, "type": "BasicTicker", "id": "bbc3b461-4e02-459f-92d4-302a3032f61c"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "d0433305-56be-4e09-b9d4-66d916c2e5c8"}, "tags": [], "doc": null, "selection_glyph": null, "id": "433587d2-27b0-4d73-97b1-ab15046f4193", "glyph": {"type": "Rect", "id": "cf191638-7eea-40c0-b6b7-77d93830a715"}}, "type": "GlyphRenderer", "id": "433587d2-27b0-4d73-97b1-ab15046f4193"}, {"attributes": {"callback": null, "factors": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "3edec1fe-dfc3-4108-89ca-babc7a5020d6"}, "type": "FactorRange", "id": "3edec1fe-dfc3-4108-89ca-babc7a5020d6"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "4db9cbae-51dd-47e3-bc83-32350c027258"}, "type": "BasicTicker", "id": "4db9cbae-51dd-47e3-bc83-32350c027258"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "5dd74155-377b-4a1a-8c39-cac7ac8eabc9"}, "tags": [], "doc": null, "selection_glyph": null, "id": "7eb72593-862a-4254-84c2-7d61eb572f68", "glyph": {"type": "Rect", "id": "87e580e5-3a77-432c-8d50-52d800ed0ffd"}}, "type": "GlyphRenderer", "id": "7eb72593-862a-4254-84c2-7d61eb572f68"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "cb147da0-1422-425b-a102-b7e22fddc842"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "584d3432-067a-498c-a045-3cef46773382"}, "ticker": {"type": "CategoricalTicker", "id": "4b9eb7e5-b812-4aed-8bb8-f33fe5660ff0"}, "id": "cab41ef9-f06a-4b33-a32a-15222a950fef"}, "type": "CategoricalAxis", "id": "cab41ef9-f06a-4b33-a32a-15222a950fef"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "77a6020c-80a3-41e9-a0f9-add80c1e1546"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "2449428f-9c0c-4d7a-96eb-e8cdaceea526"}, "ticker": {"type": "CategoricalTicker", "id": "e0f8f1c3-5cd5-481c-a14f-06023741b4ac"}, "id": "9233534e-5622-4bf3-85f9-f43be5c672af"}, "type": "CategoricalAxis", "id": "9233534e-5622-4bf3-85f9-f43be5c672af"}, {"attributes": {"doc": null, "id": "5cd2b259-13ea-4636-8fed-6202fe058798", "tags": []}, "type": "CategoricalTicker", "id": "5cd2b259-13ea-4636-8fed-6202fe058798"}, {"attributes": {"doc": null, "id": "350e6621-4c56-475d-9d9e-1bfc7274cc63", "tags": []}, "type": "BasicTickFormatter", "id": "350e6621-4c56-475d-9d9e-1bfc7274cc63"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "266e4b98-2989-4d8d-9ffb-329f73f2239f"}, "type": "BasicTicker", "id": "266e4b98-2989-4d8d-9ffb-329f73f2239f"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ca660824-da9b-42c8-80f1-b629a907c373"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "933d675a-3739-40b3-8973-f27c50d62549"}, "id": "1dcf5a86-be7f-4679-b519-65afa0b6e116"}, "type": "Grid", "id": "1dcf5a86-be7f-4679-b519-65afa0b6e116"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "db73f777-88ee-42eb-b726-a708cc334ac9"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "ed30ef7c-10b1-4814-b1d7-45ac3084d149"}, "id": "63d58d46-9209-49e4-a1a8-a68b0d316e1b"}, "type": "Grid", "id": "63d58d46-9209-49e4-a1a8-a68b0d316e1b"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "f17cd3b4-c375-4519-9beb-6438ecdf05a6"}, "type": "Rect", "id": "f17cd3b4-c375-4519-9beb-6438ecdf05a6"}, {"attributes": {"doc": null, "id": "e0ec261a-3218-4842-af7d-937fb5f6c3c5", "tags": []}, "type": "BasicTickFormatter", "id": "e0ec261a-3218-4842-af7d-937fb5f6c3c5"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [2.5, 3.0, 12.0, 18.5, 13.0], "Platform": [5, 6, 24, 37, 26], "catFx-Team": ["All Other Responses:0.666666666667", "1 = least impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["All Other Responses", "1 = least impact", "2", "3", "4 = most impact"], "midPlatform": [2.5, 3.0, 12.0, 18.5, 13.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [7.0, 14.0, 45.0, 72.0, 58.0], "catPlatform": ["All Other Responses:0.333333333333", "1 = least impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [6.0, 10.0, 34.5, 54.5, 42.0], "midFx-Team": [1.0, 4.0, 10.5, 17.5, 16.0], "Fx-Team": [2, 8, 21, 35, 32]}, "id": "0d9def83-c962-4f3d-968d-e85943dbaf6b"}, "type": "ColumnDataSource", "id": "0d9def83-c962-4f3d-968d-e85943dbaf6b"}, {"attributes": {"doc": null, "id": "f87a3b8d-e11b-4059-b042-42e3a6bba137", "tags": []}, "type": "CategoricalTickFormatter", "id": "f87a3b8d-e11b-4059-b042-42e3a6bba137"}, {"attributes": {"end": 49.50000000000001, "callback": null, "doc": null, "tags": [], "start": 0, "id": "8349f336-99d2-46ec-bb2e-8f025f8fe4e3"}, "type": "Range1d", "id": "8349f336-99d2-46ec-bb2e-8f025f8fe4e3"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "40f555e7-ccbf-479c-9c23-75177a31e162"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "6dc8eb46-29b9-4bcc-9866-142310dea838"}, "id": "68c4c4d3-9410-48f8-867a-75cea9f3835c"}, "type": "Grid", "id": "68c4c4d3-9410-48f8-867a-75cea9f3835c"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "a48e0136-c551-480c-9d35-6595bd544dcd"}, "type": "Rect", "id": "a48e0136-c551-480c-9d35-6595bd544dcd"}, {"attributes": {"end": 25.3, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "ce26c27a-4c95-4773-a142-ad5103730554"}, "type": "Range1d", "id": "ce26c27a-4c95-4773-a142-ad5103730554"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "137165c8-e64f-4fa3-af95-cc88d1b522f2"}, "type": "BasicTicker", "id": "137165c8-e64f-4fa3-af95-cc88d1b522f2"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "696ccf69-5943-4ee6-bb2d-fb5617f2971c"}, "tags": [], "doc": null, "selection_glyph": null, "id": "e25dc41f-6174-44f0-9b1c-0500c8e1db86", "glyph": {"type": "Rect", "id": "c81e269b-b38a-4d7a-9861-241e33de6132"}}, "type": "GlyphRenderer", "id": "e25dc41f-6174-44f0-9b1c-0500c8e1db86"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "02873884-4446-44a0-b6a0-f503c649ec7b"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "56e011e8-51dd-405d-985d-e49acd7eb2cf"}, "ticker": {"type": "CategoricalTicker", "id": "81ae1e30-ebc1-48e5-aabc-d33a7e73b5ec"}, "id": "26920e6c-2830-477f-a5d1-ba52bf12355b"}, "type": "CategoricalAxis", "id": "26920e6c-2830-477f-a5d1-ba52bf12355b"}, {"attributes": {"doc": null, "id": "70b5a422-5bf6-4a98-8660-967b24976e42", "tags": []}, "type": "CategoricalTicker", "id": "70b5a422-5bf6-4a98-8660-967b24976e42"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "9e9e91b9-fe46-4eb3-97c9-9ff989cd30c2"}, "orientation": "top_left", "tags": [], "doc": null, "id": "29fc450b-6275-4fbe-a2b0-a12ede5ee7ce", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "d9069d05-1f2e-402c-8464-01fb9665f40e"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "80e9a12b-23e9-4f72-a5a3-7fad269957cb"}]]]}, "type": "Legend", "id": "29fc450b-6275-4fbe-a2b0-a12ede5ee7ce"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "68867bb8-e0b8-433b-b5e4-63ea8e54af1b"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "7b6c5882-2edc-498e-8acd-6403a12e18e0"}, "id": "193feb9a-bd3d-4319-afcd-4d5f176b5515"}, "type": "Grid", "id": "193feb9a-bd3d-4319-afcd-4d5f176b5515"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [7.0, 19.0, 12.0, 6.0, 5.0], "Platform": [14, 38, 24, 12, 10], "catFx-Team": ["N/A:0.666666666667", "1 = least impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "midPlatform": [7.0, 19.0, 12.0, 6.0, 5.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [22.0, 83.0, 45.0, 25.0, 18.0], "catPlatform": ["N/A:0.333333333333", "1 = least impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [18.0, 60.5, 34.5, 18.5, 14.0], "midFx-Team": [4.0, 22.5, 10.5, 6.5, 4.0], "Fx-Team": [8, 45, 21, 13, 8]}, "id": "188bb62a-1536-4926-b517-f8ada39606bd"}, "type": "ColumnDataSource", "id": "188bb62a-1536-4926-b517-f8ada39606bd"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "dfd6b33d-2558-4e2e-81c2-1e36a8e73f13"}, "type": "BasicTicker", "id": "dfd6b33d-2558-4e2e-81c2-1e36a8e73f13"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "26f1bd84-61bb-4e58-a9cb-02ae5bed4b75"}, "orientation": "top_left", "tags": [], "doc": null, "id": "3987bcd6-a1ad-4b99-80ad-a5e5f1479d03", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "59d09cbf-2e13-488b-8d79-341cd79213a5"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "7538d581-6ae0-4bea-8918-ccf2beeed05d"}]]]}, "type": "Legend", "id": "3987bcd6-a1ad-4b99-80ad-a5e5f1479d03"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "f4f4cffc-3b72-4ea6-9abb-4ae7fa20e783"}, "type": "Rect", "id": "f4f4cffc-3b72-4ea6-9abb-4ae7fa20e783"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "c7c90e9d-22b1-4602-9a4d-efdd63afa873"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "636c0ac0-f2ac-481d-810e-200d874ad771"}, "ticker": {"type": "CategoricalTicker", "id": "68e185b3-b645-41ff-85e2-93484dbf2a23"}, "id": "7e176ea2-d729-4002-adec-26567128364e"}, "type": "CategoricalAxis", "id": "7e176ea2-d729-4002-adec-26567128364e"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "c850e971-9b66-42bb-a73b-313cfe840897"}, "tags": [], "doc": null, "selection_glyph": null, "id": "c7be80d7-1af9-46e5-8efa-2a619cb60a6b", "glyph": {"type": "Rect", "id": "bcdf84c6-a3fd-451a-b2b4-6d9a781e69e2"}}, "type": "GlyphRenderer", "id": "c7be80d7-1af9-46e5-8efa-2a619cb60a6b"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "1ad8e43e-3591-44c6-ac87-a667a2afa698"}, "orientation": "top_left", "tags": [], "doc": null, "id": "9e688d64-1024-4901-89c9-6cdfb2e08ace", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "15484022-03ab-4534-9951-3c85e757eeae"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "c72c613c-3782-45dc-9461-c55d21532517"}]]]}, "type": "Legend", "id": "9e688d64-1024-4901-89c9-6cdfb2e08ace"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "1c1b1e93-30b8-403e-8ad6-67a35bde20df"}, "type": "ToolEvents", "id": "1c1b1e93-30b8-403e-8ad6-67a35bde20df"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "1e24ed1f-d104-4300-a707-d7eeeb254cf3"}, "type": "Rect", "id": "1e24ed1f-d104-4300-a707-d7eeeb254cf3"}, {"attributes": {"doc": null, "id": "f55f03ac-a4a8-4b5b-a3e2-e5e0c1b6e313", "tags": []}, "type": "CategoricalTickFormatter", "id": "f55f03ac-a4a8-4b5b-a3e2-e5e0c1b6e313"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "d0154d52-5c7b-43fa-a91e-8258c68b5f85"}, "type": "BasicTicker", "id": "d0154d52-5c7b-43fa-a91e-8258c68b5f85"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A or I'm not sure", "It sucks a little", "It's neither bad nor good", "It's OK, I guess", "It's pretty good", "It's awesome!"], "doc": null, "tags": [], "id": "0ac7b9b3-d8fc-4e63-ab48-3db092b95cfa"}, "type": "FactorRange", "id": "0ac7b9b3-d8fc-4e63-ab48-3db092b95cfa"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "15cec81b-12ab-4c57-98cb-90f95e2e0fcb"}, "type": "Rect", "id": "15cec81b-12ab-4c57-98cb-90f95e2e0fcb"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "e06e49ff-2093-4742-b1ff-f098e54fd6d2"}, "tags": [], "doc": null, "selection_glyph": null, "id": "be86c689-0b32-4b15-9f9e-723b159e6d49", "glyph": {"type": "Rect", "id": "b477b1bd-bf74-44dc-9d99-6c93e3d32816"}}, "type": "GlyphRenderer", "id": "be86c689-0b32-4b15-9f9e-723b159e6d49"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "3681bcec-fba3-47f6-baec-0b787cd24672"}, "type": "Rect", "id": "3681bcec-fba3-47f6-baec-0b787cd24672"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "1387e135-ef43-4d7d-9470-1ebad54f26b0"}, "type": "BasicTicker", "id": "1387e135-ef43-4d7d-9470-1ebad54f26b0"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "ec5d730c-75ab-47f3-88c0-7bbca92c7cf3"}, "type": "Rect", "id": "ec5d730c-75ab-47f3-88c0-7bbca92c7cf3"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [1.5, 3.0, 14.5, 18.0, 12.0], "Platform": [3, 6, 29, 36, 24], "catFx-Team": ["All Other Responses:0.666666666667", "1 = little impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["All Other Responses", "1 = little impact", "2", "3", "4 = most impact"], "midPlatform": [1.5, 3.0, 14.5, 18.0, 12.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [5.0, 14.0, 61.0, 65.0, 51.0], "catPlatform": ["All Other Responses:0.333333333333", "1 = little impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [4.0, 10.0, 45.0, 50.5, 37.5], "midFx-Team": [1.0, 4.0, 16.0, 14.5, 13.5], "Fx-Team": [2, 8, 32, 29, 27]}, "id": "7ea767e9-f9f7-4cad-bc97-5711adfcc40c"}, "type": "ColumnDataSource", "id": "7ea767e9-f9f7-4cad-bc97-5711adfcc40c"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [4.5, 18.0, 13.5, 4.0, 9.0], "Platform": [9, 36, 27, 8, 18], "catFx-Team": ["1 - no impact:0.666666666667", "2 - little impact:0.666666666667", "3 - a fair amount of impact:0.666666666667", "4 - a significant amount of impact:0.666666666667", "5 - an extremely frustrating amount of impact:0.666666666667"], "cat": ["1 - no impact", "2 - little impact", "3 - a fair amount of impact", "4 - a significant amount of impact", "5 - an extremely frustrating amount of impact"], "midPlatform": [4.5, 18.0, 13.5, 4.0, 9.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [11.0, 81.0, 43.0, 32.0, 28.0], "catPlatform": ["1 - no impact:0.333333333333", "2 - little impact:0.333333333333", "3 - a fair amount of impact:0.333333333333", "4 - a significant amount of impact:0.333333333333", "5 - an extremely frustrating amount of impact:0.333333333333"], "stackedFx-Team": [10.0, 58.5, 35.0, 20.0, 23.0], "midFx-Team": [1.0, 22.5, 8.0, 12.0, 5.0], "Fx-Team": [2, 45, 16, 24, 10]}, "id": "718dc7c5-23ec-4c00-af8a-662a9ac923cf"}, "type": "ColumnDataSource", "id": "718dc7c5-23ec-4c00-af8a-662a9ac923cf"}, {"attributes": {"end": 38.5, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "8eb2c1f6-37dd-401e-958f-87c50d0bab28"}, "type": "Range1d", "id": "8eb2c1f6-37dd-401e-958f-87c50d0bab28"}, {"subtype": "Chart", "type": "Plot", "id": "fd2801db-f7d9-4e81-a693-dd7db4bdc260", "attributes": {"x_range": {"type": "FactorRange", "id": "73f0a945-9b1e-4132-916a-d5e0bf95a455"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "64a88915-27c5-4052-8c0f-17a1af7425ed"}, "title": "How satisfied are you with the following aspects of MozReview? [Submitting and publishing reviews]", "renderers": [{"type": "CategoricalAxis", "id": "7116508e-0c32-4fd7-8f1f-427fbe56aa81"}, {"type": "LinearAxis", "id": "6fae8bf6-0095-47dd-b90b-fbc06444ecff"}, {"type": "Grid", "id": "a7a28efc-c530-4562-89fc-fa044ddc4cf4"}, {"type": "GlyphRenderer", "id": "0835aac6-5e58-4b88-bf1e-f13faef3f5e4"}, {"type": "GlyphRenderer", "id": "a12948da-71b8-43ac-a6f0-22e25316a86a"}, {"type": "Legend", "id": "7831a07b-ece3-44bd-83db-81fd051baa2c"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "95bc9af8-5b23-4884-8450-1173fb51603e"}, "plot_height": 560, "doc": null, "id": "fd2801db-f7d9-4e81-a693-dd7db4bdc260", "tools": [], "below": [{"type": "CategoricalAxis", "id": "7116508e-0c32-4fd7-8f1f-427fbe56aa81"}], "left": [{"type": "LinearAxis", "id": "6fae8bf6-0095-47dd-b90b-fbc06444ecff"}]}}, {"attributes": {"doc": null, "id": "66e05a19-4a7f-4e8d-88f7-0e732f3a4dd1", "tags": []}, "type": "CategoricalTickFormatter", "id": "66e05a19-4a7f-4e8d-88f7-0e732f3a4dd1"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "e303924c-d613-47f7-8770-933fc9ee8041"}, "type": "ToolEvents", "id": "e303924c-d613-47f7-8770-933fc9ee8041"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "5163a47e-0e24-48dd-a6dd-49d3dce1bb78"}, "type": "BasicTicker", "id": "5163a47e-0e24-48dd-a6dd-49d3dce1bb78"}, {"subtype": "Chart", "type": "Plot", "id": "87c4eda2-0cee-4548-8dcd-110be1d775b9", "attributes": {"x_range": {"type": "FactorRange", "id": "bd16d020-9810-4fb3-8898-57a0c4f0c894"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "8eb2c1f6-37dd-401e-958f-87c50d0bab28"}, "title": "Thinking of the process of writing and debugging code, rank the following in terms of their impact on your productivity [There's not enough focus on quality / tests]", "renderers": [{"type": "CategoricalAxis", "id": "1f13f458-ccde-40e3-8b09-fdca0ae3b1bf"}, {"type": "LinearAxis", "id": "dd9642b6-9b17-40ba-bd08-1524df387292"}, {"type": "Grid", "id": "eac6593c-8d8e-44fd-86d4-2017fd7353f3"}, {"type": "GlyphRenderer", "id": "85d00d2a-6957-4934-afe2-6774b9f4ab85"}, {"type": "GlyphRenderer", "id": "d4de357a-2672-4b84-86b2-61c6212c19f8"}, {"type": "Legend", "id": "e3243175-272c-4177-b54a-e9f5d33d2718"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "8b36e537-03ae-49cc-b9de-795f88ca0c66"}, "plot_height": 560, "doc": null, "id": "87c4eda2-0cee-4548-8dcd-110be1d775b9", "tools": [], "below": [{"type": "CategoricalAxis", "id": "1f13f458-ccde-40e3-8b09-fdca0ae3b1bf"}], "left": [{"type": "LinearAxis", "id": "dd9642b6-9b17-40ba-bd08-1524df387292"}]}}, {"attributes": {"doc": null, "id": "b1f12c70-aec8-4d98-ab10-c71dc8c32f52", "tags": []}, "type": "BasicTickFormatter", "id": "b1f12c70-aec8-4d98-ab10-c71dc8c32f52"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "1bae94c3-cb4f-4af0-aaea-500571dfbcbb"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "cd92c358-de87-4e4f-808f-3b6f464854fc"}, "ticker": {"type": "BasicTicker", "id": "84f10ece-a784-42fb-8c97-b85b37fdddb6"}, "id": "4ec624f0-24d1-4dc6-8a8a-57de6d91db2e"}, "type": "LinearAxis", "id": "4ec624f0-24d1-4dc6-8a8a-57de6d91db2e"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "6dc8eb46-29b9-4bcc-9866-142310dea838"}, "type": "BasicTicker", "id": "6dc8eb46-29b9-4bcc-9866-142310dea838"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "bc085a35-b314-41e9-a57d-565def0bbdc6"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "b769f65b-8a2b-457d-a30c-250db06beecd"}, "ticker": {"type": "CategoricalTicker", "id": "a69a05e2-56e7-4524-b402-26f70272a971"}, "id": "9363ab4f-577a-4cb9-bbc3-dd58a9998f5b"}, "type": "CategoricalAxis", "id": "9363ab4f-577a-4cb9-bbc3-dd58a9998f5b"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "24f666f3-f470-40ff-8bb8-85b9637f665e"}, "tags": [], "doc": null, "selection_glyph": null, "id": "6553cdb5-fa69-4e80-9466-3a0fe89d9f97", "glyph": {"type": "Rect", "id": "93a679cb-8fb6-4108-923a-b037ee207d1c"}}, "type": "GlyphRenderer", "id": "6553cdb5-fa69-4e80-9466-3a0fe89d9f97"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [3.0, 4.0, 14.0, 14.5, 13.5], "Platform": [6, 8, 28, 29, 27], "catFx-Team": ["N/A:0.666666666667", "1 = least impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "midPlatform": [3.0, 4.0, 14.0, 14.5, 13.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [8.0, 13.0, 55.0, 56.0, 62.0], "catPlatform": ["N/A:0.333333333333", "1 = least impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [7.0, 10.5, 41.5, 42.5, 44.5], "midFx-Team": [1.0, 2.5, 13.5, 13.5, 17.5], "Fx-Team": [2, 5, 27, 27, 35]}, "id": "48ed1c65-8836-42ae-b5e7-680b1ae23d0b"}, "type": "ColumnDataSource", "id": "48ed1c65-8836-42ae-b5e7-680b1ae23d0b"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [1.5, 21.5, 2.5, 9.5, 2.0], "Platform": [3, 43, 5, 19, 4], "catFx-Team": ["All Other Responses:0.666666666667", "N/A:0.666666666667", "Below average:0.666666666667", "Average:0.666666666667", "Above average:0.666666666667"], "cat": ["All Other Responses", "N/A", "Below average", "Average", "Above average"], "midPlatform": [1.5, 21.5, 2.5, 9.5, 2.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [5.0, 83.0, 10.0, 27.0, 17.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A:0.333333333333", "Below average:0.333333333333", "Average:0.333333333333", "Above average:0.333333333333"], "stackedFx-Team": [4.0, 63.0, 7.5, 23.0, 10.5], "midFx-Team": [1.0, 20.0, 2.5, 4.0, 6.5], "Fx-Team": [2, 40, 5, 8, 13]}, "id": "79e5a479-8c1f-409d-8c83-8a91176fb5ab"}, "type": "ColumnDataSource", "id": "79e5a479-8c1f-409d-8c83-8a91176fb5ab"}, {"attributes": {"doc": null, "id": "745b07dc-5c6e-4cd5-9ed7-486078a1217a", "tags": []}, "type": "BasicTickFormatter", "id": "745b07dc-5c6e-4cd5-9ed7-486078a1217a"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fd4d596e-e6bc-4330-95c9-3b470d2a5560"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "bf133e7b-de92-445d-b917-15720728053f"}, "id": "25ac5cc1-1227-431a-9442-1a99f1ad596e"}, "type": "Grid", "id": "25ac5cc1-1227-431a-9442-1a99f1ad596e"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "117f4dcc-6cc5-4741-b6da-090d1bf1d2bd"}, "type": "ToolEvents", "id": "117f4dcc-6cc5-4741-b6da-090d1bf1d2bd"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "fdf141f1-180e-4f97-a1b8-8a64a302bfbe"}, "type": "Rect", "id": "fdf141f1-180e-4f97-a1b8-8a64a302bfbe"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "667880ae-7431-466d-a39a-bdc0db287dfe"}, "type": "BasicTicker", "id": "667880ae-7431-466d-a39a-bdc0db287dfe"}, {"attributes": {"doc": null, "id": "db5979f6-cd4d-4dd5-8782-7f644f16ea15", "tags": []}, "type": "CategoricalTicker", "id": "db5979f6-cd4d-4dd5-8782-7f644f16ea15"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A", "Below average", "Average", "Above average"], "doc": null, "tags": [], "id": "ed13d6ad-19d7-4d1e-80c6-0f9bc98fe651"}, "type": "FactorRange", "id": "ed13d6ad-19d7-4d1e-80c6-0f9bc98fe651"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "252f9e83-9873-424e-8c67-2821935d9d1c"}, "tags": [], "doc": null, "selection_glyph": null, "id": "e0f8dada-a2c9-4be3-8720-69890679bed9", "glyph": {"type": "Rect", "id": "49ee2dbc-4e08-4ee7-a7a6-db40d58b7de5"}}, "type": "GlyphRenderer", "id": "e0f8dada-a2c9-4be3-8720-69890679bed9"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [1.0, 11.5, 10.0, 7.0, 7.5], "Platform": [2, 23, 20, 14, 15], "catFx-Team": ["All Other Responses:0.666666666667", "N/A:0.666666666667", "Average:0.666666666667", "Above average:0.666666666667", "It's awesome!:0.666666666667"], "cat": ["All Other Responses", "N/A", "Average", "Above average", "It's awesome!"], "midPlatform": [1.0, 11.5, 10.0, 7.0, 7.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [2.0, 44.0, 38.0, 35.0, 23.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A:0.333333333333", "Average:0.333333333333", "Above average:0.333333333333", "It's awesome!:0.333333333333"], "stackedFx-Team": [2.0, 33.5, 29.0, 24.5, 19.0], "midFx-Team": [0.0, 10.5, 9.0, 10.5, 4.0], "Fx-Team": [0, 21, 18, 21, 8]}, "id": "f657426c-9686-4d5c-99b6-69122fd65e71"}, "type": "ColumnDataSource", "id": "f657426c-9686-4d5c-99b6-69122fd65e71"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "990ea5f9-138d-44de-b7ea-12812520dde4"}, "type": "Rect", "id": "990ea5f9-138d-44de-b7ea-12812520dde4"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "111d9c52-c2cd-4427-9db0-4ef41e28e2c0"}, "orientation": "top_left", "tags": [], "doc": null, "id": "aa54eabf-3c07-4a21-94c1-bbe7dd46435b", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "720e40ff-5a56-4a39-8180-f8a07028bfd6"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "3da4db16-2d20-4bf7-946c-2e84d58ff3fa"}]]]}, "type": "Legend", "id": "aa54eabf-3c07-4a21-94c1-bbe7dd46435b"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "d7bc3e0b-845e-4511-a65f-93fda06dc015"}, "type": "Rect", "id": "d7bc3e0b-845e-4511-a65f-93fda06dc015"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "35c94ce8-b8eb-4f3c-97f4-957c3cc3e63e"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "b2336fc9-e3e6-46a3-9298-880bf5eeae8c"}, "ticker": {"type": "CategoricalTicker", "id": "fd65e847-3a85-40bb-bb3e-a73ac3af713c"}, "id": "b93ac4da-8cea-4ad5-ae92-5f6259515ebf"}, "type": "CategoricalAxis", "id": "b93ac4da-8cea-4ad5-ae92-5f6259515ebf"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "99384585-1096-4d8d-8a63-62ecbe4b315b"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "745b07dc-5c6e-4cd5-9ed7-486078a1217a"}, "ticker": {"type": "BasicTicker", "id": "f1226cac-8c1c-4423-915a-c40b99685462"}, "id": "1d9da7aa-0479-4e24-9e49-ff162bbc65ba"}, "type": "LinearAxis", "id": "1d9da7aa-0479-4e24-9e49-ff162bbc65ba"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "6bedc772-7f57-44bd-9b07-c97c131015de"}, "type": "BasicTicker", "id": "6bedc772-7f57-44bd-9b07-c97c131015de"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "efc8e972-2ff1-4f62-8ae1-2f9d9191c69b"}, "type": "ToolEvents", "id": "efc8e972-2ff1-4f62-8ae1-2f9d9191c69b"}, {"subtype": "Chart", "type": "Plot", "id": "069d8f48-8db1-4213-83e6-a0762d73c8b2", "attributes": {"x_range": {"type": "FactorRange", "id": "0ecbf9b4-9374-4c1b-bcc7-abdf287b7e25"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "640a4c9c-2909-45fd-9b7d-86b30ccd9f52"}, "title": "Rank the following issues according to how they impact your ability to debug tests using try. [Not enough information in the logs / too confusing to debug]", "renderers": [{"type": "CategoricalAxis", "id": "29815bd8-dba6-4b8d-abb1-e3603d61ad0b"}, {"type": "LinearAxis", "id": "a8fd255f-cf58-4fbf-a214-4105f4e9e078"}, {"type": "Grid", "id": "972d2778-9743-44db-99cd-86226ca2981e"}, {"type": "GlyphRenderer", "id": "5b04be13-9e40-47d1-9f05-9fc25331a4b4"}, {"type": "GlyphRenderer", "id": "b68f5646-c2d2-41c4-8f02-e7cfc3381884"}, {"type": "Legend", "id": "b37dd1f0-78d7-4b08-b60c-717c2221a7d6"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "ad004c67-0f13-423a-92f3-66fc79c81332"}, "plot_height": 560, "doc": null, "id": "069d8f48-8db1-4213-83e6-a0762d73c8b2", "tools": [], "below": [{"type": "CategoricalAxis", "id": "29815bd8-dba6-4b8d-abb1-e3603d61ad0b"}], "left": [{"type": "LinearAxis", "id": "a8fd255f-cf58-4fbf-a214-4105f4e9e078"}]}}, {"attributes": {"callback": null, "factors": ["All Other Responses", "Not sure", "Up to 10% more productive", "Up to 25% more productive", "Up to 50% more productive", "100%+ more productive (you'd be a machine)"], "doc": null, "tags": [], "id": "0fb7017b-9b08-4096-ac18-3c1724ae9414"}, "type": "FactorRange", "id": "0fb7017b-9b08-4096-ac18-3c1724ae9414"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "897cfccc-4a61-43a6-86eb-47d8b737c5d9"}, "type": "Rect", "id": "897cfccc-4a61-43a6-86eb-47d8b737c5d9"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "d4ee0cbe-a3a2-4e87-8545-e8a8c25c97b8"}, "type": "ToolEvents", "id": "d4ee0cbe-a3a2-4e87-8545-e8a8c25c97b8"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "7d986d53-ed95-4cfc-a8d2-df18e2915763"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "aac2a500-803f-413a-8aba-7aebeaeedbe6"}, "id": "fbf8bc3c-2e15-4887-8f44-4aa92c0defb7"}, "type": "Grid", "id": "fbf8bc3c-2e15-4887-8f44-4aa92c0defb7"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "560caf84-5ab1-4fbe-9e66-ad1abd53b91c"}, "type": "Rect", "id": "560caf84-5ab1-4fbe-9e66-ad1abd53b91c"}, {"attributes": {"doc": null, "id": "72d94218-b64c-470d-9759-629d651d8cf7", "tags": []}, "type": "CategoricalTicker", "id": "72d94218-b64c-470d-9759-629d651d8cf7"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "658f20e7-2ee8-4885-9ad8-3038d8512366"}, "tags": [], "doc": null, "selection_glyph": null, "id": "0324cc46-7699-4ea5-ab82-77142adbe5fc", "glyph": {"type": "Rect", "id": "3750a6d6-6b1d-4d5e-a9a8-4367f6c5f3ab"}}, "type": "GlyphRenderer", "id": "0324cc46-7699-4ea5-ab82-77142adbe5fc"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "4164940b-1143-4f6c-b1d6-cbfd2cd7b256"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "d487e5fe-c6f3-40b3-843a-280e778ce624"}, "ticker": {"type": "BasicTicker", "id": "c6dc0ad8-f3ed-4067-bd2c-a3a6e459484c"}, "id": "a2cc4829-d58e-4edf-ad72-805ef0d3fb5c"}, "type": "LinearAxis", "id": "a2cc4829-d58e-4edf-ad72-805ef0d3fb5c"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2], "stackedPlatform": [14.5, 35.0], "Platform": [29, 70], "catFx-Team": ["No:0.666666666667", "Yes:0.666666666667"], "cat": ["No", "Yes"], "midPlatform": [14.5, 35.0], "width": [0.8, 0.8], "zero": [56.0, 142.0], "catPlatform": ["No:0.333333333333", "Yes:0.333333333333"], "stackedFx-Team": [42.5, 106.0], "midFx-Team": [13.5, 36.0], "Fx-Team": [27, 72]}, "id": "ad5d32ee-5255-4f24-8349-a00dad7d3cb1"}, "type": "ColumnDataSource", "id": "ad5d32ee-5255-4f24-8349-a00dad7d3cb1"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "de55e910-d8be-4d40-a321-d715fbe10a88"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "208d5738-7193-4bfc-b8ed-fef0f8ab9875"}, "ticker": {"type": "CategoricalTicker", "id": "a6d22fc3-7d57-4166-ae7e-c0e18f7322b4"}, "id": "dbb8a68c-1db4-484b-8896-a023174d0d3a"}, "type": "CategoricalAxis", "id": "dbb8a68c-1db4-484b-8896-a023174d0d3a"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "db85f360-0ea5-4db1-ab2c-b79cfa1beeb3"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "cff4191a-c449-47f8-a38b-1d1f4038be05"}, "ticker": {"type": "CategoricalTicker", "id": "438c6048-c333-443c-a0b6-cc3953a4bb84"}, "id": "28a96dd8-874a-4e6f-9878-7e70d5a04a95"}, "type": "CategoricalAxis", "id": "28a96dd8-874a-4e6f-9878-7e70d5a04a95"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "0aafde50-d47b-4ced-b0a1-2cc7696808cd"}, "type": "BasicTicker", "id": "0aafde50-d47b-4ced-b0a1-2cc7696808cd"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "bdd8b704-d549-4ed7-8292-b7000d0f0d4c"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "722ffc6c-b12f-43e4-8d48-0806e7d59f85"}, "ticker": {"type": "CategoricalTicker", "id": "94de1926-bfc9-4c71-bd70-4a6f7aa015fd"}, "id": "8d9f772a-75a0-4f5e-b874-bb63d1cb2cee"}, "type": "CategoricalAxis", "id": "8d9f772a-75a0-4f5e-b874-bb63d1cb2cee"}, {"subtype": "Chart", "type": "Plot", "id": "056b0be0-3c89-4cb8-b23e-6f5f17ec3629", "attributes": {"x_range": {"type": "FactorRange", "id": "a6f25e8c-9896-4d65-b15d-1ed0bd0ea17a"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "30a714e8-9618-401a-b043-ff51842bb7d3"}, "title": "How satisfied are you with the following aspects of MozReview? [The diff viewer]", "renderers": [{"type": "CategoricalAxis", "id": "cb1ee788-ecae-4f34-8b2b-f686449f928a"}, {"type": "LinearAxis", "id": "49bc09ca-718c-4f06-9ba4-1c759b35006e"}, {"type": "Grid", "id": "f8bc1891-512e-47c9-9152-c79fac56c996"}, {"type": "GlyphRenderer", "id": "22391232-0402-404e-ac43-982da63acdff"}, {"type": "GlyphRenderer", "id": "8ac35ffb-eb10-4106-896a-faf4c02ef9e9"}, {"type": "Legend", "id": "04933e38-3b37-4736-a429-d733927140ee"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "f44d34d7-e13e-4cdd-9a46-29a597039bd5"}, "plot_height": 560, "doc": null, "id": "056b0be0-3c89-4cb8-b23e-6f5f17ec3629", "tools": [], "below": [{"type": "CategoricalAxis", "id": "cb1ee788-ecae-4f34-8b2b-f686449f928a"}], "left": [{"type": "LinearAxis", "id": "49bc09ca-718c-4f06-9ba4-1c759b35006e"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "c6c37cfc-ad8d-45d2-aed2-393144d2db94"}, "orientation": "top_left", "tags": [], "doc": null, "id": "1f25013c-15b0-4a5f-8e81-d803b41766f7", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "4f2916bd-e7d2-4545-bf00-48d9629f01ce"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "ab9f4f83-68f3-4cca-a6e4-6d62c59c75e2"}]]]}, "type": "Legend", "id": "1f25013c-15b0-4a5f-8e81-d803b41766f7"}, {"attributes": {"doc": null, "id": "33401662-4490-4fc5-a7db-574407f20428", "tags": []}, "type": "CategoricalTicker", "id": "33401662-4490-4fc5-a7db-574407f20428"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "24fb8be4-1297-4c28-a4d2-1a51e68d6f76"}, "type": "ToolEvents", "id": "24fb8be4-1297-4c28-a4d2-1a51e68d6f76"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "b75fed04-40ce-4a27-ae80-68144818049a"}, "type": "Rect", "id": "b75fed04-40ce-4a27-ae80-68144818049a"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "252f9e83-9873-424e-8c67-2821935d9d1c"}, "tags": [], "doc": null, "selection_glyph": null, "id": "67693119-85f7-4b09-99dd-1b723bf1d717", "glyph": {"type": "Rect", "id": "6adafe76-96cb-48a0-b95d-b743abd26865"}}, "type": "GlyphRenderer", "id": "67693119-85f7-4b09-99dd-1b723bf1d717"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "Never", "Over a year ago", "A few months ago"], "doc": null, "tags": [], "id": "7004cdb2-812f-4c72-b5e5-7403c578ac78"}, "type": "FactorRange", "id": "7004cdb2-812f-4c72-b5e5-7403c578ac78"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "92ff98ee-44de-47b6-a03b-27b8d7200a4e"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "a9de2488-2b89-49af-b9d4-6d2589aaac89"}, "ticker": {"type": "CategoricalTicker", "id": "f1311ab3-108d-4685-b765-ad64bf45b76d"}, "id": "b609d8a4-d6a2-4d3a-b791-afc1c1092dd7"}, "type": "CategoricalAxis", "id": "b609d8a4-d6a2-4d3a-b791-afc1c1092dd7"}, {"attributes": {"callback": null, "factors": ["N/A", "Not satisfied at all", "Below average", "Average", "Above average", "It's awesome!"], "doc": null, "tags": [], "id": "62b6f854-6eff-40a3-8fec-7319500862dc"}, "type": "FactorRange", "id": "62b6f854-6eff-40a3-8fec-7319500862dc"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "71e4746f-9dd0-432e-8cd6-63dc01dda746"}, "orientation": "top_left", "tags": [], "doc": null, "id": "4c925b8c-837d-4a62-933a-6ceed8bb24c5", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "b90fe00c-9ebc-45f1-8d9c-e8563110f329"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "def04223-5734-4770-b882-24870046e438"}]]]}, "type": "Legend", "id": "4c925b8c-837d-4a62-933a-6ceed8bb24c5"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "acb6eec7-3b9e-45f3-93d1-40d887bd6d3a"}, "tags": [], "doc": null, "selection_glyph": null, "id": "c99de7ed-41a7-425b-b4aa-86d18737ceb8", "glyph": {"type": "Rect", "id": "f9d6670b-8d75-45d3-8d2f-d630231b198b"}}, "type": "GlyphRenderer", "id": "c99de7ed-41a7-425b-b4aa-86d18737ceb8"}, {"attributes": {"doc": null, "id": "5eabb731-3087-4ad8-a064-2a7dfcce09a6", "tags": []}, "type": "CategoricalTicker", "id": "5eabb731-3087-4ad8-a064-2a7dfcce09a6"}, {"attributes": {"doc": null, "id": "8c3dc2d0-ebdb-4d08-b527-f988708d5b72", "tags": []}, "type": "CategoricalTicker", "id": "8c3dc2d0-ebdb-4d08-b527-f988708d5b72"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "047c1b5e-b1e2-4ec8-879c-81ae48cb24f6"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "b0fd2362-6b49-47dc-b8ca-d68619bf134f"}, "ticker": {"type": "CategoricalTicker", "id": "2e445a7d-0f93-40e5-a10d-2b3696bc6910"}, "id": "a904bc96-1adb-47fa-93df-af82ce09e27c"}, "type": "CategoricalAxis", "id": "a904bc96-1adb-47fa-93df-af82ce09e27c"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "cde90c72-d305-42a6-94aa-22b50e254594"}, "tags": [], "doc": null, "selection_glyph": null, "id": "a1929c93-a96d-4f32-9334-81a3c283c992", "glyph": {"type": "Rect", "id": "1a067b38-b6bf-434b-ab7d-6fae10a208a0"}}, "type": "GlyphRenderer", "id": "a1929c93-a96d-4f32-9334-81a3c283c992"}, {"subtype": "Chart", "type": "Plot", "id": "216e75b5-aa2b-43ac-9e72-6bf13e161525", "attributes": {"x_range": {"type": "FactorRange", "id": "9993e7d7-590c-4df2-9681-343a31f2d914"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "9ea40b7c-25aa-49e0-9b35-9aa64279de40"}, "title": "Thinking of the ways our test automation works in continuous integration, rank the following potential improvements in terms of their impact on your productivity. [Make it easier to make changes to the test harnesses or infrastructure]", "renderers": [{"type": "CategoricalAxis", "id": "e2e8f142-cdd6-4daf-a34e-3bb549522d49"}, {"type": "LinearAxis", "id": "0c4c4c9a-4893-491f-8e3e-4d34487ab91c"}, {"type": "Grid", "id": "8f989c40-fd89-4d6c-b1d0-36ff8effb622"}, {"type": "GlyphRenderer", "id": "f3a88762-bbbf-4ae5-9e7b-f469e2efc29e"}, {"type": "GlyphRenderer", "id": "4475dc8b-6b66-40fb-81f0-f211e70e0044"}, {"type": "Legend", "id": "ff3eb07b-3a14-4637-a0ba-2e5745d89c54"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "955f2852-d3bf-44b8-821d-e850ece60456"}, "plot_height": 560, "doc": null, "id": "216e75b5-aa2b-43ac-9e72-6bf13e161525", "tools": [], "below": [{"type": "CategoricalAxis", "id": "e2e8f142-cdd6-4daf-a34e-3bb549522d49"}], "left": [{"type": "LinearAxis", "id": "0c4c4c9a-4893-491f-8e3e-4d34487ab91c"}]}}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "02b5b92f-627e-40d2-8ca9-abc315c35a6a"}, "type": "Rect", "id": "02b5b92f-627e-40d2-8ca9-abc315c35a6a"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ca660824-da9b-42c8-80f1-b629a907c373"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "f1a0f2b0-22c4-40b9-a5ae-1660d25caa6d"}, "ticker": {"type": "BasicTicker", "id": "933d675a-3739-40b3-8973-f27c50d62549"}, "id": "deb5d5c0-381f-4938-9be7-4d98cf0e83b7"}, "type": "LinearAxis", "id": "deb5d5c0-381f-4938-9be7-4d98cf0e83b7"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "5fd38323-34c6-446c-a7b2-30631c837419"}, "type": "Rect", "id": "5fd38323-34c6-446c-a7b2-30631c837419"}, {"attributes": {"end": 51.7, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "9c9efa08-1964-4b29-9eeb-af2d3c961ebe"}, "type": "Range1d", "id": "9c9efa08-1964-4b29-9eeb-af2d3c961ebe"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A (not relevant to me)", "Keep about the same", "Increase investment", "Drastically increase investment"], "doc": null, "tags": [], "id": "3ba230ca-7427-41fd-aacc-01f196f0eca4"}, "type": "FactorRange", "id": "3ba230ca-7427-41fd-aacc-01f196f0eca4"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [3.5, 10.5, 7.5, 12.5, 15.0], "Platform": [7, 21, 15, 25, 30], "catFx-Team": ["N/A:0.666666666667", "1 = least impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "midPlatform": [3.5, 10.5, 7.5, 12.5, 15.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [9.0, 50.0, 25.0, 52.0, 57.0], "catPlatform": ["N/A:0.333333333333", "1 = least impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [8.0, 35.5, 20.0, 38.5, 43.5], "midFx-Team": [1.0, 14.5, 5.0, 13.5, 13.5], "Fx-Team": [2, 29, 10, 27, 27]}, "id": "8799f65e-b8f4-4c14-8226-4d08270f9b99"}, "type": "ColumnDataSource", "id": "8799f65e-b8f4-4c14-8226-4d08270f9b99"}, {"attributes": {"end": 31.900000000000002, "callback": null, "doc": null, "tags": [], "start": 0, "id": "30a714e8-9618-401a-b043-ff51842bb7d3"}, "type": "Range1d", "id": "30a714e8-9618-401a-b043-ff51842bb7d3"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ef80c114-5cbf-42f5-9b3e-220a564369b4"}, "orientation": "top_left", "tags": [], "doc": null, "id": "24fff965-796c-4028-a29a-6456ab1440f5", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "6473a91f-8cec-4750-be3d-b7b146bc329a"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "9e1b4b97-233c-4577-a733-03c9fcf9d63d"}]]]}, "type": "Legend", "id": "24fff965-796c-4028-a29a-6456ab1440f5"}, {"attributes": {"doc": null, "id": "d993c39e-457f-4885-ae19-bf7ac7813c27", "tags": []}, "type": "BasicTickFormatter", "id": "d993c39e-457f-4885-ae19-bf7ac7813c27"}, {"attributes": {"end": 35.2, "callback": null, "doc": null, "tags": [], "start": 0, "id": "10fa1bdd-6325-4257-8845-0701e3dd45f7"}, "type": "Range1d", "id": "10fa1bdd-6325-4257-8845-0701e3dd45f7"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "954a76aa-3c85-4a4e-8ac9-d3dafb8a5825"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "d93e2fc4-e783-4b84-b2e2-a847cc07c2cc"}, "ticker": {"type": "BasicTicker", "id": "fe2923f6-3256-48df-82d6-ec5d8ed44821"}, "id": "c88e9a50-492f-4a30-84f7-29790d8e2eb1"}, "type": "LinearAxis", "id": "c88e9a50-492f-4a30-84f7-29790d8e2eb1"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "8799f65e-b8f4-4c14-8226-4d08270f9b99"}, "tags": [], "doc": null, "selection_glyph": null, "id": "8006ca95-6be6-4bbf-b69c-2c2570b52c26", "glyph": {"type": "Rect", "id": "fdf141f1-180e-4f97-a1b8-8a64a302bfbe"}}, "type": "GlyphRenderer", "id": "8006ca95-6be6-4bbf-b69c-2c2570b52c26"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "809016c3-2f8e-4771-aa32-f933297dcf2e"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "6babb469-8d32-40bc-a028-d2a14066db7c"}, "id": "711bd3a7-9406-40a5-ba7a-c90a8c160d99"}, "type": "Grid", "id": "711bd3a7-9406-40a5-ba7a-c90a8c160d99"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "87c4eda2-0cee-4548-8dcd-110be1d775b9"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "ccf8ce1e-4cc3-42df-80e5-8ec175696aa6"}, "ticker": {"type": "CategoricalTicker", "id": "34e8ef01-ed0e-45c3-bb5a-f4b99766754b"}, "id": "1f13f458-ccde-40e3-8b09-fdca0ae3b1bf"}, "type": "CategoricalAxis", "id": "1f13f458-ccde-40e3-8b09-fdca0ae3b1bf"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ab788251-b12b-4ac1-8f06-309a94a3e42e"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "a5dcebfa-0885-4907-984e-295923b31b6e"}, "ticker": {"type": "CategoricalTicker", "id": "a5720ff1-009a-4ff9-8833-b283171cb216"}, "id": "5f92b838-310b-4388-bd07-9ec581772125"}, "type": "CategoricalAxis", "id": "5f92b838-310b-4388-bd07-9ec581772125"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "7ba8e871-2e68-45d1-a5e3-9698d3843372"}, "tags": [], "doc": null, "selection_glyph": null, "id": "4dd5199d-1fec-4126-b6e8-0c0992ba7431", "glyph": {"type": "Rect", "id": "7bec8e26-e36e-40e4-bbbe-da99652a828f"}}, "type": "GlyphRenderer", "id": "4dd5199d-1fec-4126-b6e8-0c0992ba7431"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "35c94ce8-b8eb-4f3c-97f4-957c3cc3e63e"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "8d167d3d-6b97-4584-aa19-8011ec16e1f5"}, "id": "d9084d0a-82ce-4dc5-b2ee-5c173375ca68"}, "type": "Grid", "id": "d9084d0a-82ce-4dc5-b2ee-5c173375ca68"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "1e6d4bdf-a9a0-4100-8780-d93d2ad03e66"}, "tags": [], "doc": null, "selection_glyph": null, "id": "fb0ea017-41f9-45c0-8c8d-6a32918d45db", "glyph": {"type": "Rect", "id": "ae40b8ef-d2e1-4320-9069-991d2a31752f"}}, "type": "GlyphRenderer", "id": "fb0ea017-41f9-45c0-8c8d-6a32918d45db"}, {"attributes": {"doc": null, "id": "4cbeda05-8cfc-4ed3-b650-8555de13470e", "tags": []}, "type": "CategoricalTicker", "id": "4cbeda05-8cfc-4ed3-b650-8555de13470e"}, {"attributes": {"doc": null, "id": "7ec4a083-33f0-4d06-bbaa-53ded1426322", "tags": []}, "type": "BasicTickFormatter", "id": "7ec4a083-33f0-4d06-bbaa-53ded1426322"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "ad3b9ecd-512d-4598-b4ed-0c916aa036be"}, "type": "Rect", "id": "ad3b9ecd-512d-4598-b4ed-0c916aa036be"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "7704e2a2-aab2-481b-89b4-44eec5d34f24"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "30e1995e-2980-41e3-9dcb-e803035f87d2"}, "id": "479d4815-69f2-469c-8d81-cc24d789927c"}, "type": "Grid", "id": "479d4815-69f2-469c-8d81-cc24d789927c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "e4c06cfb-dde1-40a0-9b68-2da7d8f33ecb"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "d28b919c-e83c-4a89-a63f-f8f8c25730f5"}, "ticker": {"type": "CategoricalTicker", "id": "e527198d-70cf-4eb8-a5c3-31c186673f2f"}, "id": "0f9da93c-00ef-4d21-b1de-ff1f35157b57"}, "type": "CategoricalAxis", "id": "0f9da93c-00ef-4d21-b1de-ff1f35157b57"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ec6ffc7e-8da4-405e-b370-a3d196a2ef2c"}, "orientation": "top_left", "tags": [], "doc": null, "id": "666c6053-9fdd-4f2d-a08f-158a6163ce4b", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "65c9faaf-4261-4f6e-81e6-4b7c561bb0a9"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "2b1d17af-e529-48e2-82f6-901c20803caf"}]]]}, "type": "Legend", "id": "666c6053-9fdd-4f2d-a08f-158a6163ce4b"}, {"subtype": "Chart", "type": "Plot", "id": "590387a1-ec15-41cd-8526-f5db5b9fe8d9", "attributes": {"x_range": {"type": "FactorRange", "id": "3fa5eeb1-7a5f-47f4-a805-2dfdf2da2bfb"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "c884252e-b737-4e3a-9930-2afea8e58ad4"}, "title": "How satisfied are you with the following aspects of MozReview? [Review flag interaction with Bugzilla]", "renderers": [{"type": "CategoricalAxis", "id": "b421b374-f589-4acc-bd31-13b055f10871"}, {"type": "LinearAxis", "id": "54892d2b-f6f5-46c4-a750-6a4ce8fe4f4e"}, {"type": "Grid", "id": "62034004-aa65-49fb-aa9b-e98a87e94624"}, {"type": "GlyphRenderer", "id": "b4180a18-96ec-4299-a6ac-989548b69a68"}, {"type": "GlyphRenderer", "id": "f0929213-6d18-4c1b-98f0-716e2b85972f"}, {"type": "Legend", "id": "d82e4702-ca05-4386-947b-4da6c9e91b5f"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "3fad6639-adfa-4f9d-b07e-85a34c25053c"}, "plot_height": 560, "doc": null, "id": "590387a1-ec15-41cd-8526-f5db5b9fe8d9", "tools": [], "below": [{"type": "CategoricalAxis", "id": "b421b374-f589-4acc-bd31-13b055f10871"}], "left": [{"type": "LinearAxis", "id": "54892d2b-f6f5-46c4-a750-6a4ce8fe4f4e"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fdce97de-63d3-4989-b605-146792ec8c17"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "9b5ebd67-7791-40c7-b434-1f4f7f25863a"}, "ticker": {"type": "CategoricalTicker", "id": "4d636013-24d5-43f1-bd93-c6d6c9c3d66f"}, "id": "2e938853-0133-40fb-a2fc-3fa368145b80"}, "type": "CategoricalAxis", "id": "2e938853-0133-40fb-a2fc-3fa368145b80"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "bc94c9e4-069f-49e6-8179-d98bb2fc2ada"}, "type": "ToolEvents", "id": "bc94c9e4-069f-49e6-8179-d98bb2fc2ada"}, {"attributes": {"doc": null, "id": "66cf4b29-6e5b-4385-9046-07f3d2af1cc9", "tags": []}, "type": "CategoricalTickFormatter", "id": "66cf4b29-6e5b-4385-9046-07f3d2af1cc9"}, {"attributes": {"end": 27.500000000000004, "callback": null, "doc": null, "tags": [], "start": 0, "id": "8debe68e-9c18-4a89-91db-0af3e68c3430"}, "type": "Range1d", "id": "8debe68e-9c18-4a89-91db-0af3e68c3430"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "d3178d67-d38c-482c-95a1-2b3a047d0c5f"}, "tags": [], "doc": null, "selection_glyph": null, "id": "2bad58f1-596d-4f37-932e-66881c8fb737", "glyph": {"type": "Rect", "id": "ffcc49a7-9373-4fdf-84db-e1103f6ffcf4"}}, "type": "GlyphRenderer", "id": "2bad58f1-596d-4f37-932e-66881c8fb737"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "ed0367de-af93-4c7c-b50e-d4b713292aaa"}, "type": "BasicTicker", "id": "ed0367de-af93-4c7c-b50e-d4b713292aaa"}, {"subtype": "Chart", "type": "Plot", "id": "fb35fd90-f4e1-4990-9a8e-8a7fe92f8c1d", "attributes": {"x_range": {"type": "FactorRange", "id": "639c6d12-a3a8-419a-89ed-f07487857956"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "09b3c7fa-70ef-43af-9929-001ec8e893df"}, "title": "If you could make one thing awesome, what would it be?", "renderers": [{"type": "CategoricalAxis", "id": "fba6fd91-aafd-4bed-8192-a23678977f09"}, {"type": "LinearAxis", "id": "d77c3931-1d73-4fa1-9cad-ca427fd6c28b"}, {"type": "Grid", "id": "a26e06bd-ed4d-48c3-a229-5b52a10a6229"}, {"type": "GlyphRenderer", "id": "37ae07a0-2230-4e70-95c2-d5b7835b9624"}, {"type": "GlyphRenderer", "id": "8127be8d-620e-487c-b3dd-740d6b283dc2"}, {"type": "Legend", "id": "f25a79d3-be8e-417c-be60-5b7b51099d32"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "3d13b868-e736-488d-b5ae-f702b7bb6d91"}, "plot_height": 560, "doc": null, "id": "fb35fd90-f4e1-4990-9a8e-8a7fe92f8c1d", "tools": [], "below": [{"type": "CategoricalAxis", "id": "fba6fd91-aafd-4bed-8192-a23678977f09"}], "left": [{"type": "LinearAxis", "id": "d77c3931-1d73-4fa1-9cad-ca427fd6c28b"}]}}, {"attributes": {"doc": null, "id": "b2336fc9-e3e6-46a3-9298-880bf5eeae8c", "tags": []}, "type": "CategoricalTickFormatter", "id": "b2336fc9-e3e6-46a3-9298-880bf5eeae8c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fb35fd90-f4e1-4990-9a8e-8a7fe92f8c1d"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "ec7976a7-93f9-486d-b6b7-df2e463a6151"}, "ticker": {"type": "BasicTicker", "id": "1387e135-ef43-4d7d-9470-1ebad54f26b0"}, "id": "d77c3931-1d73-4fa1-9cad-ca427fd6c28b"}, "type": "LinearAxis", "id": "d77c3931-1d73-4fa1-9cad-ca427fd6c28b"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "718dc7c5-23ec-4c00-af8a-662a9ac923cf"}, "tags": [], "doc": null, "selection_glyph": null, "id": "5e0cb115-8525-4e8c-b030-f168c4d3a2ae", "glyph": {"type": "Rect", "id": "54acb8e7-6a10-4b40-a359-8c39918d1bc2"}}, "type": "GlyphRenderer", "id": "5e0cb115-8525-4e8c-b030-f168c4d3a2ae"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "No impact / Not applicable", "A little impact", "Moderate impact", "Significant impact"], "doc": null, "tags": [], "id": "d79feb73-5d09-4ab0-b753-b0aec269d6a8"}, "type": "FactorRange", "id": "d79feb73-5d09-4ab0-b753-b0aec269d6a8"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A", "Extremely dissatisfied", "Below average", "Average", "Above average"], "doc": null, "tags": [], "id": "0c249752-8c37-43ae-9bab-cac962e863f0"}, "type": "FactorRange", "id": "0c249752-8c37-43ae-9bab-cac962e863f0"}, {"attributes": {"doc": null, "id": "cc9935d6-0311-44bd-b5f4-ff9bdce2ad34", "tags": []}, "type": "BasicTickFormatter", "id": "cc9935d6-0311-44bd-b5f4-ff9bdce2ad34"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "68867bb8-e0b8-433b-b5e4-63ea8e54af1b"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "8938435c-59ae-4313-b3b9-cf8bab25ea53"}, "ticker": {"type": "CategoricalTicker", "id": "a49cddf8-5eeb-49fd-875e-e4707a0559eb"}, "id": "62c6410f-163a-43c2-952f-dafbead3cff9"}, "type": "CategoricalAxis", "id": "62c6410f-163a-43c2-952f-dafbead3cff9"}, {"attributes": {"callback": null, "factors": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "abcf9abd-1531-4a90-9f05-978e3d6541c2"}, "type": "FactorRange", "id": "abcf9abd-1531-4a90-9f05-978e3d6541c2"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [1.0, 7.0, 7.5, 13.5, 20.0], "Platform": [2, 14, 15, 27, 40], "catFx-Team": ["All Other Responses:0.666666666667", "1 = least impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["All Other Responses", "1 = least impact", "2", "3", "4 = most impact"], "midPlatform": [1.0, 7.0, 7.5, 13.5, 20.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [2.0, 27.0, 31.0, 51.0, 85.0], "catPlatform": ["All Other Responses:0.333333333333", "1 = least impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [2.0, 20.5, 23.0, 39.0, 62.5], "midFx-Team": [0.0, 6.5, 8.0, 12.0, 22.5], "Fx-Team": [0, 13, 16, 24, 45]}, "id": "31f820dd-e577-4d1c-970a-390b8d9ed532"}, "type": "ColumnDataSource", "id": "31f820dd-e577-4d1c-970a-390b8d9ed532"}, {"attributes": {"end": 48.400000000000006, "callback": null, "doc": null, "tags": [], "start": 0, "id": "f6eeb536-910f-45ee-a19b-8362cc999770"}, "type": "Range1d", "id": "f6eeb536-910f-45ee-a19b-8362cc999770"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "c1ec58fd-06ca-4096-91c8-7014b66a001c"}, "type": "Rect", "id": "c1ec58fd-06ca-4096-91c8-7014b66a001c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "047c1b5e-b1e2-4ec8-879c-81ae48cb24f6"}, "orientation": "top_left", "tags": [], "doc": null, "id": "8a9424aa-1e11-435e-a652-24c67d2dbacb", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "97f6427a-250e-4e4b-bdeb-6548bcf47908"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "09461497-7c6a-4c59-be1f-8f86ea4d35b9"}]]]}, "type": "Legend", "id": "8a9424aa-1e11-435e-a652-24c67d2dbacb"}, {"attributes": {"doc": null, "id": "78c71b32-572e-4070-b1e3-7cd74e6fa531", "tags": []}, "type": "CategoricalTickFormatter", "id": "78c71b32-572e-4070-b1e3-7cd74e6fa531"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a99a4117-a109-4400-8546-282b15a9edc2"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "ef9ace33-d4b8-4f47-a384-53b9b2b4f5f6"}, "id": "70c081ff-7881-477c-a213-c00d94512d0d"}, "type": "Grid", "id": "70c081ff-7881-477c-a213-c00d94512d0d"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "e2331646-7b27-4d8b-8604-4fadcd1a8ce8"}, "tags": [], "doc": null, "selection_glyph": null, "id": "ed87681b-1990-4a87-9f23-565eb53e3494", "glyph": {"type": "Rect", "id": "e26958b0-bc3b-4764-90f3-f8d0ee6370ef"}}, "type": "GlyphRenderer", "id": "ed87681b-1990-4a87-9f23-565eb53e3494"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "b46ece09-5bc0-4b15-8abc-5323e3483793"}, "tags": [], "doc": null, "selection_glyph": null, "id": "f50d2a04-0bf0-4fbc-a587-305a776541fd", "glyph": {"type": "Rect", "id": "9cf8e0f0-feb5-4baf-abde-2a6d421edcba"}}, "type": "GlyphRenderer", "id": "f50d2a04-0bf0-4fbc-a587-305a776541fd"}, {"attributes": {"doc": null, "id": "d045a2d5-a61c-4173-b446-6b341621e38d", "tags": []}, "type": "CategoricalTicker", "id": "d045a2d5-a61c-4173-b446-6b341621e38d"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "6693b36c-5157-4caa-875c-7bbad2923a1c"}, "type": "Rect", "id": "6693b36c-5157-4caa-875c-7bbad2923a1c"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "f9d6670b-8d75-45d3-8d2f-d630231b198b"}, "type": "Rect", "id": "f9d6670b-8d75-45d3-8d2f-d630231b198b"}, {"attributes": {"doc": null, "id": "b64ebe09-d8f3-4084-9c79-f77af1158e85", "tags": []}, "type": "BasicTickFormatter", "id": "b64ebe09-d8f3-4084-9c79-f77af1158e85"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "21b020b8-d036-49b7-8d17-63c63bf92f12"}, "type": "ToolEvents", "id": "21b020b8-d036-49b7-8d17-63c63bf92f12"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "3caa5919-ffad-43d5-bf95-b6c6b5b80641"}, "type": "ToolEvents", "id": "3caa5919-ffad-43d5-bf95-b6c6b5b80641"}, {"attributes": {"doc": null, "id": "079f31ea-a476-4000-b49d-9f83fce9668b", "tags": []}, "type": "BasicTickFormatter", "id": "079f31ea-a476-4000-b49d-9f83fce9668b"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [1.0, 3.0, 5.5, 13.0, 27.0], "Platform": [2, 6, 11, 26, 54], "catFx-Team": ["All Other Responses:0.666666666667", "1 = little impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["All Other Responses", "1 = little impact", "2", "3", "4 = most impact"], "midPlatform": [1.0, 3.0, 5.5, 13.0, 27.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [4.0, 14.0, 32.0, 47.0, 97.0], "catPlatform": ["All Other Responses:0.333333333333", "1 = little impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [3.0, 10.0, 21.5, 36.5, 75.5], "midFx-Team": [1.0, 4.0, 10.5, 10.5, 21.5], "Fx-Team": [2, 8, 21, 21, 43]}, "id": "3ac4b7db-4dfa-475d-a120-b5261357c8d9"}, "type": "ColumnDataSource", "id": "3ac4b7db-4dfa-475d-a120-b5261357c8d9"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "1 - no impact", "2 - little impact", "3 - a fair amount of impact", "4 - a significant amount of impact"], "doc": null, "tags": [], "id": "d76cc231-43b3-4614-a57d-3582e64f13c5"}, "type": "FactorRange", "id": "d76cc231-43b3-4614-a57d-3582e64f13c5"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A (not relevant to me)", "Cut all investment", "Keep about the same", "Increase investment"], "doc": null, "tags": [], "id": "4192cfaa-ae2f-4578-8a1a-bcc85a1d97ac"}, "type": "FactorRange", "id": "4192cfaa-ae2f-4578-8a1a-bcc85a1d97ac"}, {"attributes": {"doc": null, "id": "a5dcebfa-0885-4907-984e-295923b31b6e", "tags": []}, "type": "CategoricalTickFormatter", "id": "a5dcebfa-0885-4907-984e-295923b31b6e"}, {"attributes": {"doc": null, "id": "890d1fad-276b-473e-a794-3e90b50bf192", "tags": []}, "type": "BasicTickFormatter", "id": "890d1fad-276b-473e-a794-3e90b50bf192"}, {"attributes": {"doc": null, "id": "d3e1af49-d962-4d98-b9c7-d370769d897a", "tags": []}, "type": "CategoricalTicker", "id": "d3e1af49-d962-4d98-b9c7-d370769d897a"}, {"attributes": {"callback": null, "factors": ["A custom view of just my pushes and other data", "All Other Responses", "Better experience on mobile devices", "New ways to organize / view the data", "User profile with custom default settings"], "doc": null, "tags": [], "id": "bc4d8313-483e-4fc7-87a2-68586bbb4e7b"}, "type": "FactorRange", "id": "bc4d8313-483e-4fc7-87a2-68586bbb4e7b"}, {"attributes": {"doc": null, "id": "9c31e69d-38be-4889-9880-0362aed1685d", "tags": []}, "type": "BasicTickFormatter", "id": "9c31e69d-38be-4889-9880-0362aed1685d"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "4fbf2e70-9a9f-4ce9-91c6-236e8487ca17"}, "type": "Rect", "id": "4fbf2e70-9a9f-4ce9-91c6-236e8487ca17"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "30f51846-4a6f-4e88-9828-bec05533d700"}, "type": "Rect", "id": "30f51846-4a6f-4e88-9828-bec05533d700"}, {"attributes": {"doc": null, "id": "ce7b3b0a-ea12-45d5-8d0c-8d9769b20303", "tags": []}, "type": "CategoricalTicker", "id": "ce7b3b0a-ea12-45d5-8d0c-8d9769b20303"}, {"attributes": {"doc": null, "id": "0af217d6-b26f-419b-8576-cae4e63a11a8", "tags": []}, "type": "CategoricalTicker", "id": "0af217d6-b26f-419b-8576-cae4e63a11a8"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "bdd8b704-d549-4ed7-8292-b7000d0f0d4c"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "f019de16-1599-476f-8dbc-d13249918fe0"}, "id": "de4b6485-a1ec-4bad-8f7d-321c3ef82092"}, "type": "Grid", "id": "de4b6485-a1ec-4bad-8f7d-321c3ef82092"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "9d949c54-749d-42b8-8c99-0c0fbfdfadba"}, "type": "Rect", "id": "9d949c54-749d-42b8-8c99-0c0fbfdfadba"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "c56fb037-178a-4fd3-8778-77369fca3c04"}, "type": "Rect", "id": "c56fb037-178a-4fd3-8778-77369fca3c04"}, {"subtype": "Chart", "type": "Plot", "id": "5c4bbcf7-2176-4cbe-8036-1486def97d63", "attributes": {"x_range": {"type": "FactorRange", "id": "ff0b13bb-fb53-4b2c-b313-bfcc49e1f5fd"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "e379a8f5-40f8-4de1-8501-0800e58c8992"}, "title": "Do you use GitHub at all?", "renderers": [{"type": "CategoricalAxis", "id": "dbaa61d4-a86d-49e7-8ce5-1d5e30d98e2e"}, {"type": "LinearAxis", "id": "446f9443-8b8d-4c36-9d7a-e54ee56b1738"}, {"type": "Grid", "id": "647661dd-29ae-423a-8ff6-12808ca39004"}, {"type": "GlyphRenderer", "id": "52be267a-5201-4a4d-9c74-c421cc3bf742"}, {"type": "GlyphRenderer", "id": "7066ccae-adb3-48ec-a610-b8044b517190"}, {"type": "Legend", "id": "b2649822-b194-4e71-919c-c90e4825c27a"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "de0bb374-68de-4920-b046-be0d02c3562b"}, "plot_height": 560, "doc": null, "id": "5c4bbcf7-2176-4cbe-8036-1486def97d63", "tools": [], "below": [{"type": "CategoricalAxis", "id": "dbaa61d4-a86d-49e7-8ce5-1d5e30d98e2e"}], "left": [{"type": "LinearAxis", "id": "446f9443-8b8d-4c36-9d7a-e54ee56b1738"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "3087717d-09a2-45a8-9427-88230aa142b8"}, "orientation": "top_left", "tags": [], "doc": null, "id": "33b12c6e-e923-4c9d-9d30-d03209dc5b53", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "1f9afa6a-2138-4d3a-b60b-b67930b1c2d0"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "257cc878-2b37-44ff-9d05-6c8966a1d5d7"}]]]}, "type": "Legend", "id": "33b12c6e-e923-4c9d-9d30-d03209dc5b53"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "28a70747-dfae-496f-8198-8baa49b1e921"}, "type": "Rect", "id": "28a70747-dfae-496f-8198-8baa49b1e921"}, {"attributes": {"end": 59.400000000000006, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "10e8700a-a5ba-4ee1-960c-e2cad638b59f"}, "type": "Range1d", "id": "10e8700a-a5ba-4ee1-960c-e2cad638b59f"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "09ed6f22-cf01-44ac-8461-c8726dcf442e"}, "type": "ToolEvents", "id": "09ed6f22-cf01-44ac-8461-c8726dcf442e"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "d1b1878c-ef69-448a-8398-2c49a0559edc"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "f673dd49-06fe-47cf-aa4a-5c0fe8a89033"}, "id": "299c7ba3-b4d2-4c83-861d-ca221e7fc818"}, "type": "Grid", "id": "299c7ba3-b4d2-4c83-861d-ca221e7fc818"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "6df09cff-c090-471e-a0bc-b4f05c5264d9"}, "type": "ToolEvents", "id": "6df09cff-c090-471e-a0bc-b4f05c5264d9"}, {"subtype": "Chart", "type": "Plot", "id": "add6fa57-a92a-45e7-b63a-7e9ee8f8821f", "attributes": {"x_range": {"type": "FactorRange", "id": "dbf05ac9-0e7f-4d92-8ea5-3c56b94fd144"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "de517f23-fa32-4250-9479-a2c3e07772be"}, "title": "Rank the following issues according to how they impact your ability to debug tests locally. [Hard to reproduce failures on my machine]", "renderers": [{"type": "CategoricalAxis", "id": "58a520cd-d2ee-4a1b-9d3f-0e027b0fff21"}, {"type": "LinearAxis", "id": "ecbc8184-b422-4257-894e-40cbf0ee990b"}, {"type": "Grid", "id": "0859a6d5-75e4-4dcf-bb01-02ea00f1eaf1"}, {"type": "GlyphRenderer", "id": "885c7856-7d74-4922-93d5-0906b160ee56"}, {"type": "GlyphRenderer", "id": "688ad58b-c747-41a9-8d58-23cd30ab40b1"}, {"type": "Legend", "id": "97790dc3-8b9b-4728-ba39-bfca7e54a9c9"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "74ffa22b-24db-4aad-bbc8-b8b1cb5424ca"}, "plot_height": 560, "doc": null, "id": "add6fa57-a92a-45e7-b63a-7e9ee8f8821f", "tools": [], "below": [{"type": "CategoricalAxis", "id": "58a520cd-d2ee-4a1b-9d3f-0e027b0fff21"}], "left": [{"type": "LinearAxis", "id": "ecbc8184-b422-4257-894e-40cbf0ee990b"}]}}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2], "stackedPlatform": [2.5, 44.5, 2.5], "Platform": [5, 89, 5], "catFx-Team": ["All Other Responses:0.666666666667", "C/C++:0.666666666667", "Javascript:0.666666666667"], "cat": ["All Other Responses", "C/C++", "Javascript"], "midPlatform": [2.5, 44.5, 2.5], "width": [0.8, 0.8, 0.8], "zero": [7.0, 94.0, 96.0], "catPlatform": ["All Other Responses:0.333333333333", "C/C++:0.333333333333", "Javascript:0.333333333333"], "stackedFx-Team": [6.0, 91.5, 50.5], "midFx-Team": [1.0, 2.5, 45.5], "Fx-Team": [2, 5, 91]}, "id": "792c1e3d-c994-46e4-88aa-cc467e76f046"}, "type": "ColumnDataSource", "id": "792c1e3d-c994-46e4-88aa-cc467e76f046"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "84738b33-a417-4be7-8e50-69f0bfe14e87"}, "tags": [], "doc": null, "selection_glyph": null, "id": "89ee364c-7d72-4b43-a1f5-817097dbfd1a", "glyph": {"type": "Rect", "id": "e1a445cc-3896-4ff6-9893-f4d26e8a0385"}}, "type": "GlyphRenderer", "id": "89ee364c-7d72-4b43-a1f5-817097dbfd1a"}, {"subtype": "Chart", "type": "Plot", "id": "c0211ed4-da00-466c-ac3c-358831743026", "attributes": {"x_range": {"type": "FactorRange", "id": "41fa241b-3c0c-4688-8856-678982acfd23"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "e376507b-d71e-4807-b975-1e5578b4a3ae"}, "title": "Have you submitted a review to MozReview?", "renderers": [{"type": "CategoricalAxis", "id": "f39d2796-fada-45bc-9544-5deca778e8ed"}, {"type": "LinearAxis", "id": "e014463a-a1d7-4a5d-827e-80a5236b4b40"}, {"type": "Grid", "id": "8f90eecd-ede5-465d-9333-ad73d7d2c70d"}, {"type": "GlyphRenderer", "id": "f6f26af8-e31d-4d48-8af0-e4555d7e75c1"}, {"type": "GlyphRenderer", "id": "76e9e23b-9d1c-4a33-8f09-1da03107e3aa"}, {"type": "Legend", "id": "a082bed3-e96b-48fb-a4bb-f43dc5134d33"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "7c63424d-6abb-4a37-8231-e384ff94c558"}, "plot_height": 560, "doc": null, "id": "c0211ed4-da00-466c-ac3c-358831743026", "tools": [], "below": [{"type": "CategoricalAxis", "id": "f39d2796-fada-45bc-9544-5deca778e8ed"}], "left": [{"type": "LinearAxis", "id": "e014463a-a1d7-4a5d-827e-80a5236b4b40"}]}}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "ab824824-2231-4cc1-86ce-963a739d2c8e"}, "type": "Rect", "id": "ab824824-2231-4cc1-86ce-963a739d2c8e"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "8169780e-90e6-4d0e-a83c-c8aae3bbe2b8"}, "type": "BasicTicker", "id": "8169780e-90e6-4d0e-a83c-c8aae3bbe2b8"}, {"attributes": {"doc": null, "id": "7679132e-72bb-4f83-8efc-0d5ef434376b", "tags": []}, "type": "BasicTickFormatter", "id": "7679132e-72bb-4f83-8efc-0d5ef434376b"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [3.0, 10.0, 17.5, 11.0, 7.5], "Platform": [6, 20, 35, 22, 15], "catFx-Team": ["All Other Responses:0.666666666667", "1 = least impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["All Other Responses", "1 = least impact", "2", "3", "4 = most impact"], "midPlatform": [3.0, 10.0, 17.5, 11.0, 7.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [6.0, 38.0, 62.0, 54.0, 33.0], "catPlatform": ["All Other Responses:0.333333333333", "1 = least impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [6.0, 29.0, 48.5, 38.0, 24.0], "midFx-Team": [0.0, 9.0, 13.5, 16.0, 9.0], "Fx-Team": [0, 18, 27, 32, 18]}, "id": "9ce18afe-51f4-4d99-9018-29ab6ac59ea0"}, "type": "ColumnDataSource", "id": "9ce18afe-51f4-4d99-9018-29ab6ac59ea0"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "216e75b5-aa2b-43ac-9e72-6bf13e161525"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "f5b607df-91f2-4fe3-b4e9-e0f9e044b2cb"}, "id": "8f989c40-fd89-4d6c-b1d0-36ff8effb622"}, "type": "Grid", "id": "8f989c40-fd89-4d6c-b1d0-36ff8effb622"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [4.0, 15.5, 9.5, 12.0, 8.0], "Platform": [8, 31, 19, 24, 16], "catFx-Team": ["1 - no impact:0.666666666667", "2 - little impact:0.666666666667", "3 - a fair amount of impact:0.666666666667", "4 - a significant amount of impact:0.666666666667", "5 - an extremely frustrating amount of impact:0.666666666667"], "cat": ["1 - no impact", "2 - little impact", "3 - a fair amount of impact", "4 - a significant amount of impact", "5 - an extremely frustrating amount of impact"], "midPlatform": [4.0, 15.5, 9.5, 12.0, 8.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [8.0, 63.0, 59.0, 42.0, 24.0], "catPlatform": ["1 - no impact:0.333333333333", "2 - little impact:0.333333333333", "3 - a fair amount of impact:0.333333333333", "4 - a significant amount of impact:0.333333333333", "5 - an extremely frustrating amount of impact:0.333333333333"], "stackedFx-Team": [8.0, 47.0, 39.0, 33.0, 20.0], "midFx-Team": [0.0, 16.0, 20.0, 9.0, 4.0], "Fx-Team": [0, 32, 40, 18, 8]}, "id": "916ef1e7-3d90-4048-81d0-9ec15f8ea660"}, "type": "ColumnDataSource", "id": "916ef1e7-3d90-4048-81d0-9ec15f8ea660"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "9511a7c1-3453-4ad0-b437-273158ae7d8b"}, "type": "BasicTicker", "id": "9511a7c1-3453-4ad0-b437-273158ae7d8b"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "e4bb92ef-1ede-4d16-9d58-c16cba51f7e5"}, "type": "Rect", "id": "e4bb92ef-1ede-4d16-9d58-c16cba51f7e5"}, {"attributes": {"doc": null, "id": "b8aa75d9-e45d-4ee8-8cc5-cf0971fd8d4a", "tags": []}, "type": "BasicTickFormatter", "id": "b8aa75d9-e45d-4ee8-8cc5-cf0971fd8d4a"}, {"attributes": {"doc": null, "id": "2b4efcb4-c849-449b-b2eb-d7afb30140dc", "tags": []}, "type": "CategoricalTicker", "id": "2b4efcb4-c849-449b-b2eb-d7afb30140dc"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "ecdd17b2-7739-423e-b7e2-edf49cd39d93"}, "tags": [], "doc": null, "selection_glyph": null, "id": "14424d79-4ac8-44f4-8151-b5a3beca8b82", "glyph": {"type": "Rect", "id": "aafb0ab7-d0d6-4cca-b545-b71418c261ec"}}, "type": "GlyphRenderer", "id": "14424d79-4ac8-44f4-8151-b5a3beca8b82"}, {"attributes": {"doc": null, "id": "d87e4222-c26c-4bed-b2d1-3ec4713ea770", "tags": []}, "type": "CategoricalTickFormatter", "id": "d87e4222-c26c-4bed-b2d1-3ec4713ea770"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "c55712e1-d67c-4e56-a8df-155d6e82eb46"}, "type": "Rect", "id": "c55712e1-d67c-4e56-a8df-155d6e82eb46"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "590387a1-ec15-41cd-8526-f5db5b9fe8d9"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "9bb461f9-7d45-4a50-9fd6-7f0a16df2490"}, "ticker": {"type": "CategoricalTicker", "id": "f6cc1e4a-b680-4498-8dc0-964ceb076483"}, "id": "b421b374-f589-4acc-bd31-13b055f10871"}, "type": "CategoricalAxis", "id": "b421b374-f589-4acc-bd31-13b055f10871"}, {"attributes": {"end": 47.300000000000004, "callback": null, "doc": null, "tags": [], "start": 0, "id": "68736d88-6871-469c-a6df-48fc302702e8"}, "type": "Range1d", "id": "68736d88-6871-469c-a6df-48fc302702e8"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "dfaf0425-af75-440f-9ce7-5ce53fcc97cc"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "3a370483-212f-4468-94e4-08bc05bae00f"}, "ticker": {"type": "CategoricalTicker", "id": "fba77db0-9c43-4685-9136-09cfa3deef17"}, "id": "6b33e48b-9562-4614-8b9c-c640b21aa3a7"}, "type": "CategoricalAxis", "id": "6b33e48b-9562-4614-8b9c-c640b21aa3a7"}, {"attributes": {"doc": null, "id": "e0f8f1c3-5cd5-481c-a14f-06023741b4ac", "tags": []}, "type": "CategoricalTicker", "id": "e0f8f1c3-5cd5-481c-a14f-06023741b4ac"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a12de8f6-e000-4e8f-831d-b9d9fc2fc2a3"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "3f357b73-56a9-4b3c-bab5-9a950a1056f3"}, "ticker": {"type": "CategoricalTicker", "id": "5dae7d39-1b66-43c0-9ad1-c9e54ecaff77"}, "id": "5930ba63-5757-4622-a2b0-cc47d2ba9738"}, "type": "CategoricalAxis", "id": "5930ba63-5757-4622-a2b0-cc47d2ba9738"}, {"attributes": {"doc": null, "id": "a66cec9e-a5d8-46f0-bc59-f71ddb258a19", "tags": []}, "type": "BasicTickFormatter", "id": "a66cec9e-a5d8-46f0-bc59-f71ddb258a19"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "de17671d-f2af-4918-904d-ee51bf2ca003"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "65b7093f-7cd4-4d41-8185-018273270e73"}, "ticker": {"type": "BasicTicker", "id": "3b1c2ec7-dc57-431e-a39d-e80659cff3ba"}, "id": "91131c23-1605-459c-ac51-759eac2b948a"}, "type": "LinearAxis", "id": "91131c23-1605-459c-ac51-759eac2b948a"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "6c66b3c9-3357-4cf2-af62-190dc3d90b22"}, "tags": [], "doc": null, "selection_glyph": null, "id": "47d42b5f-2d0b-4fc4-b386-c297f59c3b9a", "glyph": {"type": "Rect", "id": "29171b9d-c5b1-4ecd-8c4e-8ae313c65d31"}}, "type": "GlyphRenderer", "id": "47d42b5f-2d0b-4fc4-b386-c297f59c3b9a"}, {"attributes": {"doc": null, "id": "adedc941-868f-4858-9bda-1e3214a3782a", "tags": []}, "type": "CategoricalTickFormatter", "id": "adedc941-868f-4858-9bda-1e3214a3782a"}, {"attributes": {"end": 39.6, "callback": null, "doc": null, "tags": [], "start": 0, "id": "f6d9bdb5-1f14-4588-a725-0fbc52f7249d"}, "type": "Range1d", "id": "f6d9bdb5-1f14-4588-a725-0fbc52f7249d"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "f03b05f2-1e98-46fd-86a8-89ed8f0b623a"}, "tags": [], "doc": null, "selection_glyph": null, "id": "6eba8804-e5b5-4429-ab74-47bccb390127", "glyph": {"type": "Rect", "id": "9bbf9116-a970-4daf-85df-2a53f9054b6c"}}, "type": "GlyphRenderer", "id": "6eba8804-e5b5-4429-ab74-47bccb390127"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "d9d727df-8f8a-4366-b5a7-238f8afe6b5e"}, "type": "BasicTicker", "id": "d9d727df-8f8a-4366-b5a7-238f8afe6b5e"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "65f9d86b-1c58-4101-a0ef-32fed75fe723"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "a75a2092-d550-45be-9194-f10357b8adf9"}, "ticker": {"type": "BasicTicker", "id": "5e709d67-4e9c-4c2e-97aa-25cd7fb68266"}, "id": "1bd3b4aa-df74-4a00-99af-a933f3b62fdb"}, "type": "LinearAxis", "id": "1bd3b4aa-df74-4a00-99af-a933f3b62fdb"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "4202c217-5c75-423d-8a68-89636f6fc90c"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "3e13c865-2656-477b-b356-b85c6f44cb3b"}, "ticker": {"type": "BasicTicker", "id": "60ede4a5-a5e5-48b7-a3a2-ce78bceb9341"}, "id": "8da6250a-48ee-4410-8f52-274728f934bc"}, "type": "LinearAxis", "id": "8da6250a-48ee-4410-8f52-274728f934bc"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "056b0be0-3c89-4cb8-b23e-6f5f17ec3629"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "6bedc772-7f57-44bd-9b07-c97c131015de"}, "id": "f8bc1891-512e-47c9-9152-c79fac56c996"}, "type": "Grid", "id": "f8bc1891-512e-47c9-9152-c79fac56c996"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "3b160d35-a6fc-4b41-a368-502aebea0a2a"}, "type": "ToolEvents", "id": "3b160d35-a6fc-4b41-a368-502aebea0a2a"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "b557c33d-6ffe-4abb-8bf9-72c13f6fcfb6"}, "tags": [], "doc": null, "selection_glyph": null, "id": "97151610-a346-4d84-bddf-1d241ca096dc", "glyph": {"type": "Rect", "id": "f17cd3b4-c375-4519-9beb-6438ecdf05a6"}}, "type": "GlyphRenderer", "id": "97151610-a346-4d84-bddf-1d241ca096dc"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "87c4eda2-0cee-4548-8dcd-110be1d775b9"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "ab99d4e0-4ef6-43ff-b08e-da3111bcb602"}, "id": "eac6593c-8d8e-44fd-86d4-2017fd7353f3"}, "type": "Grid", "id": "eac6593c-8d8e-44fd-86d4-2017fd7353f3"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "c1ccccce-ce48-49b9-af25-57563b879495"}, "type": "BasicTicker", "id": "c1ccccce-ce48-49b9-af25-57563b879495"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "e329563d-7487-4cc9-a7a1-1d0665bf4881"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "e83ad9d9-0aa7-49e1-bc57-1821b52232e8"}, "ticker": {"type": "BasicTicker", "id": "b59c15be-8372-48d3-b8e1-5e3b6afdcc0e"}, "id": "a45052b5-e95b-47bf-94e0-00fa43bd9860"}, "type": "LinearAxis", "id": "a45052b5-e95b-47bf-94e0-00fa43bd9860"}, {"attributes": {"callback": null, "factors": ["No impact / Not applicable", "A little impact", "Moderate impact", "Significant impact", "Tons of impact / Implement this ASAP"], "doc": null, "tags": [], "id": "c1472710-9678-4403-ba31-471118a00139"}, "type": "FactorRange", "id": "c1472710-9678-4403-ba31-471118a00139"}, {"attributes": {"callback": null, "factors": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "36a1bbce-cb32-48d6-a8eb-51309e3a77f8"}, "type": "FactorRange", "id": "36a1bbce-cb32-48d6-a8eb-51309e3a77f8"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2], "stackedPlatform": [18.0, 19.0], "Platform": [36, 38], "catFx-Team": ["No:0.666666666667", "Yes:0.666666666667"], "cat": ["No", "Yes"], "midPlatform": [18.0, 19.0], "width": [0.8, 0.8], "zero": [73.0, 73.0], "catPlatform": ["No:0.333333333333", "Yes:0.333333333333"], "stackedFx-Team": [54.5, 55.5], "midFx-Team": [18.5, 17.5], "Fx-Team": [37, 35]}, "id": "e0d97aa9-0cfb-4cc7-b568-44448053872b"}, "type": "ColumnDataSource", "id": "e0d97aa9-0cfb-4cc7-b568-44448053872b"}, {"attributes": {"end": 69.30000000000001, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "c2f65891-49bf-49a1-b8d4-9c8180f627d1"}, "type": "Range1d", "id": "c2f65891-49bf-49a1-b8d4-9c8180f627d1"}, {"attributes": {"doc": null, "id": "287e08ce-329b-4579-b7e2-146eeedbea5b", "tags": []}, "type": "CategoricalTicker", "id": "287e08ce-329b-4579-b7e2-146eeedbea5b"}, {"subtype": "Chart", "type": "Plot", "id": "de55e910-d8be-4d40-a321-d715fbe10a88", "attributes": {"x_range": {"type": "FactorRange", "id": "f372fd6d-1750-4870-b97f-1b790a6e8542"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "af800757-5d6d-4765-9bf2-2c850a27d596"}, "title": "How impactful would the following potential MozReview features have on your productivity? [Close review requests automatically after landing]", "renderers": [{"type": "CategoricalAxis", "id": "dbb8a68c-1db4-484b-8896-a023174d0d3a"}, {"type": "LinearAxis", "id": "c29d1b65-2185-47e7-a123-a7b4843fbfa8"}, {"type": "Grid", "id": "fd820b5a-20cd-4ded-9c9b-ef4fb279ee05"}, {"type": "GlyphRenderer", "id": "c544ec61-9824-4f20-be06-2b4a2b24db49"}, {"type": "GlyphRenderer", "id": "48348c94-a5e3-46a1-8def-7574c40844b5"}, {"type": "Legend", "id": "5d25f167-f66b-4fea-b41a-82433a4c0105"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "61a335cc-400d-4dbb-8cc8-b8b5640d7ef8"}, "plot_height": 560, "doc": null, "id": "de55e910-d8be-4d40-a321-d715fbe10a88", "tools": [], "below": [{"type": "CategoricalAxis", "id": "dbb8a68c-1db4-484b-8896-a023174d0d3a"}], "left": [{"type": "LinearAxis", "id": "c29d1b65-2185-47e7-a123-a7b4843fbfa8"}]}}, {"subtype": "Chart", "type": "Plot", "id": "6f29235a-6fc2-44b0-b165-09f7ab73dbc5", "attributes": {"x_range": {"type": "FactorRange", "id": "1fbd04b5-6f9b-4011-bae6-095d0f8247e8"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "45666518-24c3-4be9-9f5c-4dc9a8e3c213"}, "title": "Thinking of the patch review and landing process, please rank the following potential improvements in terms of their impact on your productivity. [Allow me to land changes to mozilla-central via GitHub pull requests]", "renderers": [{"type": "CategoricalAxis", "id": "6a50838b-11f9-4072-90bf-87e8b6a66ef4"}, {"type": "LinearAxis", "id": "8b1cc7fa-fe32-4690-91bd-b513cc566ffb"}, {"type": "Grid", "id": "79698176-7c74-4304-b90c-04558a1603c3"}, {"type": "GlyphRenderer", "id": "676bd990-b6d2-4bf5-adbe-e4b44dc10fd1"}, {"type": "GlyphRenderer", "id": "557a9eee-be63-4e1d-a0a8-937c569c1c8a"}, {"type": "Legend", "id": "f6b8726b-abd4-4114-97a3-08fc9f3220f5"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "ab691136-5eca-4ed5-887c-3ef995b6a083"}, "plot_height": 560, "doc": null, "id": "6f29235a-6fc2-44b0-b165-09f7ab73dbc5", "tools": [], "below": [{"type": "CategoricalAxis", "id": "6a50838b-11f9-4072-90bf-87e8b6a66ef4"}], "left": [{"type": "LinearAxis", "id": "8b1cc7fa-fe32-4690-91bd-b513cc566ffb"}]}}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "fe2923f6-3256-48df-82d6-ec5d8ed44821"}, "type": "BasicTicker", "id": "fe2923f6-3256-48df-82d6-ec5d8ed44821"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [30.0, 9.0, 3.0, 3.5, 3.0], "Platform": [60, 18, 6, 7, 6], "catFx-Team": ["No impact / Not applicable:0.666666666667", "A little impact:0.666666666667", "Moderate impact:0.666666666667", "Significant impact:0.666666666667", "Tons of impact / Implement this ASAP:0.666666666667"], "cat": ["No impact / Not applicable", "A little impact", "Moderate impact", "Significant impact", "Tons of impact / Implement this ASAP"], "midPlatform": [30.0, 9.0, 3.0, 3.5, 3.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [103.0, 45.0, 16.0, 15.0, 16.0], "catPlatform": ["No impact / Not applicable:0.333333333333", "A little impact:0.333333333333", "Moderate impact:0.333333333333", "Significant impact:0.333333333333", "Tons of impact / Implement this ASAP:0.333333333333"], "stackedFx-Team": [81.5, 31.5, 11.0, 11.0, 11.0], "midFx-Team": [21.5, 13.5, 5.0, 4.0, 5.0], "Fx-Team": [43, 27, 10, 8, 10]}, "id": "08dc0bdd-e8ee-44b1-af01-2ecb09219fac"}, "type": "ColumnDataSource", "id": "08dc0bdd-e8ee-44b1-af01-2ecb09219fac"}, {"attributes": {"doc": null, "id": "7ee0cf6d-27e2-488c-9ee3-a45e00f3778e", "tags": []}, "type": "CategoricalTicker", "id": "7ee0cf6d-27e2-488c-9ee3-a45e00f3778e"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "38f970fb-87dc-410f-89a3-a0002cda629b"}, "orientation": "top_left", "tags": [], "doc": null, "id": "1662b300-3b65-4d23-a8a8-ccdd5af30207", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "cc1279ff-f375-4412-bb5c-5a83144d4f09"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "4dd5199d-1fec-4126-b6e8-0c0992ba7431"}]]]}, "type": "Legend", "id": "1662b300-3b65-4d23-a8a8-ccdd5af30207"}, {"attributes": {"end": 40.7, "callback": null, "doc": null, "tags": [], "start": 0, "id": "3d151d6f-914f-4822-a3ea-4b8e6fc6a686"}, "type": "Range1d", "id": "3d151d6f-914f-4822-a3ea-4b8e6fc6a686"}, {"attributes": {"doc": null, "id": "ebcb8565-9bbc-42ff-b0dd-785069b04b4a", "tags": []}, "type": "CategoricalTicker", "id": "ebcb8565-9bbc-42ff-b0dd-785069b04b4a"}, {"attributes": {"end": 59.400000000000006, "callback": null, "doc": null, "tags": [], "start": 0, "id": "f06728a2-0b50-4995-9d82-e6479f55dad2"}, "type": "Range1d", "id": "f06728a2-0b50-4995-9d82-e6479f55dad2"}, {"attributes": {"doc": null, "id": "360793dc-0242-40e2-b703-4afdaee4dd0f", "tags": []}, "type": "CategoricalTicker", "id": "360793dc-0242-40e2-b703-4afdaee4dd0f"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "1f86723f-f8e2-456b-ae4b-4e2f52bafd70"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "6663cb26-13f3-465d-9d2f-de01e57aa10b"}, "ticker": {"type": "CategoricalTicker", "id": "8c3dc2d0-ebdb-4d08-b527-f988708d5b72"}, "id": "90282a7c-53f0-4a5e-8653-6d1e88734baf"}, "type": "CategoricalAxis", "id": "90282a7c-53f0-4a5e-8653-6d1e88734baf"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "77d1169c-0b2a-4a20-9899-1d963b34c3b9"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "db9d1eca-30a7-47cf-8ffb-84f3b83833e6"}, "ticker": {"type": "BasicTicker", "id": "759bc4c3-3f29-4f74-aefd-aa8ce4beee7b"}, "id": "1fd5029d-5f57-4e4c-bb08-8f49e8cf4a33"}, "type": "LinearAxis", "id": "1fd5029d-5f57-4e4c-bb08-8f49e8cf4a33"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "eb4a49ef-b5ae-4439-b773-7a4053bef2e3"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "1346023d-1f1a-497d-9f28-e5779fe7d758"}, "id": "c32e3c98-845c-4b33-b211-dc0b6bfc581c"}, "type": "Grid", "id": "c32e3c98-845c-4b33-b211-dc0b6bfc581c"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "77f35882-fcba-43b2-a1b3-07666f732452"}, "type": "BasicTicker", "id": "77f35882-fcba-43b2-a1b3-07666f732452"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "6adafe76-96cb-48a0-b95d-b743abd26865"}, "type": "Rect", "id": "6adafe76-96cb-48a0-b95d-b743abd26865"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [1.5, 7.0, 3.5, 3.5, 20.5, 8.5], "Platform": [3, 14, 7, 7, 41, 17], "catFx-Team": ["All Other Responses:0.666666666667", "N/A (not relevant to me):0.666666666667", "Cut all investment:0.666666666667", "Cut some investment:0.666666666667", "Keep about the same:0.666666666667", "Increase investment:0.666666666667"], "cat": ["All Other Responses", "N/A (not relevant to me)", "Cut all investment", "Cut some investment", "Keep about the same", "Increase investment"], "midPlatform": [1.5, 7.0, 3.5, 3.5, 20.5, 8.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [3.0, 24.0, 7.0, 15.0, 78.0, 44.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A (not relevant to me):0.333333333333", "Cut all investment:0.333333333333", "Cut some investment:0.333333333333", "Keep about the same:0.333333333333", "Increase investment:0.333333333333"], "stackedFx-Team": [3.0, 19.0, 7.0, 11.0, 59.5, 30.5], "midFx-Team": [0.0, 5.0, 0.0, 4.0, 18.5, 13.5], "Fx-Team": [0, 10, 0, 8, 37, 27]}, "id": "7daa4575-6fb8-400e-9404-a7de816bac07"}, "type": "ColumnDataSource", "id": "7daa4575-6fb8-400e-9404-a7de816bac07"}, {"subtype": "Chart", "type": "Plot", "id": "e4c06cfb-dde1-40a0-9b68-2da7d8f33ecb", "attributes": {"x_range": {"type": "FactorRange", "id": "62b6f854-6eff-40a3-8fec-7319500862dc"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "8debe68e-9c18-4a89-91db-0af3e68c3430"}, "title": "Please rate your satisfaction with the following items. [GitHub issue tracking]", "renderers": [{"type": "CategoricalAxis", "id": "0f9da93c-00ef-4d21-b1de-ff1f35157b57"}, {"type": "LinearAxis", "id": "07f5861e-12fc-460e-addd-650f19074556"}, {"type": "Grid", "id": "20d6c657-3e31-418a-873f-e20826c22368"}, {"type": "GlyphRenderer", "id": "e455aafd-53bb-490d-a5bf-d2e9a62ad97c"}, {"type": "GlyphRenderer", "id": "2423cd58-3bf4-47a8-a5bf-b665c167bb4d"}, {"type": "Legend", "id": "cb412aca-6be8-47c3-94cf-09a0f9e574e1"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "0c99baf3-0a17-4068-b90a-bfd9346e7946"}, "plot_height": 560, "doc": null, "id": "e4c06cfb-dde1-40a0-9b68-2da7d8f33ecb", "tools": [], "below": [{"type": "CategoricalAxis", "id": "0f9da93c-00ef-4d21-b1de-ff1f35157b57"}], "left": [{"type": "LinearAxis", "id": "07f5861e-12fc-460e-addd-650f19074556"}]}}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "3a967ccf-e55b-48d9-a4af-83e3fc01b0ba"}, "type": "BasicTicker", "id": "3a967ccf-e55b-48d9-a4af-83e3fc01b0ba"}, {"attributes": {"doc": null, "id": "1f1ae00d-e663-420d-844f-b9e814f550e4", "tags": []}, "type": "CategoricalTickFormatter", "id": "1f1ae00d-e663-420d-844f-b9e814f550e4"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "26f1bd84-61bb-4e58-a9cb-02ae5bed4b75"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "4b346df4-3d18-4de5-9fff-05512720ead3"}, "id": "da51a560-2ed3-482e-9f96-2ec8b915764f"}, "type": "Grid", "id": "da51a560-2ed3-482e-9f96-2ec8b915764f"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "9aec71df-c95a-4153-8ad2-86266bb6cb9c"}, "type": "Rect", "id": "9aec71df-c95a-4153-8ad2-86266bb6cb9c"}, {"attributes": {"doc": null, "id": "7050c189-d578-4447-b968-9296580dc0e2", "tags": []}, "type": "CategoricalTickFormatter", "id": "7050c189-d578-4447-b968-9296580dc0e2"}, {"subtype": "Chart", "type": "Plot", "id": "7aa85ca2-4fbf-4ed8-8b6e-40101e2ca4c2", "attributes": {"x_range": {"type": "FactorRange", "id": "3d9ecdce-f81c-43b3-8142-0d7d2e352e9f"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "c82a5e30-6a7f-4a07-929d-9499ff33a9a0"}, "title": "Thinking of the entire development process, from checking out code to landing a patch, please rank the following categories according to how much they impact your own productivity. [Local build times are too slow]", "renderers": [{"type": "CategoricalAxis", "id": "93e2e9c1-8191-4fe1-95a1-779004e7d924"}, {"type": "LinearAxis", "id": "a24aeec9-0095-49d4-a906-87e64aa3fd7f"}, {"type": "Grid", "id": "be954906-49a8-49eb-8be4-8f314a2ddc41"}, {"type": "GlyphRenderer", "id": "323ed172-45f8-4506-95f3-310403f0e00b"}, {"type": "GlyphRenderer", "id": "ff040e58-d18a-44cc-b8f0-2768d03b2ebe"}, {"type": "Legend", "id": "6bd74016-1064-40b5-b88a-d82628612388"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "1c7336b6-7ded-4725-8fee-1d31fe5f6d78"}, "plot_height": 560, "doc": null, "id": "7aa85ca2-4fbf-4ed8-8b6e-40101e2ca4c2", "tools": [], "below": [{"type": "CategoricalAxis", "id": "93e2e9c1-8191-4fe1-95a1-779004e7d924"}], "left": [{"type": "LinearAxis", "id": "a24aeec9-0095-49d4-a906-87e64aa3fd7f"}]}}, {"attributes": {"callback": null, "factors": ["All Other Responses", "C/C++", "Javascript"], "doc": null, "tags": [], "id": "211e15a1-72bc-4861-bab3-2ad2dd062735"}, "type": "FactorRange", "id": "211e15a1-72bc-4861-bab3-2ad2dd062735"}, {"attributes": {"doc": null, "id": "03735725-d413-449a-ba86-722b92ba4576", "tags": []}, "type": "BasicTickFormatter", "id": "03735725-d413-449a-ba86-722b92ba4576"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "7eaee4bf-95ef-435c-8233-fad5a5b5d480"}, "tags": [], "doc": null, "selection_glyph": null, "id": "1d97628e-d899-45c6-ac7b-51aa80e27483", "glyph": {"type": "Rect", "id": "8d8cd2c4-1fbc-4f5f-96aa-6d9cb361290b"}}, "type": "GlyphRenderer", "id": "1d97628e-d899-45c6-ac7b-51aa80e27483"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "1 = least impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "bd16d020-9810-4fb3-8898-57a0c4f0c894"}, "type": "FactorRange", "id": "bd16d020-9810-4fb3-8898-57a0c4f0c894"}, {"attributes": {"callback": null, "factors": ["No impact / Not applicable", "A little impact", "Moderate impact", "Significant impact", "Tons of impact / Implement this ASAP"], "doc": null, "tags": [], "id": "f372fd6d-1750-4870-b97f-1b790a6e8542"}, "type": "FactorRange", "id": "f372fd6d-1750-4870-b97f-1b790a6e8542"}, {"subtype": "Chart", "type": "Plot", "id": "3bfd1df1-ca7f-4f10-8a9a-14a7dc2c1a5b", "attributes": {"x_range": {"type": "FactorRange", "id": "3ba230ca-7427-41fd-aacc-01f196f0eca4"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "68736d88-6871-469c-a6df-48fc302702e8"}, "title": "How much should Mozilla invest in the following Mercurial related items? [General Performance]", "renderers": [{"type": "CategoricalAxis", "id": "6387639d-6024-491d-9976-8a0a59b2063b"}, {"type": "LinearAxis", "id": "722d1e85-4c8b-4efe-9a38-f67e68070b03"}, {"type": "Grid", "id": "3f1d9f0c-8fcb-4ab0-a41f-8912baaebf17"}, {"type": "GlyphRenderer", "id": "24cbf4a1-a403-4dbb-bcc6-e754fd606cbc"}, {"type": "GlyphRenderer", "id": "b8a03831-0f59-46ae-9f2a-f8a23b0f87f7"}, {"type": "Legend", "id": "f9060a75-8468-4cfb-a5b4-8ff4f5dcf93b"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "dc0a0b99-a347-493c-8404-e7f1ac4199b1"}, "plot_height": 560, "doc": null, "id": "3bfd1df1-ca7f-4f10-8a9a-14a7dc2c1a5b", "tools": [], "below": [{"type": "CategoricalAxis", "id": "6387639d-6024-491d-9976-8a0a59b2063b"}], "left": [{"type": "LinearAxis", "id": "722d1e85-4c8b-4efe-9a38-f67e68070b03"}]}}, {"subtype": "Chart", "type": "Plot", "id": "83c80902-8e88-423c-a67b-be9b3a10b149", "attributes": {"x_range": {"type": "FactorRange", "id": "f31446a7-969b-4ed2-9409-50c384b991e6"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "6dc34518-bf00-49c6-abad-de1d6be33fa7"}, "title": "Thinking of the ways our test automation works in continuous integration, rank the following potential improvements in terms of their impact on your productivity. [Make our automation prevent new assertions and warnings from creeping in]", "renderers": [{"type": "CategoricalAxis", "id": "c5607591-cc62-4ea7-a29a-ed79264c12ce"}, {"type": "LinearAxis", "id": "53c148d5-e921-4bf8-90bd-3cf738451bcd"}, {"type": "Grid", "id": "58c1990d-baf1-4958-b48a-562ce5af6343"}, {"type": "GlyphRenderer", "id": "98f0356a-43e5-453e-9e12-0e230a19b94b"}, {"type": "GlyphRenderer", "id": "51b597f8-a734-47bb-a85c-5183a3398411"}, {"type": "Legend", "id": "e710e741-0213-41a0-908d-dce4a3e3b22c"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "1a1a58f3-e7d4-4e3d-9cb6-5cac2add2444"}, "plot_height": 560, "doc": null, "id": "83c80902-8e88-423c-a67b-be9b3a10b149", "tools": [], "below": [{"type": "CategoricalAxis", "id": "c5607591-cc62-4ea7-a29a-ed79264c12ce"}], "left": [{"type": "LinearAxis", "id": "53c148d5-e921-4bf8-90bd-3cf738451bcd"}]}}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "e5f2c75c-533b-4cea-ba27-e84f0d09fa3d"}, "type": "Rect", "id": "e5f2c75c-533b-4cea-ba27-e84f0d09fa3d"}, {"attributes": {"doc": null, "id": "0c63b24a-899e-4126-b40d-4b067e39353b", "tags": []}, "type": "CategoricalTickFormatter", "id": "0c63b24a-899e-4126-b40d-4b067e39353b"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "b477b1bd-bf74-44dc-9d99-6c93e3d32816"}, "type": "Rect", "id": "b477b1bd-bf74-44dc-9d99-6c93e3d32816"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "f5b607df-91f2-4fe3-b4e9-e0f9e044b2cb"}, "type": "BasicTicker", "id": "f5b607df-91f2-4fe3-b4e9-e0f9e044b2cb"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "516f2cc0-be48-4375-af7f-5d23af8066eb"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "51064a40-b209-472c-b9cd-7093b9c5cef9"}, "ticker": {"type": "BasicTicker", "id": "5462b246-836a-4689-92cf-7dec49c19c17"}, "id": "5a765507-d769-4b4e-8700-87a3886a82b5"}, "type": "LinearAxis", "id": "5a765507-d769-4b4e-8700-87a3886a82b5"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "Firefox OS", "Firefox for Android", "Firefox for Desktop", "Gecko / Platform", "Product Support (automation, tools, infrastructure, etc)"], "doc": null, "tags": [], "id": "e31eb679-eb28-4e41-b317-73dcf6fd9c89"}, "type": "FactorRange", "id": "e31eb679-eb28-4e41-b317-73dcf6fd9c89"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "fd514b15-1926-4ae0-86ea-ac2275f5f011"}, "type": "Rect", "id": "fd514b15-1926-4ae0-86ea-ac2275f5f011"}, {"attributes": {"doc": null, "id": "57c1f452-6864-4271-a137-f0bce7812c2b", "tags": []}, "type": "BasicTickFormatter", "id": "57c1f452-6864-4271-a137-f0bce7812c2b"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "57e25b97-a78e-437c-bde0-2ade5ef5a920"}, "orientation": "top_left", "tags": [], "doc": null, "id": "019fbc16-36a2-49da-99d8-c1dec65da5e5", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "d7d006b7-7ea8-4ad0-9b96-8e8fd57392ab"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "93152c17-86b1-4754-b3fc-4266f17ea1af"}]]]}, "type": "Legend", "id": "019fbc16-36a2-49da-99d8-c1dec65da5e5"}, {"subtype": "Chart", "type": "Plot", "id": "7704e2a2-aab2-481b-89b4-44eec5d34f24", "attributes": {"x_range": {"type": "FactorRange", "id": "63ae5e98-18d3-4104-b0b8-b63b2b97fa9e"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "0e6b68f4-f562-4258-8d3b-b7112d139569"}, "title": "Rank the following issues according to how they impact your ability to debug tests using try. [Hard to get the right try syntax]", "renderers": [{"type": "CategoricalAxis", "id": "49aeea40-e94e-4afd-9421-d25611db5e3d"}, {"type": "LinearAxis", "id": "bc7a3e66-08ff-44df-afe0-2b47f845ac92"}, {"type": "Grid", "id": "479d4815-69f2-469c-8d81-cc24d789927c"}, {"type": "GlyphRenderer", "id": "5fed4e81-b5f7-4619-a846-31dc5e34253a"}, {"type": "GlyphRenderer", "id": "2bad58f1-596d-4f37-932e-66881c8fb737"}, {"type": "Legend", "id": "8c082501-825d-4b7b-bf8a-7fc8fa69dd2f"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "de5c1c44-4898-4786-b8e7-7a54784437a6"}, "plot_height": 560, "doc": null, "id": "7704e2a2-aab2-481b-89b4-44eec5d34f24", "tools": [], "below": [{"type": "CategoricalAxis", "id": "49aeea40-e94e-4afd-9421-d25611db5e3d"}], "left": [{"type": "LinearAxis", "id": "bc7a3e66-08ff-44df-afe0-2b47f845ac92"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "e329563d-7487-4cc9-a7a1-1d0665bf4881"}, "orientation": "top_left", "tags": [], "doc": null, "id": "9d0a63a8-b6ab-4d19-92ce-f30aaa61d4a1", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "69d1dcf9-c9e9-42f0-8594-924d3f0d4e4b"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "374beb42-9918-41ef-860d-6e726caae72f"}]]]}, "type": "Legend", "id": "9d0a63a8-b6ab-4d19-92ce-f30aaa61d4a1"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "48609725-c746-4138-90e6-f6465dc50821"}, "type": "Rect", "id": "48609725-c746-4138-90e6-f6465dc50821"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "29f53a10-4888-4246-8883-e54922f0fd48"}, "tags": [], "doc": null, "selection_glyph": null, "id": "0f9f167b-d8fe-46cb-a518-ce995f112495", "glyph": {"type": "Rect", "id": "9d949c54-749d-42b8-8c99-0c0fbfdfadba"}}, "type": "GlyphRenderer", "id": "0f9f167b-d8fe-46cb-a518-ce995f112495"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "d735f9bb-2b82-47b8-ba49-9e5a93efb920"}, "type": "Rect", "id": "d735f9bb-2b82-47b8-ba49-9e5a93efb920"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "55c8db5a-e82d-4036-87d5-8be230300fd6"}, "type": "ToolEvents", "id": "55c8db5a-e82d-4036-87d5-8be230300fd6"}, {"attributes": {"doc": null, "id": "18d8ffca-50c8-4368-bf4c-16d4e5183017", "tags": []}, "type": "BasicTickFormatter", "id": "18d8ffca-50c8-4368-bf4c-16d4e5183017"}, {"attributes": {"doc": null, "id": "e07f6362-7c37-48e8-ac4e-cab786d2e2f2", "tags": []}, "type": "BasicTickFormatter", "id": "e07f6362-7c37-48e8-ac4e-cab786d2e2f2"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "9f98163a-3e68-41fd-aa95-4a83d8657eab"}, "tags": [], "doc": null, "selection_glyph": null, "id": "88b3ca11-0cc9-495d-9b02-ca99341f8894", "glyph": {"type": "Rect", "id": "2d9cb774-29fd-4f9f-aa24-050cd5ce6739"}}, "type": "GlyphRenderer", "id": "88b3ca11-0cc9-495d-9b02-ca99341f8894"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "8d37317e-ec95-478c-9eb4-36688e87a471"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "c5a4ead9-a8be-4660-ac88-41399056d6f6"}, "id": "d0a7d25a-3a44-43a6-8558-c7157efdcc31"}, "type": "Grid", "id": "d0a7d25a-3a44-43a6-8558-c7157efdcc31"}, {"attributes": {"doc": null, "id": "93835bba-0eac-48ee-ad9d-41b09b729eeb", "tags": []}, "type": "BasicTickFormatter", "id": "93835bba-0eac-48ee-ad9d-41b09b729eeb"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "78f58015-6f6e-419c-b775-255d52f6e4e5"}, "type": "BasicTicker", "id": "78f58015-6f6e-419c-b775-255d52f6e4e5"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "4069a6f1-bb71-45d6-937c-28319c8c0f43"}, "type": "Rect", "id": "4069a6f1-bb71-45d6-937c-28319c8c0f43"}, {"attributes": {"doc": null, "id": "47326701-a485-4683-99de-cf6d5a52f16a", "tags": []}, "type": "BasicTickFormatter", "id": "47326701-a485-4683-99de-cf6d5a52f16a"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "86722565-946f-484a-b2b5-f54ab606d088"}, "tags": [], "doc": null, "selection_glyph": null, "id": "976271c4-971a-40d4-899c-2975f5ee857c", "glyph": {"type": "Rect", "id": "fa98cc00-d9bc-422a-8177-b686533bb7cb"}}, "type": "GlyphRenderer", "id": "976271c4-971a-40d4-899c-2975f5ee857c"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [6.0, 3.5, 2.5, 13.5, 18.5, 5.0], "Platform": [12, 7, 5, 27, 37, 10], "catFx-Team": ["Firefox build system:0.666666666667", "Local tools and functionality excluding the Firefox build system (mach commands, static analysis, pre-commit hooks, IDE support, etc):0.666666666667", "Making local test running faster:0.666666666667", "Making remote automation fast (Try, integration repo results, etc):0.666666666667", "Reliably and easily reproducing failures from automation:0.666666666667", "Version control / landing changes:0.666666666667"], "cat": ["Firefox build system", "Local tools and functionality excluding the Firefox build system (mach commands, static analysis, pre-commit hooks, IDE support, etc)", "Making local test running faster", "Making remote automation fast (Try, integration repo results, etc)", "Reliably and easily reproducing failures from automation", "Version control / landing changes"], "midPlatform": [6.0, 3.5, 2.5, 13.5, 18.5, 5.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [22.0, 23.0, 21.0, 45.0, 69.0, 15.0], "catPlatform": ["Firefox build system:0.333333333333", "Local tools and functionality excluding the Firefox build system (mach commands, static analysis, pre-commit hooks, IDE support, etc):0.333333333333", "Making local test running faster:0.333333333333", "Making remote automation fast (Try, integration repo results, etc):0.333333333333", "Reliably and easily reproducing failures from automation:0.333333333333", "Version control / landing changes:0.333333333333"], "stackedFx-Team": [17.0, 15.0, 13.0, 36.0, 53.0, 12.5], "midFx-Team": [5.0, 8.0, 8.0, 9.0, 16.0, 2.5], "Fx-Team": [10, 16, 16, 18, 32, 5]}, "id": "f4d53865-fd60-4b88-badf-3709eb7daea7"}, "type": "ColumnDataSource", "id": "f4d53865-fd60-4b88-badf-3709eb7daea7"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "bc6914a7-d20c-4d69-93c9-bb6a35142364"}, "type": "BasicTicker", "id": "bc6914a7-d20c-4d69-93c9-bb6a35142364"}, {"attributes": {"doc": null, "id": "00ab36ad-59da-45ba-8d5b-b2fd3b5fe3c9", "tags": []}, "type": "BasicTickFormatter", "id": "00ab36ad-59da-45ba-8d5b-b2fd3b5fe3c9"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "87e580e5-3a77-432c-8d50-52d800ed0ffd"}, "type": "Rect", "id": "87e580e5-3a77-432c-8d50-52d800ed0ffd"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "64b0da1f-57d1-40f5-af8c-fd8591794d87"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "e5516d45-26e8-4a56-94b1-3f19a6ff0322"}, "ticker": {"type": "BasicTicker", "id": "5d453f74-3abc-47b1-87f6-76be1bc5ed32"}, "id": "018b92c6-4f42-4422-8cfc-87b26b02a81b"}, "type": "LinearAxis", "id": "018b92c6-4f42-4422-8cfc-87b26b02a81b"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "I know enough to do just the basics", "Fairly competent (I still get stuck from time to time)", "Highly competent"], "doc": null, "tags": [], "id": "6e341d39-fd66-43b5-b029-b894a4c9d777"}, "type": "FactorRange", "id": "6e341d39-fd66-43b5-b029-b894a4c9d777"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a12de8f6-e000-4e8f-831d-b9d9fc2fc2a3"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "e375d48a-0962-4944-9ab9-5fe02305a048"}, "id": "ba590b3c-3c60-4cd8-afbf-60052df39860"}, "type": "Grid", "id": "ba590b3c-3c60-4cd8-afbf-60052df39860"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "1e6d4bdf-a9a0-4100-8780-d93d2ad03e66"}, "tags": [], "doc": null, "selection_glyph": null, "id": "9ba65650-b933-4b2c-b8a9-4d3cf59cd4be", "glyph": {"type": "Rect", "id": "25b42ab8-a37b-42a4-a393-509d67917e44"}}, "type": "GlyphRenderer", "id": "9ba65650-b933-4b2c-b8a9-4d3cf59cd4be"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "ad5d32ee-5255-4f24-8349-a00dad7d3cb1"}, "tags": [], "doc": null, "selection_glyph": null, "id": "0f47d564-94ca-47ac-8071-8720a01dd72e", "glyph": {"type": "Rect", "id": "7db7d78f-5eaf-4100-8981-4e66134f1a79"}}, "type": "GlyphRenderer", "id": "0f47d564-94ca-47ac-8071-8720a01dd72e"}, {"subtype": "Chart", "type": "Plot", "id": "3087717d-09a2-45a8-9427-88230aa142b8", "attributes": {"x_range": {"type": "FactorRange", "id": "c6b56eb6-1095-449b-92c4-ee8f760bff14"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "30eaa52b-2125-42d6-8a01-790227776831"}, "title": "How impactful would the following potential MozReview features have on your productivity? [GitHub pull request integration]", "renderers": [{"type": "CategoricalAxis", "id": "58e6448d-4136-433b-8fb4-3cf3da46cc25"}, {"type": "LinearAxis", "id": "74b2036f-ac1d-48db-bfc2-ab884b28d97f"}, {"type": "Grid", "id": "22b44148-813c-44a1-a25b-2eede9eb040e"}, {"type": "GlyphRenderer", "id": "1f9afa6a-2138-4d3a-b60b-b67930b1c2d0"}, {"type": "GlyphRenderer", "id": "257cc878-2b37-44ff-9d05-6c8966a1d5d7"}, {"type": "Legend", "id": "33b12c6e-e923-4c9d-9d30-d03209dc5b53"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "b07f4e84-e764-4638-808e-8770e629068e"}, "plot_height": 560, "doc": null, "id": "3087717d-09a2-45a8-9427-88230aa142b8", "tools": [], "below": [{"type": "CategoricalAxis", "id": "58e6448d-4136-433b-8fb4-3cf3da46cc25"}], "left": [{"type": "LinearAxis", "id": "74b2036f-ac1d-48db-bfc2-ab884b28d97f"}]}}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "76c11175-2e90-4a01-93fc-0ff266c6f182"}, "type": "Rect", "id": "76c11175-2e90-4a01-93fc-0ff266c6f182"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "c7e2bdb3-9671-4ef0-8632-c134346d7b97"}, "tags": [], "doc": null, "selection_glyph": null, "id": "667c105d-40b7-441d-9368-71fc06e1e3ce", "glyph": {"type": "Rect", "id": "ad3b9ecd-512d-4598-b4ed-0c916aa036be"}}, "type": "GlyphRenderer", "id": "667c105d-40b7-441d-9368-71fc06e1e3ce"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a99a4117-a109-4400-8546-282b15a9edc2"}, "orientation": "top_left", "tags": [], "doc": null, "id": "b6006f77-be46-4ce2-9ba2-228af0b033f6", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "5c8b1bc2-9cbd-4eac-88c1-aa49549404a3"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "626a987b-e946-498a-934c-f670f4ec318d"}]]]}, "type": "Legend", "id": "b6006f77-be46-4ce2-9ba2-228af0b033f6"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "f68bab10-c099-46c3-ae05-e49045c0875e"}, "type": "Rect", "id": "f68bab10-c099-46c3-ae05-e49045c0875e"}, {"attributes": {"doc": null, "id": "cff6c21e-477b-45f3-b221-bca6a1167b2e", "tags": []}, "type": "CategoricalTickFormatter", "id": "cff6c21e-477b-45f3-b221-bca6a1167b2e"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "1ffa588b-2b23-4a03-a431-40c63fa7c4ae"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "5f805596-a4c5-4087-b86e-57a6a4a95618"}, "ticker": {"type": "BasicTicker", "id": "99192d3b-c44d-41b5-ae44-ddfe7aaaa0f8"}, "id": "40723e16-1cda-46cd-8cfe-d38b3acf87e5"}, "type": "LinearAxis", "id": "40723e16-1cda-46cd-8cfe-d38b3acf87e5"}, {"attributes": {"end": 56.1, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "c2679fe1-d409-4ad3-85cb-842af5408d0b"}, "type": "Range1d", "id": "c2679fe1-d409-4ad3-85cb-842af5408d0b"}, {"attributes": {"doc": null, "id": "722ffc6c-b12f-43e4-8d48-0806e7d59f85", "tags": []}, "type": "CategoricalTickFormatter", "id": "722ffc6c-b12f-43e4-8d48-0806e7d59f85"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "b1f4d36a-b3ec-4a3c-8b08-86b8d626b3bb"}, "type": "BasicTicker", "id": "b1f4d36a-b3ec-4a3c-8b08-86b8d626b3bb"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "483e5293-c3fb-445e-a36d-de33b00b2dc3"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "84eaa9a1-2caf-4de2-9a43-68bb9d446e65"}, "ticker": {"type": "CategoricalTicker", "id": "e4f8b4ce-1701-40af-880a-0eeaf70150e3"}, "id": "fe125a69-6eb0-44b6-920a-50ada67b027d"}, "type": "CategoricalAxis", "id": "fe125a69-6eb0-44b6-920a-50ada67b027d"}, {"attributes": {"callback": null, "factors": ["N/A", "1 = least impactful", "2", "3", "4 = most impactful"], "doc": null, "tags": [], "id": "055fc7ee-18fa-4192-be94-358f500000c0"}, "type": "FactorRange", "id": "055fc7ee-18fa-4192-be94-358f500000c0"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "257ffc7f-2a71-4712-845e-cc2c6371693e"}, "type": "BasicTicker", "id": "257ffc7f-2a71-4712-845e-cc2c6371693e"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "c373eb8a-f16a-46cb-950c-4c1581d5b64c"}, "type": "Rect", "id": "c373eb8a-f16a-46cb-950c-4c1581d5b64c"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "792c1e3d-c994-46e4-88aa-cc467e76f046"}, "tags": [], "doc": null, "selection_glyph": null, "id": "d9069d05-1f2e-402c-8464-01fb9665f40e", "glyph": {"type": "Rect", "id": "4fbf2e70-9a9f-4ce9-91c6-236e8487ca17"}}, "type": "GlyphRenderer", "id": "d9069d05-1f2e-402c-8464-01fb9665f40e"}, {"attributes": {"doc": null, "id": "087d5de9-2538-44ae-8632-9a461ed0af1e", "tags": []}, "type": "CategoricalTicker", "id": "087d5de9-2538-44ae-8632-9a461ed0af1e"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "1088cb25-ae1e-46a7-b65e-1f5e8c5450bd"}, "orientation": "top_left", "tags": [], "doc": null, "id": "f7b53091-4a89-45c4-8769-956ee078d9bb", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "89ee364c-7d72-4b43-a1f5-817097dbfd1a"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "fbd9d931-9768-4b11-9069-f0ecda5cfbc3"}]]]}, "type": "Legend", "id": "f7b53091-4a89-45c4-8769-956ee078d9bb"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "1723588e-2900-4575-870e-19719f3c30af"}, "type": "Rect", "id": "1723588e-2900-4575-870e-19719f3c30af"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "84cb5802-6b8a-4467-9fbb-2e6b47c12c3f"}, "tags": [], "doc": null, "selection_glyph": null, "id": "2b1c0e21-6ec6-4dea-b690-0604779d5444", "glyph": {"type": "Rect", "id": "f1759c57-7dec-45f1-ade0-16934abce0db"}}, "type": "GlyphRenderer", "id": "2b1c0e21-6ec6-4dea-b690-0604779d5444"}, {"attributes": {"callback": null, "factors": ["No", "Yes"], "doc": null, "tags": [], "id": "c205ba4b-8ab6-48e1-9086-0192cfd4032e"}, "type": "FactorRange", "id": "c205ba4b-8ab6-48e1-9086-0192cfd4032e"}, {"attributes": {"end": 59.400000000000006, "callback": null, "doc": null, "tags": [], "start": 0, "id": "4ec2c42b-859b-4d66-8b65-aa7852e019e2"}, "type": "Range1d", "id": "4ec2c42b-859b-4d66-8b65-aa7852e019e2"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "b8046c4d-c2f6-4db1-9f41-f8f03288f907"}, "type": "Rect", "id": "b8046c4d-c2f6-4db1-9f41-f8f03288f907"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2], "stackedPlatform": [4.0, 29.5, 12.5], "Platform": [8, 59, 25], "catFx-Team": ["All Other Responses:0.666666666667", "Once every few months:0.666666666667", "Monthly:0.666666666667"], "cat": ["All Other Responses", "Once every few months", "Monthly"], "midPlatform": [4.0, 29.5, 12.5], "width": [0.8, 0.8, 0.8], "zero": [16.0, 126.0, 35.0], "catPlatform": ["All Other Responses:0.333333333333", "Once every few months:0.333333333333", "Monthly:0.333333333333"], "stackedFx-Team": [12.0, 92.5, 30.0], "midFx-Team": [4.0, 33.5, 5.0], "Fx-Team": [8, 67, 10]}, "id": "f9636d21-4eb0-4db7-aac0-240b1ee06872"}, "type": "ColumnDataSource", "id": "f9636d21-4eb0-4db7-aac0-240b1ee06872"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "a7465520-7a1a-47a5-ba09-26802fad745e"}, "tags": [], "doc": null, "selection_glyph": null, "id": "e7c0962d-6f59-47c7-91a3-daad268f3afa", "glyph": {"type": "Rect", "id": "02b5b92f-627e-40d2-8ca9-abc315c35a6a"}}, "type": "GlyphRenderer", "id": "e7c0962d-6f59-47c7-91a3-daad268f3afa"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "bdd8b704-d549-4ed7-8292-b7000d0f0d4c"}, "orientation": "top_left", "tags": [], "doc": null, "id": "eefa0ca1-7838-4397-9e3f-e09c4644888d", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "d39e109c-0b2e-4163-89e6-e755f63ca85a"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "051bc62e-109f-48af-b3f8-550cf574581d"}]]]}, "type": "Legend", "id": "eefa0ca1-7838-4397-9e3f-e09c4644888d"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "0a5b11ba-b147-4933-a11e-ed712a008782"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "ef63f7be-a589-4f99-afa3-7323fd88b495"}, "id": "86678d20-ed1c-416b-b67a-5608c3a2aef8"}, "type": "Grid", "id": "86678d20-ed1c-416b-b67a-5608c3a2aef8"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "72f2a3e9-3216-4383-b08f-37a1d6a7651f"}, "tags": [], "doc": null, "selection_glyph": null, "id": "41683fe4-62e6-428f-a186-e4593b2eaa91", "glyph": {"type": "Rect", "id": "a52cc6cd-e422-40a9-ae78-730bfa8ce91e"}}, "type": "GlyphRenderer", "id": "41683fe4-62e6-428f-a186-e4593b2eaa91"}, {"attributes": {"doc": null, "id": "f1a0f2b0-22c4-40b9-a5ae-1660d25caa6d", "tags": []}, "type": "BasicTickFormatter", "id": "f1a0f2b0-22c4-40b9-a5ae-1660d25caa6d"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "589a2c86-ec13-44b6-93e9-f29bdb26bd7a"}, "type": "ToolEvents", "id": "589a2c86-ec13-44b6-93e9-f29bdb26bd7a"}, {"attributes": {"end": 64.9, "callback": null, "doc": null, "tags": [], "start": 0, "id": "e376507b-d71e-4807-b975-1e5578b4a3ae"}, "type": "Range1d", "id": "e376507b-d71e-4807-b975-1e5578b4a3ae"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "86722565-946f-484a-b2b5-f54ab606d088"}, "tags": [], "doc": null, "selection_glyph": null, "id": "2205b274-0519-4045-93e6-0c6213aa30be", "glyph": {"type": "Rect", "id": "0a55c8bf-f850-4453-8917-f8e7c890abe5"}}, "type": "GlyphRenderer", "id": "2205b274-0519-4045-93e6-0c6213aa30be"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fdce97de-63d3-4989-b605-146792ec8c17"}, "orientation": "top_left", "tags": [], "doc": null, "id": "300095f6-92e0-4fd1-8540-c4c5132818cc", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "ff130f7c-e7d9-43d1-9f8b-765163f04d33"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "b4bf40fb-b3a1-4def-b05f-5f531ba48f20"}]]]}, "type": "Legend", "id": "300095f6-92e0-4fd1-8540-c4c5132818cc"}, {"attributes": {"doc": null, "id": "a68683d1-8467-4027-ab9b-bf6b2d1d56a1", "tags": []}, "type": "CategoricalTickFormatter", "id": "a68683d1-8467-4027-ab9b-bf6b2d1d56a1"}, {"subtype": "Chart", "type": "Plot", "id": "4202c217-5c75-423d-8a68-89636f6fc90c", "attributes": {"x_range": {"type": "FactorRange", "id": "f65c3507-a188-4f75-aa59-3f287bf73152"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "421fd8dd-e49f-4c50-9f84-39ab1455a131"}, "title": "Thinking of the patch review and landing process, please rank the following potential improvements in terms of their impact on your productivity. [Clearly capturing the state of bugs and reviews so I know what state something is in]", "renderers": [{"type": "CategoricalAxis", "id": "25fac1da-27a4-4546-99d7-b78c43b18c49"}, {"type": "LinearAxis", "id": "8da6250a-48ee-4410-8f52-274728f934bc"}, {"type": "Grid", "id": "aeb79e7c-9dc8-4f59-9581-38ec916f8383"}, {"type": "GlyphRenderer", "id": "b54db0f7-d374-45f2-85ee-92b38f655d4c"}, {"type": "GlyphRenderer", "id": "08f4121e-b124-4755-b2b5-dfcc256ac06e"}, {"type": "Legend", "id": "a882a576-cde7-4b61-8fd4-480ea64e5370"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "55c8db5a-e82d-4036-87d5-8be230300fd6"}, "plot_height": 560, "doc": null, "id": "4202c217-5c75-423d-8a68-89636f6fc90c", "tools": [], "below": [{"type": "CategoricalAxis", "id": "25fac1da-27a4-4546-99d7-b78c43b18c49"}], "left": [{"type": "LinearAxis", "id": "8da6250a-48ee-4410-8f52-274728f934bc"}]}}, {"attributes": {"doc": null, "id": "9a482a18-e98e-44af-9fac-58bb9f213d54", "tags": []}, "type": "CategoricalTickFormatter", "id": "9a482a18-e98e-44af-9fac-58bb9f213d54"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "b7a28fbc-61e9-4379-8717-587c78d01747"}, "type": "Rect", "id": "b7a28fbc-61e9-4379-8717-587c78d01747"}, {"attributes": {"doc": null, "id": "9c1ee106-2bc5-4aa5-8e6e-1bb185399dcd", "tags": []}, "type": "BasicTickFormatter", "id": "9c1ee106-2bc5-4aa5-8e6e-1bb185399dcd"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "fbdca56e-018f-4325-9db9-eb493882cc30"}, "tags": [], "doc": null, "selection_glyph": null, "id": "ff130f7c-e7d9-43d1-9f8b-765163f04d33", "glyph": {"type": "Rect", "id": "570f0a4d-8ba8-4617-83d7-9f7052597a9a"}}, "type": "GlyphRenderer", "id": "ff130f7c-e7d9-43d1-9f8b-765163f04d33"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "5b959267-0fa2-40dc-a97b-0e560578bbde"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "50b3634e-62e6-4eeb-bec7-e68f21ce0fb9"}, "ticker": {"type": "BasicTicker", "id": "4717f3a3-3e9a-4b14-9c4d-974142bbcd5a"}, "id": "9814a01e-0347-4c52-b887-534124ef84cb"}, "type": "LinearAxis", "id": "9814a01e-0347-4c52-b887-534124ef84cb"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "92ff98ee-44de-47b6-a03b-27b8d7200a4e"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "5d38421a-3eb1-49d7-beb3-7503b5adb9de"}, "id": "c00559ec-4b4c-4df6-b298-6cb787654b21"}, "type": "Grid", "id": "c00559ec-4b4c-4df6-b298-6cb787654b21"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "85eee339-71dd-4b32-885e-6e841a58b5b8"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "8c188278-fc41-4e11-8878-f89817285895"}, "id": "112616ce-524f-49ca-a3d1-09d30e4b917e"}, "type": "Grid", "id": "112616ce-524f-49ca-a3d1-09d30e4b917e"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "545eb3be-9144-4d87-bf70-24ac2f574d7d"}, "tags": [], "doc": null, "selection_glyph": null, "id": "f65595d5-3c09-4463-a655-a2416f36f308", "glyph": {"type": "Rect", "id": "e079dd61-6c58-41db-8062-8590295853e5"}}, "type": "GlyphRenderer", "id": "f65595d5-3c09-4463-a655-a2416f36f308"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "9baf52a9-005a-42fc-822b-2748657983d2"}, "type": "Rect", "id": "9baf52a9-005a-42fc-822b-2748657983d2"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "3836a7a5-df6a-439b-b134-ba2094840a67"}, "type": "Rect", "id": "3836a7a5-df6a-439b-b134-ba2094840a67"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "3d259aff-628b-46e1-b37b-9077d3130413"}, "type": "ToolEvents", "id": "3d259aff-628b-46e1-b37b-9077d3130413"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "Git", "Mercurial"], "doc": null, "tags": [], "id": "e54d5cbc-a162-4665-a5a4-f78980361101"}, "type": "FactorRange", "id": "e54d5cbc-a162-4665-a5a4-f78980361101"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "b8fc0587-42e8-4658-9314-5926a5529de4"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "ad531066-f7ee-45ba-94a7-31f5d0316229"}, "id": "8fb2f99d-6814-4d1d-abf2-18e78430983c"}, "type": "Grid", "id": "8fb2f99d-6814-4d1d-abf2-18e78430983c"}, {"attributes": {"callback": null, "factors": ["N/A", "Cut all investment", "Decrease investment", "Keep about the same", "Increase investment", "Drastically increase investment"], "doc": null, "tags": [], "id": "ff123d46-0a3e-4675-bc0e-bebfbeb99dda"}, "type": "FactorRange", "id": "ff123d46-0a3e-4675-bc0e-bebfbeb99dda"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "d0694ba6-91e4-4b39-918d-c57a412144f4"}, "type": "Rect", "id": "d0694ba6-91e4-4b39-918d-c57a412144f4"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "6be1aa92-897c-4668-84e4-f15ee16ea8c4"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "f55f03ac-a4a8-4b5b-a3e2-e5e0c1b6e313"}, "ticker": {"type": "CategoricalTicker", "id": "c4106271-1371-4449-b828-b347f4e5be9c"}, "id": "e317a94c-b631-4de9-a952-e84cb9652e74"}, "type": "CategoricalAxis", "id": "e317a94c-b631-4de9-a952-e84cb9652e74"}, {"attributes": {"doc": null, "id": "a063802b-1f1b-4fad-9f84-300856d48059", "tags": []}, "type": "BasicTickFormatter", "id": "a063802b-1f1b-4fad-9f84-300856d48059"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "761150d0-c88d-40d6-919c-a1b96f694972"}, "type": "Rect", "id": "761150d0-c88d-40d6-919c-a1b96f694972"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "9e9e91b9-fe46-4eb3-97c9-9ff989cd30c2"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "93835bba-0eac-48ee-ad9d-41b09b729eeb"}, "ticker": {"type": "BasicTicker", "id": "ec9e3185-3442-44b6-a593-a546d272e0bd"}, "id": "7c2663d1-e6a5-4b85-8a10-df544d57221a"}, "type": "LinearAxis", "id": "7c2663d1-e6a5-4b85-8a10-df544d57221a"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "f6a0f597-db8f-495e-b824-b91aa83ab48f"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "2ca8c6cc-8fca-40f9-88d6-4ff36fd44899"}, "ticker": {"type": "BasicTicker", "id": "5163a47e-0e24-48dd-a6dd-49d3dce1bb78"}, "id": "3b56e9c8-ffca-4f5e-8446-e5d7a6e346ad"}, "type": "LinearAxis", "id": "3b56e9c8-ffca-4f5e-8446-e5d7a6e346ad"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "181f467e-8df8-4c5c-a416-21b1cfe03a81"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "93314f54-e021-4c1d-ad01-a1a97f2da3ca"}, "ticker": {"type": "BasicTicker", "id": "32e73144-4f8d-40e2-b4a0-63fb80ff1415"}, "id": "1a8e7033-d5c4-471c-9860-918f09ef2247"}, "type": "LinearAxis", "id": "1a8e7033-d5c4-471c-9860-918f09ef2247"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2], "stackedPlatform": [2.0, 7.0, 9.0, 31.5], "Platform": [4, 14, 18, 63], "catFx-Team": ["All Other Responses:0.666666666667", "N/A:0.666666666667", "About the same:0.666666666667", "Gotten better:0.666666666667"], "cat": ["All Other Responses", "N/A", "About the same", "Gotten better"], "midPlatform": [2.0, 7.0, 9.0, 31.5], "width": [0.8, 0.8, 0.8, 0.8], "zero": [6.0, 27.0, 47.0, 117.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A:0.333333333333", "About the same:0.333333333333", "Gotten better:0.333333333333"], "stackedFx-Team": [5.0, 20.5, 32.5, 90.0], "midFx-Team": [1.0, 6.5, 14.5, 27.0], "Fx-Team": [2, 13, 29, 54]}, "id": "dcf0320d-d1e9-49fe-b8a9-973192bf0b14"}, "type": "ColumnDataSource", "id": "dcf0320d-d1e9-49fe-b8a9-973192bf0b14"}, {"subtype": "Chart", "type": "Plot", "id": "44b0f247-9666-48fe-a86e-921b397decb8", "attributes": {"x_range": {"type": "FactorRange", "id": "3cb228a1-656a-489c-971a-a27c46e975e4"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "3a963c7e-9376-4b33-98ac-077aab4681d7"}, "title": "Has the Firefox build system improved? [In the past 4 years]", "renderers": [{"type": "CategoricalAxis", "id": "6d0f5e00-35d0-4d61-af60-d6505fb4953b"}, {"type": "LinearAxis", "id": "d511da01-63dd-4df9-a255-ce8210a6daa8"}, {"type": "Grid", "id": "572f960f-1080-4dec-a0be-6bd0779b31c3"}, {"type": "GlyphRenderer", "id": "015317df-8ecb-436b-ba42-1885328faa25"}, {"type": "GlyphRenderer", "id": "0324cc46-7699-4ea5-ab82-77142adbe5fc"}, {"type": "Legend", "id": "ae0468dd-c0e0-4eac-9927-043dfe76b79f"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "6a8d816e-bf31-46d7-8228-b12670e6d753"}, "plot_height": 560, "doc": null, "id": "44b0f247-9666-48fe-a86e-921b397decb8", "tools": [], "below": [{"type": "CategoricalAxis", "id": "6d0f5e00-35d0-4d61-af60-d6505fb4953b"}], "left": [{"type": "LinearAxis", "id": "d511da01-63dd-4df9-a255-ce8210a6daa8"}]}}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [9.0, 7.0, 12.0, 13.5, 6.0], "Platform": [18, 14, 24, 27, 12], "catFx-Team": ["No impact / Not applicable:0.666666666667", "A little impact:0.666666666667", "Moderate impact:0.666666666667", "Significant impact:0.666666666667", "Tons of impact / Implement this ASAP:0.666666666667"], "cat": ["No impact / Not applicable", "A little impact", "Moderate impact", "Significant impact", "Tons of impact / Implement this ASAP"], "midPlatform": [9.0, 7.0, 12.0, 13.5, 6.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [47.0, 32.0, 37.0, 54.0, 22.0], "catPlatform": ["No impact / Not applicable:0.333333333333", "A little impact:0.333333333333", "Moderate impact:0.333333333333", "Significant impact:0.333333333333", "Tons of impact / Implement this ASAP:0.333333333333"], "stackedFx-Team": [32.5, 23.0, 30.5, 40.5, 17.0], "midFx-Team": [14.5, 9.0, 6.5, 13.5, 5.0], "Fx-Team": [29, 18, 13, 27, 10]}, "id": "da626780-d364-4244-af22-c25025cee9d4"}, "type": "ColumnDataSource", "id": "da626780-d364-4244-af22-c25025cee9d4"}, {"attributes": {"doc": null, "id": "b7877193-3e2b-4124-a103-e766189af891", "tags": []}, "type": "BasicTickFormatter", "id": "b7877193-3e2b-4124-a103-e766189af891"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "f4922c15-154c-41fa-9f38-f0df3b4cf579"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "bc6914a7-d20c-4d69-93c9-bb6a35142364"}, "id": "1ca44804-8390-4bfa-82b0-b4586d7b7c15"}, "type": "Grid", "id": "1ca44804-8390-4bfa-82b0-b4586d7b7c15"}, {"attributes": {"doc": null, "id": "0d7e6de5-3391-4419-88bc-df16f475d921", "tags": []}, "type": "CategoricalTicker", "id": "0d7e6de5-3391-4419-88bc-df16f475d921"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "8bdd5e9c-3c7d-42fa-805e-eeb5deee5119"}, "tags": [], "doc": null, "selection_glyph": null, "id": "884025d4-58e2-4dbe-a9c0-486eaccc586d", "glyph": {"type": "Rect", "id": "d7bc3e0b-845e-4511-a65f-93fda06dc015"}}, "type": "GlyphRenderer", "id": "884025d4-58e2-4dbe-a9c0-486eaccc586d"}, {"subtype": "Chart", "type": "Plot", "id": "65f9d86b-1c58-4101-a0ef-32fed75fe723", "attributes": {"x_range": {"type": "FactorRange", "id": "1c28b489-dd41-49e1-86d7-08e18a69fb6e"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "ff320627-e9bd-4c56-8f6f-2d0adac483c3"}, "title": "Thinking of the patch review and landing process, please rank the following potential improvements in terms of their impact on your productivity. [Getting patch authors to clearly articulate what they are doing so review is easier]", "renderers": [{"type": "CategoricalAxis", "id": "41ffd960-c0eb-49a6-8d96-34705698c445"}, {"type": "LinearAxis", "id": "1bd3b4aa-df74-4a00-99af-a933f3b62fdb"}, {"type": "Grid", "id": "58249702-563e-4eaa-af3b-9d4d76e65dff"}, {"type": "GlyphRenderer", "id": "36fa2d00-810b-4ee4-a4c4-531ad146eb0e"}, {"type": "GlyphRenderer", "id": "0fc6aeda-4b80-4b8e-bd8c-4de4a61ae54c"}, {"type": "Legend", "id": "64a02211-a4cf-4d3e-b270-33e06b83aff2"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "1c1b1e93-30b8-403e-8ad6-67a35bde20df"}, "plot_height": 560, "doc": null, "id": "65f9d86b-1c58-4101-a0ef-32fed75fe723", "tools": [], "below": [{"type": "CategoricalAxis", "id": "41ffd960-c0eb-49a6-8d96-34705698c445"}], "left": [{"type": "LinearAxis", "id": "1bd3b4aa-df74-4a00-99af-a933f3b62fdb"}]}}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [2.5, 17.0, 8.0, 7.0, 9.0, 5.5], "Platform": [5, 34, 16, 14, 18, 11], "catFx-Team": ["All Other Responses:0.666666666667", "N/A:0.666666666667", "Extremely dissatisfied:0.666666666667", "Below average:0.666666666667", "Average:0.666666666667", "Above average:0.666666666667"], "cat": ["All Other Responses", "N/A", "Extremely dissatisfied", "Below average", "Average", "Above average"], "midPlatform": [2.5, 17.0, 8.0, 7.0, 9.0, 5.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [5.0, 69.0, 26.0, 27.0, 47.0, 21.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A:0.333333333333", "Extremely dissatisfied:0.333333333333", "Below average:0.333333333333", "Average:0.333333333333", "Above average:0.333333333333"], "stackedFx-Team": [5.0, 51.5, 21.0, 20.5, 32.5, 16.0], "midFx-Team": [0.0, 17.5, 5.0, 6.5, 14.5, 5.0], "Fx-Team": [0, 35, 10, 13, 29, 10]}, "id": "5bec26ff-4549-4571-a70e-8383558217e9"}, "type": "ColumnDataSource", "id": "5bec26ff-4549-4571-a70e-8383558217e9"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "11c289b7-f3c8-4348-b5e1-ca7a3660ad4f"}, "tags": [], "doc": null, "selection_glyph": null, "id": "f6f26af8-e31d-4d48-8af0-e4555d7e75c1", "glyph": {"type": "Rect", "id": "bffc98a4-9ca4-4c1c-8353-850c31349dab"}}, "type": "GlyphRenderer", "id": "f6f26af8-e31d-4d48-8af0-e4555d7e75c1"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "f6a0f597-db8f-495e-b824-b91aa83ab48f"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "1f1ae00d-e663-420d-844f-b9e814f550e4"}, "ticker": {"type": "CategoricalTicker", "id": "c34c0c2a-3700-4e7e-a8cc-dbc0a9c1bc1a"}, "id": "b4c93d61-8387-4bcc-b7c8-44bd3aaa3d51"}, "type": "CategoricalAxis", "id": "b4c93d61-8387-4bcc-b7c8-44bd3aaa3d51"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2], "stackedPlatform": [12.0, 37.5], "Platform": [24, 75], "catFx-Team": ["No:0.666666666667", "Yes:0.666666666667"], "cat": ["No", "Yes"], "midPlatform": [12.0, 37.5], "width": [0.8, 0.8], "zero": [51.0, 147.0], "catPlatform": ["No:0.333333333333", "Yes:0.333333333333"], "stackedFx-Team": [37.5, 111.0], "midFx-Team": [13.5, 36.0], "Fx-Team": [27, 72]}, "id": "fdd726b5-e547-4ae9-9a0c-79ae8f243878"}, "type": "ColumnDataSource", "id": "fdd726b5-e547-4ae9-9a0c-79ae8f243878"}, {"subtype": "Chart", "type": "Plot", "id": "fd0867ed-5ca0-4e0f-a6af-aab4fb0da736", "attributes": {"x_range": {"type": "FactorRange", "id": "6a5e0732-204e-4ca8-955b-e8fb31633064"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "bd3f4f82-5718-4355-b754-8093ac0bb7c4"}, "title": "How much should Mozilla invest in the following Mercurial related items? [Server / hg.mozilla.org features]", "renderers": [{"type": "CategoricalAxis", "id": "c0fa7ef8-ff40-4a23-b894-f0c18c8b48d6"}, {"type": "LinearAxis", "id": "51d011a2-fa0d-4985-b4d2-7b88095335dc"}, {"type": "Grid", "id": "9921d62d-156f-4324-b78f-59b86f9ce277"}, {"type": "GlyphRenderer", "id": "c54dd88f-ceff-4098-9638-cbd1488acc07"}, {"type": "GlyphRenderer", "id": "be86c689-0b32-4b15-9f9e-723b159e6d49"}, {"type": "Legend", "id": "4e549380-5a15-4927-b1b1-4e97dd1ae288"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "3425fd90-bc8a-4393-bb43-faa23332b27d"}, "plot_height": 560, "doc": null, "id": "fd0867ed-5ca0-4e0f-a6af-aab4fb0da736", "tools": [], "below": [{"type": "CategoricalAxis", "id": "c0fa7ef8-ff40-4a23-b894-f0c18c8b48d6"}], "left": [{"type": "LinearAxis", "id": "51d011a2-fa0d-4985-b4d2-7b88095335dc"}]}}, {"attributes": {"doc": null, "id": "b91489c1-be9c-48c4-8c72-aea1e656bf0b", "tags": []}, "type": "CategoricalTickFormatter", "id": "b91489c1-be9c-48c4-8c72-aea1e656bf0b"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "e079dd61-6c58-41db-8062-8590295853e5"}, "type": "Rect", "id": "e079dd61-6c58-41db-8062-8590295853e5"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "cc52a4f6-95be-4288-b273-af6d9a01140b"}, "type": "ToolEvents", "id": "cc52a4f6-95be-4288-b273-af6d9a01140b"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "4c264af7-d7f4-4877-9b25-26540446672e"}, "type": "Rect", "id": "4c264af7-d7f4-4877-9b25-26540446672e"}, {"attributes": {"doc": null, "id": "8da56dd8-417b-4367-8a57-cc295e89d7b2", "tags": []}, "type": "CategoricalTickFormatter", "id": "8da56dd8-417b-4367-8a57-cc295e89d7b2"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "211b7754-cfad-42d7-a3d3-7695ef9b9713"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "3ef0c8f7-8cd5-4e9d-ace5-cca4a79f0aa4"}, "ticker": {"type": "CategoricalTicker", "id": "d67e39dc-8761-4f5d-9893-d41a386f37a5"}, "id": "60700002-3714-4e5d-8452-2154b0c69d19"}, "type": "CategoricalAxis", "id": "60700002-3714-4e5d-8452-2154b0c69d19"}, {"attributes": {"callback": null, "factors": ["N/A", "It's gotten worse", "About the same", "Gotten better"], "doc": null, "tags": [], "id": "7f383e52-f2d3-4952-91ec-9caf27933e46"}, "type": "FactorRange", "id": "7f383e52-f2d3-4952-91ec-9caf27933e46"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "8d37317e-ec95-478c-9eb4-36688e87a471"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "440193a2-a65c-4695-9a96-e1b9db8f513c"}, "ticker": {"type": "BasicTicker", "id": "c5a4ead9-a8be-4660-ac88-41399056d6f6"}, "id": "6cd78add-96b2-4e4a-a840-267e7e543a17"}, "type": "LinearAxis", "id": "6cd78add-96b2-4e4a-a840-267e7e543a17"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "622aa022-2fce-44fd-bdb6-55dc16000e27"}, "tags": [], "doc": null, "selection_glyph": null, "id": "78780b62-a09e-4f55-a2d0-09d18d78692a", "glyph": {"type": "Rect", "id": "ec5d730c-75ab-47f3-88c0-7bbca92c7cf3"}}, "type": "GlyphRenderer", "id": "78780b62-a09e-4f55-a2d0-09d18d78692a"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "7a04eb84-8336-45f7-a5d0-2c561653b17f"}, "type": "Rect", "id": "7a04eb84-8336-45f7-a5d0-2c561653b17f"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "db643a7e-b50b-4937-9fb0-d05a83980787"}, "tags": [], "doc": null, "selection_glyph": null, "id": "72a04f59-6d17-4247-86fa-a4f6325ac458", "glyph": {"type": "Rect", "id": "a3978aef-0031-4d64-b402-74a7b0476809"}}, "type": "GlyphRenderer", "id": "72a04f59-6d17-4247-86fa-a4f6325ac458"}, {"attributes": {"end": 49.50000000000001, "callback": null, "doc": null, "tags": [], "start": 0, "id": "2db05f58-cbf5-4208-8e49-808e3c2f7111"}, "type": "Range1d", "id": "2db05f58-cbf5-4208-8e49-808e3c2f7111"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "317892f8-6166-4bb6-9515-4494ba642ae9"}, "tags": [], "doc": null, "selection_glyph": null, "id": "2423cd58-3bf4-47a8-a5bf-b665c167bb4d", "glyph": {"type": "Rect", "id": "f4e1250e-f2f0-4038-9f97-c479f3f26447"}}, "type": "GlyphRenderer", "id": "2423cd58-3bf4-47a8-a5bf-b665c167bb4d"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "188bb62a-1536-4926-b517-f8ada39606bd"}, "tags": [], "doc": null, "selection_glyph": null, "id": "4f2916bd-e7d2-4545-bf00-48d9629f01ce", "glyph": {"type": "Rect", "id": "d7f9b437-1600-4331-a511-6fbff1144abd"}}, "type": "GlyphRenderer", "id": "4f2916bd-e7d2-4545-bf00-48d9629f01ce"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "7ea767e9-f9f7-4cad-bc97-5711adfcc40c"}, "tags": [], "doc": null, "selection_glyph": null, "id": "e070b272-3af6-4eab-99ab-a43ffa0fb9f9", "glyph": {"type": "Rect", "id": "342695b8-064b-4b1b-b303-97268d68f259"}}, "type": "GlyphRenderer", "id": "e070b272-3af6-4eab-99ab-a43ffa0fb9f9"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "4164940b-1143-4f6c-b1d6-cbfd2cd7b256"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "c6dc0ad8-f3ed-4067-bd2c-a3a6e459484c"}, "id": "58e998f2-ba53-419e-9ac8-833b47865eff"}, "type": "Grid", "id": "58e998f2-ba53-419e-9ac8-833b47865eff"}, {"subtype": "Chart", "type": "Plot", "id": "7808946e-3b7d-4351-9671-294b782a031e", "attributes": {"x_range": {"type": "FactorRange", "id": "0c8ecf09-4e91-488f-a5f3-c1568d9a4bed"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "e7f22fef-b7fa-40d4-9eef-dd5e41a1729e"}, "title": "How satisfied are you with the following items at Mozilla? [Version control]", "renderers": [{"type": "CategoricalAxis", "id": "352d594a-f77d-4624-b0f2-fb55fecab8e7"}, {"type": "LinearAxis", "id": "30e23414-4e1f-4d9b-b917-dad4aa71066e"}, {"type": "Grid", "id": "5dde4ec8-04fd-4a22-a788-f9f93f16a2ab"}, {"type": "GlyphRenderer", "id": "7e689d8d-93ac-4ebd-a28a-dbc0f21b08c1"}, {"type": "GlyphRenderer", "id": "f434e4c3-598a-4c8f-a1d7-f1bfcdaaf953"}, {"type": "Legend", "id": "0b421c3a-3ab2-490a-9eb0-0459eaa76875"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "7039b922-8a0b-4183-9633-2bf4010eac84"}, "plot_height": 560, "doc": null, "id": "7808946e-3b7d-4351-9671-294b782a031e", "tools": [], "below": [{"type": "CategoricalAxis", "id": "352d594a-f77d-4624-b0f2-fb55fecab8e7"}], "left": [{"type": "LinearAxis", "id": "30e23414-4e1f-4d9b-b917-dad4aa71066e"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "490a807f-dfed-464f-bc7a-59571a1b4794"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "40aee55e-dbb1-45fc-87c9-03c4e2934a79"}, "ticker": {"type": "CategoricalTicker", "id": "f19e275e-6972-4f1e-ae12-eebff09990b9"}, "id": "4080d443-bb8d-4116-9383-612efc1973db"}, "type": "CategoricalAxis", "id": "4080d443-bb8d-4116-9383-612efc1973db"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "e06e49ff-2093-4742-b1ff-f098e54fd6d2"}, "tags": [], "doc": null, "selection_glyph": null, "id": "c54dd88f-ceff-4098-9638-cbd1488acc07", "glyph": {"type": "Rect", "id": "5ec563fc-c5ee-4f38-a48d-c217288af1bb"}}, "type": "GlyphRenderer", "id": "c54dd88f-ceff-4098-9638-cbd1488acc07"}, {"subtype": "Chart", "type": "Plot", "id": "1ffa588b-2b23-4a03-a431-40c63fa7c4ae", "attributes": {"x_range": {"type": "FactorRange", "id": "79a45279-3ef4-4885-87e9-0238b5e1f854"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "511c8633-a0a1-43e9-8014-301baf70577d"}, "title": "How often do you clone a Firefox repository (mozilla-central, inbound, beta, etc)?", "renderers": [{"type": "CategoricalAxis", "id": "1ab770ba-d335-48ac-b3e3-7232a782bc4f"}, {"type": "LinearAxis", "id": "40723e16-1cda-46cd-8cfe-d38b3acf87e5"}, {"type": "Grid", "id": "c335df55-2b23-41c3-851a-6e0f68b7742d"}, {"type": "GlyphRenderer", "id": "27b97026-aa7c-4f96-8f6d-9402966d6738"}, {"type": "GlyphRenderer", "id": "1d877b37-87bf-4b61-8111-6d6d5547864c"}, {"type": "Legend", "id": "1c148277-c6a4-4b46-b204-519a45eb6854"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "85223055-9f53-4ab0-b539-e74c525e746e"}, "plot_height": 560, "doc": null, "id": "1ffa588b-2b23-4a03-a431-40c63fa7c4ae", "tools": [], "below": [{"type": "CategoricalAxis", "id": "1ab770ba-d335-48ac-b3e3-7232a782bc4f"}], "left": [{"type": "LinearAxis", "id": "40723e16-1cda-46cd-8cfe-d38b3acf87e5"}]}}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "0742d577-712b-4338-91f1-ec6b36212fcd"}, "type": "Rect", "id": "0742d577-712b-4338-91f1-ec6b36212fcd"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "809016c3-2f8e-4771-aa32-f933297dcf2e"}, "orientation": "top_left", "tags": [], "doc": null, "id": "5f54f520-4f44-478d-9344-d79d4eec1aa3", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "fb0ea017-41f9-45c0-8c8d-6a32918d45db"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "9ba65650-b933-4b2c-b8a9-4d3cf59cd4be"}]]]}, "type": "Legend", "id": "5f54f520-4f44-478d-9344-d79d4eec1aa3"}, {"attributes": {"end": 59.400000000000006, "callback": null, "doc": null, "tags": [], "start": 0, "id": "1a7a7baa-dc6a-409d-a49f-818b78be5bb6"}, "type": "Range1d", "id": "1a7a7baa-dc6a-409d-a49f-818b78be5bb6"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "de17671d-f2af-4918-904d-ee51bf2ca003"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "7abacabb-8534-427e-aa0f-7d928828be51"}, "ticker": {"type": "CategoricalTicker", "id": "58e1063a-9727-4237-844d-57ae79940c81"}, "id": "209a13f0-4e75-49be-8de6-7818c0b8cb63"}, "type": "CategoricalAxis", "id": "209a13f0-4e75-49be-8de6-7818c0b8cb63"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "982450d2-3281-496c-8d55-9d279807bfd4"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "89992255-694f-4793-b06f-aa7d17d74843"}, "id": "719bc7f2-0d6c-4173-b9b6-95f39069218a"}, "type": "Grid", "id": "719bc7f2-0d6c-4173-b9b6-95f39069218a"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "8b36e537-03ae-49cc-b9de-795f88ca0c66"}, "type": "ToolEvents", "id": "8b36e537-03ae-49cc-b9de-795f88ca0c66"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "987dfa8a-e7f9-4cf3-abbe-ada9476aacd7"}, "type": "Rect", "id": "987dfa8a-e7f9-4cf3-abbe-ada9476aacd7"}, {"attributes": {"doc": null, "id": "33ee952c-6782-4384-804c-66eb1eb614a5", "tags": []}, "type": "CategoricalTickFormatter", "id": "33ee952c-6782-4384-804c-66eb1eb614a5"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "d118f4dc-0b32-4423-9368-c5126ddcfc99"}, "type": "ToolEvents", "id": "d118f4dc-0b32-4423-9368-c5126ddcfc99"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "0c767648-5c71-4487-8915-b4b03bf0395b"}, "orientation": "top_left", "tags": [], "doc": null, "id": "f8d5f4e8-c1f7-47df-bf53-4ea865d1a3f0", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "14424d79-4ac8-44f4-8151-b5a3beca8b82"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "11257f37-258d-4c29-b511-0d53533226eb"}]]]}, "type": "Legend", "id": "f8d5f4e8-c1f7-47df-bf53-4ea865d1a3f0"}, {"attributes": {"doc": null, "id": "503f395e-3521-4407-b32e-b92707c17d48", "tags": []}, "type": "BasicTickFormatter", "id": "503f395e-3521-4407-b32e-b92707c17d48"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ac80c5e0-3f83-454b-b4ed-ee002dcc3c50"}, "orientation": "top_left", "tags": [], "doc": null, "id": "ac5228b7-3584-4458-b687-33262e4c61a9", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "ae262bee-ad02-4466-81f4-73094c6513f0"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "4c18b391-aee4-4586-a5a1-c80ff350c3bf"}]]]}, "type": "Legend", "id": "ac5228b7-3584-4458-b687-33262e4c61a9"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "56178a0e-ffa8-49dc-a9b6-ec24a8fd797f"}, "tags": [], "doc": null, "selection_glyph": null, "id": "efc119eb-e7ab-4111-9e3d-48d8b2d62520", "glyph": {"type": "Rect", "id": "c8328126-cdf1-42ab-8b73-7167c40ee2da"}}, "type": "GlyphRenderer", "id": "efc119eb-e7ab-4111-9e3d-48d8b2d62520"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [2.5, 13.0, 6.5, 9.0, 14.0, 4.0], "Platform": [5, 26, 13, 18, 28, 8], "catFx-Team": ["All Other Responses:0.666666666667", "N/A:0.666666666667", "Extremely dissatisfied:0.666666666667", "Below average:0.666666666667", "Average:0.666666666667", "Above average:0.666666666667"], "cat": ["All Other Responses", "N/A", "Extremely dissatisfied", "Below average", "Average", "Above average"], "midPlatform": [2.5, 13.0, 6.5, 9.0, 14.0, 4.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [5.0, 53.0, 26.0, 34.0, 60.0, 18.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A:0.333333333333", "Extremely dissatisfied:0.333333333333", "Below average:0.333333333333", "Average:0.333333333333", "Above average:0.333333333333"], "stackedFx-Team": [5.0, 39.5, 19.5, 26.0, 44.0, 13.0], "midFx-Team": [0.0, 13.5, 6.5, 8.0, 16.0, 5.0], "Fx-Team": [0, 27, 13, 16, 32, 10]}, "id": "721c3dc0-2d48-4839-95d3-71a4009420ee"}, "type": "ColumnDataSource", "id": "721c3dc0-2d48-4839-95d3-71a4009420ee"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "c2abb9fe-642d-483e-8741-49953a2f7df4"}, "type": "Rect", "id": "c2abb9fe-642d-483e-8741-49953a2f7df4"}, {"attributes": {"callback": null, "factors": ["No", "Yes"], "doc": null, "tags": [], "id": "612e985f-9489-4ed6-b8eb-1b4f5850618c"}, "type": "FactorRange", "id": "612e985f-9489-4ed6-b8eb-1b4f5850618c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ae9c28fb-d4a1-4a0f-89f5-1101ea237083"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "281ee3f6-656d-4f59-8328-5b2bfa080b84"}, "id": "668e7685-7740-4958-b21b-2fc138e736ff"}, "type": "Grid", "id": "668e7685-7740-4958-b21b-2fc138e736ff"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "5469849f-877c-4ea4-81ec-eec6402d4391"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "9035afe7-db18-457a-a90f-93e02a6dec67"}, "ticker": {"type": "CategoricalTicker", "id": "a1ace8f6-6570-41ef-8a0d-c12013fca169"}, "id": "39030422-cc59-4d91-8646-0456d2e780f7"}, "type": "CategoricalAxis", "id": "39030422-cc59-4d91-8646-0456d2e780f7"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "5d453f74-3abc-47b1-87f6-76be1bc5ed32"}, "type": "BasicTicker", "id": "5d453f74-3abc-47b1-87f6-76be1bc5ed32"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ae9c28fb-d4a1-4a0f-89f5-1101ea237083"}, "orientation": "top_left", "tags": [], "doc": null, "id": "a955449b-66e4-4037-a687-3811ed132ba5", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "577c1771-8643-4f9a-8421-87aab678cc44"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "a23bc05c-fcca-4f21-ac6b-f596ff61f7e6"}]]]}, "type": "Legend", "id": "a955449b-66e4-4037-a687-3811ed132ba5"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "I can't live without it", "I love it", "I tolerate using it, despite deficiencies", "I use it regularly", "I used it previously but have stopped", "MQ is silly and should be avoided", "Resolving conflicts is annoying"], "doc": null, "tags": [], "id": "4cbd9002-e975-4a68-9364-e8bfa2904b57"}, "type": "FactorRange", "id": "4cbd9002-e975-4a68-9364-e8bfa2904b57"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a05e5655-b828-4862-a09d-654ec6d29afd"}, "orientation": "top_left", "tags": [], "doc": null, "id": "7219e797-3d41-406b-ae49-8729b7fc58ba", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "e5317421-53a2-47ef-9282-319af5d4a271"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "bd42cc1d-8f2e-46bb-89b3-6774d8535490"}]]]}, "type": "Legend", "id": "7219e797-3d41-406b-ae49-8729b7fc58ba"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "d1b1878c-ef69-448a-8398-2c49a0559edc"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "0f315a97-da51-4ebb-acf3-d836e385200e"}, "ticker": {"type": "BasicTicker", "id": "f673dd49-06fe-47cf-aa4a-5c0fe8a89033"}, "id": "ae905dd8-fe9c-4300-9748-b56683c40695"}, "type": "LinearAxis", "id": "ae905dd8-fe9c-4300-9748-b56683c40695"}, {"attributes": {"callback": null, "factors": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "4a7006a6-402a-45f9-8012-0a2e5142b6af"}, "type": "FactorRange", "id": "4a7006a6-402a-45f9-8012-0a2e5142b6af"}, {"attributes": {"doc": null, "id": "0dc64be2-96e7-4632-ad63-f16d36c41b38", "tags": []}, "type": "CategoricalTickFormatter", "id": "0dc64be2-96e7-4632-ad63-f16d36c41b38"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "36e4e267-2fc2-456c-baf3-f5dfb64ce2bb"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "925bdcbe-0218-4281-87fd-f7572c022b84"}, "ticker": {"type": "CategoricalTicker", "id": "9e63735b-58bd-4d8f-b7bd-aa16ff16ec06"}, "id": "768c6fd4-bca8-4fbf-8094-30b362d8db8a"}, "type": "CategoricalAxis", "id": "768c6fd4-bca8-4fbf-8094-30b362d8db8a"}, {"attributes": {"doc": null, "id": "d81e44e0-509d-45c0-9520-c8d6e792db54", "tags": []}, "type": "CategoricalTickFormatter", "id": "d81e44e0-509d-45c0-9520-c8d6e792db54"}, {"attributes": {"callback": null, "factors": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "1fbd04b5-6f9b-4011-bae6-095d0f8247e8"}, "type": "FactorRange", "id": "1fbd04b5-6f9b-4011-bae6-095d0f8247e8"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "5a2c292c-6d45-4bb5-8689-55b20fef247d"}, "type": "Rect", "id": "5a2c292c-6d45-4bb5-8689-55b20fef247d"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "2 - little impact", "3 - a fair amount of impact", "4 - a significant amount of impact", "5 - an extremely frustrating amount of impact"], "doc": null, "tags": [], "id": "d731da9b-d106-4dc6-8009-b67a79474c6d"}, "type": "FactorRange", "id": "d731da9b-d106-4dc6-8009-b67a79474c6d"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "77a6020c-80a3-41e9-a0f9-add80c1e1546"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "6d83ab24-aa61-45de-851c-87609a4bba6f"}, "ticker": {"type": "BasicTicker", "id": "b080480d-2072-46de-8efa-598cc09f3801"}, "id": "2b120211-158f-4d26-92aa-332d5b0f9c9f"}, "type": "LinearAxis", "id": "2b120211-158f-4d26-92aa-332d5b0f9c9f"}, {"subtype": "Chart", "type": "Plot", "id": "0e178837-e55a-4d99-a3f8-4597a95121f0", "attributes": {"x_range": {"type": "FactorRange", "id": "1a185a23-7c24-4f31-80fa-c6a45d97b226"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "b6a4b06a-8e61-4d16-9cc3-c7647564dc19"}, "title": "Thinking of the entire development process, from checking out code to landing a patch, please rank the following categories according to how much they impact your own productivity. [Understanding and changing the code is just too difficult]", "renderers": [{"type": "CategoricalAxis", "id": "2d671e13-7a61-467e-8ff7-0a2d6b8a9d83"}, {"type": "LinearAxis", "id": "2170ac0e-2d52-40b5-8f66-426f4b3bdff7"}, {"type": "Grid", "id": "6abbc476-6948-4bc4-b339-98b118c0c28c"}, {"type": "GlyphRenderer", "id": "f628c8a2-ac14-4d4e-a5e5-dd5dbf92a023"}, {"type": "GlyphRenderer", "id": "cb0b63dd-fa0d-40f5-b14b-9dc3ea306af2"}, {"type": "Legend", "id": "e29e843f-3d8c-4979-be29-0e57619b519a"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "eba32c5d-7f69-48a8-b532-9b2383b6d623"}, "plot_height": 560, "doc": null, "id": "0e178837-e55a-4d99-a3f8-4597a95121f0", "tools": [], "below": [{"type": "CategoricalAxis", "id": "2d671e13-7a61-467e-8ff7-0a2d6b8a9d83"}], "left": [{"type": "LinearAxis", "id": "2170ac0e-2d52-40b5-8f66-426f4b3bdff7"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "68867bb8-e0b8-433b-b5e4-63ea8e54af1b"}, "orientation": "top_left", "tags": [], "doc": null, "id": "b8e2820a-e021-4b8d-a1d5-9d59faf7dd46", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "78780b62-a09e-4f55-a2d0-09d18d78692a"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "bab979b5-5c08-4f54-afde-e67a5d6cd724"}]]]}, "type": "Legend", "id": "b8e2820a-e021-4b8d-a1d5-9d59faf7dd46"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "62944075-58c8-42a5-a355-808516772de9"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "dfd6b33d-2558-4e2e-81c2-1e36a8e73f13"}, "id": "39df9dd0-2844-41fd-9a4f-b16ffe4f1469"}, "type": "Grid", "id": "39df9dd0-2844-41fd-9a4f-b16ffe4f1469"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a05e5655-b828-4862-a09d-654ec6d29afd"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "33ee952c-6782-4384-804c-66eb1eb614a5"}, "ticker": {"type": "CategoricalTicker", "id": "4cbeda05-8cfc-4ed3-b650-8555de13470e"}, "id": "e62652a2-04d9-4270-b7f9-f471a2cbceec"}, "type": "CategoricalAxis", "id": "e62652a2-04d9-4270-b7f9-f471a2cbceec"}, {"attributes": {"doc": null, "id": "ed9caf25-4224-4f58-822e-e934ed0933b8", "tags": []}, "type": "BasicTickFormatter", "id": "ed9caf25-4224-4f58-822e-e934ed0933b8"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [4.0, 5.5, 12.0, 14.0, 13.5], "Platform": [8, 11, 24, 28, 27], "catFx-Team": ["N/A:0.666666666667", "1 = little impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["N/A", "1 = little impact", "2", "3", "4 = most impact"], "midPlatform": [4.0, 5.5, 12.0, 14.0, 13.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [51.0, 29.0, 45.0, 36.0, 35.0], "catPlatform": ["N/A:0.333333333333", "1 = little impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [29.5, 20.0, 34.5, 32.0, 31.0], "midFx-Team": [21.5, 9.0, 10.5, 4.0, 4.0], "Fx-Team": [43, 18, 21, 8, 8]}, "id": "583eece9-fdd4-487b-8c56-17327fb094e7"}, "type": "ColumnDataSource", "id": "583eece9-fdd4-487b-8c56-17327fb094e7"}, {"attributes": {"doc": null, "id": "c7ce2fef-4f06-4cbd-81ca-c9ff9355614b", "tags": []}, "type": "BasicTickFormatter", "id": "c7ce2fef-4f06-4cbd-81ca-c9ff9355614b"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "92ff98ee-44de-47b6-a03b-27b8d7200a4e"}, "orientation": "top_left", "tags": [], "doc": null, "id": "0fb5265a-59ca-4040-b4e2-ce52069c5b8a", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "c04a4e98-1dfc-4591-8014-663a929d3b3c"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "dd9774c3-d2f5-495d-854e-69160056fa99"}]]]}, "type": "Legend", "id": "0fb5265a-59ca-4040-b4e2-ce52069c5b8a"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "219d1c93-23df-4582-8adc-7e8ea1246cd6"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "22cbc21e-b62a-4909-b55f-ee229da821ff"}, "id": "e640ce7e-77e4-41ca-8688-93383cc5cc83"}, "type": "Grid", "id": "e640ce7e-77e4-41ca-8688-93383cc5cc83"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "ab691136-5eca-4ed5-887c-3ef995b6a083"}, "type": "ToolEvents", "id": "ab691136-5eca-4ed5-887c-3ef995b6a083"}, {"attributes": {"doc": null, "id": "c8bfd8f9-c1cf-40e3-a611-c05141af19d0", "tags": []}, "type": "BasicTickFormatter", "id": "c8bfd8f9-c1cf-40e3-a611-c05141af19d0"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "15440e60-4cb6-49d6-8822-584a4bf79fc6"}, "type": "ToolEvents", "id": "15440e60-4cb6-49d6-8822-584a4bf79fc6"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "b8b8ee40-a871-4470-b176-021e034761a4"}, "tags": [], "doc": null, "selection_glyph": null, "id": "3552ae2f-d21f-4339-8bee-afc06337654f", "glyph": {"type": "Rect", "id": "6404456d-d0b6-4cb5-91bf-a98c72a94846"}}, "type": "GlyphRenderer", "id": "3552ae2f-d21f-4339-8bee-afc06337654f"}, {"attributes": {"doc": null, "id": "670cef4a-9621-4914-8015-4db0b18868e0", "tags": []}, "type": "CategoricalTicker", "id": "670cef4a-9621-4914-8015-4db0b18868e0"}, {"attributes": {"end": 35.2, "callback": null, "doc": null, "tags": [], "start": 0, "id": "e1e9bc73-207b-47eb-8c9a-90b2cbd8c42d"}, "type": "Range1d", "id": "e1e9bc73-207b-47eb-8c9a-90b2cbd8c42d"}, {"attributes": {"doc": null, "id": "05ed8d55-98c1-46a8-bfb0-74762a0a17ce", "tags": []}, "type": "CategoricalTicker", "id": "05ed8d55-98c1-46a8-bfb0-74762a0a17ce"}, {"attributes": {"callback": null, "factors": ["N/A (not relevant to me)", "Cut all investment", "Cut some investment", "Keep about the same", "Increase investment", "Drastically increase investment"], "doc": null, "tags": [], "id": "63e34d18-e12e-480c-a1b8-14fcbb3ee8ab"}, "type": "FactorRange", "id": "63e34d18-e12e-480c-a1b8-14fcbb3ee8ab"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "52077e32-8dba-451d-8bf5-8c6b9d004552"}, "tags": [], "doc": null, "selection_glyph": null, "id": "0555bc73-fe20-4fc6-8f64-906d760f6ba6", "glyph": {"type": "Rect", "id": "5ce90c58-b60f-497f-8067-cce45c8758d7"}}, "type": "GlyphRenderer", "id": "0555bc73-fe20-4fc6-8f64-906d760f6ba6"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "b2f0ea7e-96b8-47b2-bd31-9d95ebad3eb9"}, "type": "BasicTicker", "id": "b2f0ea7e-96b8-47b2-bd31-9d95ebad3eb9"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "8af738e2-bb5f-4fc5-8ad7-e055e53f0a3d"}, "tags": [], "doc": null, "selection_glyph": null, "id": "15484022-03ab-4534-9951-3c85e757eeae", "glyph": {"type": "Rect", "id": "f6d4cc04-2339-49ee-a74e-468165c74fe0"}}, "type": "GlyphRenderer", "id": "15484022-03ab-4534-9951-3c85e757eeae"}, {"attributes": {"doc": null, "id": "7f8465ff-c60f-495c-a9c0-6bd1b34a790e", "tags": []}, "type": "BasicTickFormatter", "id": "7f8465ff-c60f-495c-a9c0-6bd1b34a790e"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "7aa85ca2-4fbf-4ed8-8b6e-40101e2ca4c2"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "86e84836-6d03-4d01-8cf2-29f8223e52ea"}, "ticker": {"type": "CategoricalTicker", "id": "0c954156-c69a-4ff4-878e-3ed2cfc25a2a"}, "id": "93e2e9c1-8191-4fe1-95a1-779004e7d924"}, "type": "CategoricalAxis", "id": "93e2e9c1-8191-4fe1-95a1-779004e7d924"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a0686fbe-3de2-41ce-92a9-c9e525d59586"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "6f807579-afe4-494c-b2f3-99604b853b08"}, "ticker": {"type": "BasicTicker", "id": "1cbe8503-b31e-4129-9913-6880a9f69c78"}, "id": "e386e167-934d-4903-83e2-65293de12f52"}, "type": "LinearAxis", "id": "e386e167-934d-4903-83e2-65293de12f52"}, {"subtype": "Chart", "type": "Plot", "id": "d1b1878c-ef69-448a-8398-2c49a0559edc", "attributes": {"x_range": {"type": "FactorRange", "id": "79b4e92a-ac2f-41fe-bf78-8ec8f7f26945"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "7b7886cb-0917-49c3-a452-e0620fce3e55"}, "title": "Rank the following issues according to how they impact your ability to debug tests locally. [Tests fail locally but not in automation so it\u2019s hard to know if something\u2019s my fault]", "renderers": [{"type": "CategoricalAxis", "id": "7d4cecba-ad9a-4af2-94fe-123d557f05f7"}, {"type": "LinearAxis", "id": "ae905dd8-fe9c-4300-9748-b56683c40695"}, {"type": "Grid", "id": "299c7ba3-b4d2-4c83-861d-ca221e7fc818"}, {"type": "GlyphRenderer", "id": "c7be80d7-1af9-46e5-8efa-2a619cb60a6b"}, {"type": "GlyphRenderer", "id": "2a7543b7-8a4e-46e2-990c-b22f0f651bec"}, {"type": "Legend", "id": "60b857c8-ee73-4bf6-872f-a2e40966fa8c"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "f098136f-4cbd-4d90-861d-4c65bbda336c"}, "plot_height": 560, "doc": null, "id": "d1b1878c-ef69-448a-8398-2c49a0559edc", "tools": [], "below": [{"type": "CategoricalAxis", "id": "7d4cecba-ad9a-4af2-94fe-123d557f05f7"}], "left": [{"type": "LinearAxis", "id": "ae905dd8-fe9c-4300-9748-b56683c40695"}]}}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "b557c33d-6ffe-4abb-8bf9-72c13f6fcfb6"}, "tags": [], "doc": null, "selection_glyph": null, "id": "0ff633b6-4f1d-45fd-8051-6cd89c2f1aec", "glyph": {"type": "Rect", "id": "38a278a8-d074-402e-82ee-3d3b111612b9"}}, "type": "GlyphRenderer", "id": "0ff633b6-4f1d-45fd-8051-6cd89c2f1aec"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "7daa4575-6fb8-400e-9404-a7de816bac07"}, "tags": [], "doc": null, "selection_glyph": null, "id": "6a42f71a-4032-4301-a00a-fa06052ead67", "glyph": {"type": "Rect", "id": "f6c66e85-08d4-4c17-bc1a-5396f2b6dec0"}}, "type": "GlyphRenderer", "id": "6a42f71a-4032-4301-a00a-fa06052ead67"}, {"attributes": {"end": 40.7, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "0f746331-2c78-4584-9630-ac76fd2f86ca"}, "type": "Range1d", "id": "0f746331-2c78-4584-9630-ac76fd2f86ca"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "1ffa588b-2b23-4a03-a431-40c63fa7c4ae"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "99192d3b-c44d-41b5-ae44-ddfe7aaaa0f8"}, "id": "c335df55-2b23-41c3-851a-6e0f68b7742d"}, "type": "Grid", "id": "c335df55-2b23-41c3-851a-6e0f68b7742d"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "29171b9d-c5b1-4ecd-8c4e-8ae313c65d31"}, "type": "Rect", "id": "29171b9d-c5b1-4ecd-8c4e-8ae313c65d31"}, {"subtype": "Chart", "type": "Plot", "id": "36e4e267-2fc2-456c-baf3-f5dfb64ce2bb", "attributes": {"x_range": {"type": "FactorRange", "id": "d79feb73-5d09-4ab0-b753-b0aec269d6a8"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "bb78faac-baba-4cba-b115-83d8ce3e1750"}, "title": "How impactful would the following potential MozReview features have on your productivity? [Multiple bugs per review series]", "renderers": [{"type": "CategoricalAxis", "id": "768c6fd4-bca8-4fbf-8094-30b362d8db8a"}, {"type": "LinearAxis", "id": "d8c1fff7-252f-4390-af3d-a7892d70bbf4"}, {"type": "Grid", "id": "82d9c7d1-e2bc-4340-a412-fc3ca9ec8f91"}, {"type": "GlyphRenderer", "id": "bf6e6044-f58c-4bc1-b6a2-5ec1b414e3bc"}, {"type": "GlyphRenderer", "id": "72a04f59-6d17-4247-86fa-a4f6325ac458"}, {"type": "Legend", "id": "ac01a528-cad2-441d-8e3c-fabfc781728b"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "5582c568-ce52-4ad1-86db-1b69b7240ad6"}, "plot_height": 560, "doc": null, "id": "36e4e267-2fc2-456c-baf3-f5dfb64ce2bb", "tools": [], "below": [{"type": "CategoricalAxis", "id": "768c6fd4-bca8-4fbf-8094-30b362d8db8a"}], "left": [{"type": "LinearAxis", "id": "d8c1fff7-252f-4390-af3d-a7892d70bbf4"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a6ad311a-50f7-421b-91ec-dee401cf22d5"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "8236b4a6-f057-4c83-9b7d-8be813723c5b"}, "ticker": {"type": "BasicTicker", "id": "bbc3b461-4e02-459f-92d4-302a3032f61c"}, "id": "4991be66-eaaf-422e-abc1-e79d76f351a3"}, "type": "LinearAxis", "id": "4991be66-eaaf-422e-abc1-e79d76f351a3"}, {"attributes": {"doc": null, "id": "c34c0c2a-3700-4e7e-a8cc-dbc0a9c1bc1a", "tags": []}, "type": "CategoricalTicker", "id": "c34c0c2a-3700-4e7e-a8cc-dbc0a9c1bc1a"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [23.0, 7.5, 10.0, 9.5, 10.0], "Platform": [46, 15, 20, 19, 20], "catFx-Team": ["A custom view of just my pushes and other data:0.666666666667", "All Other Responses:0.666666666667", "Better experience on mobile devices:0.666666666667", "New ways to organize / view the data:0.666666666667", "User profile with custom default settings:0.666666666667"], "cat": ["A custom view of just my pushes and other data", "All Other Responses", "Better experience on mobile devices", "New ways to organize / view the data", "User profile with custom default settings"], "midPlatform": [23.0, 7.5, 10.0, 9.5, 10.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [89.0, 36.0, 44.0, 51.0, 47.0], "catPlatform": ["A custom view of just my pushes and other data:0.333333333333", "All Other Responses:0.333333333333", "Better experience on mobile devices:0.333333333333", "New ways to organize / view the data:0.333333333333", "User profile with custom default settings:0.333333333333"], "stackedFx-Team": [67.5, 25.5, 32.0, 35.0, 33.5], "midFx-Team": [21.5, 10.5, 12.0, 16.0, 13.5], "Fx-Team": [43, 21, 24, 32, 27]}, "id": "31e56254-66df-4dad-862b-f6660ea76c0f"}, "type": "ColumnDataSource", "id": "31e56254-66df-4dad-862b-f6660ea76c0f"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [1.0, 10.5, 19.5, 13.5, 4.0], "Platform": [2, 21, 39, 27, 8], "catFx-Team": ["All Other Responses:0.666666666667", "1 = least impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["All Other Responses", "1 = least impact", "2", "3", "4 = most impact"], "midPlatform": [1.0, 10.5, 19.5, 13.5, 4.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [4.0, 53.0, 66.0, 54.0, 18.0], "catPlatform": ["All Other Responses:0.333333333333", "1 = least impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [3.0, 37.0, 52.5, 40.5, 13.0], "midFx-Team": [1.0, 16.0, 13.5, 13.5, 5.0], "Fx-Team": [2, 32, 27, 27, 10]}, "id": "2336062a-f291-4997-8c28-27480a3c327c"}, "type": "ColumnDataSource", "id": "2336062a-f291-4997-8c28-27480a3c327c"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "961ada31-53fb-4c50-b546-0cd3fca4b53a"}, "type": "Rect", "id": "961ada31-53fb-4c50-b546-0cd3fca4b53a"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "483e5293-c3fb-445e-a36d-de33b00b2dc3"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "24371dd4-bf38-4d07-9214-7520be6f2afa"}, "id": "1cc88f23-ccbe-4cc9-bb5e-24000093d4a4"}, "type": "Grid", "id": "1cc88f23-ccbe-4cc9-bb5e-24000093d4a4"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "45c4abc2-3fab-4538-bf30-d738079d7051"}, "type": "BasicTicker", "id": "45c4abc2-3fab-4538-bf30-d738079d7051"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "3437ad23-aec2-4899-af88-a9284302ec7f"}, "tags": [], "doc": null, "selection_glyph": null, "id": "2150f83e-dba1-4306-8e94-e9479f5c142d", "glyph": {"type": "Rect", "id": "5d60df04-f52d-42c3-b6bf-f9d9fe614c4d"}}, "type": "GlyphRenderer", "id": "2150f83e-dba1-4306-8e94-e9479f5c142d"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ab788251-b12b-4ac1-8f06-309a94a3e42e"}, "orientation": "top_left", "tags": [], "doc": null, "id": "516cb654-0057-48e2-adc8-f9dbd8c49c1f", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "bdd16ab2-e262-41b8-83ea-ddc1c4548679"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "673906a4-ffa2-4922-a6f3-a2865f5a6889"}]]]}, "type": "Legend", "id": "516cb654-0057-48e2-adc8-f9dbd8c49c1f"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [1.0, 4.5, 12.5, 16.0, 10.5, 4.5], "Platform": [2, 9, 25, 32, 21, 9], "catFx-Team": ["All Other Responses:0.666666666667", "Not sure:0.666666666667", "Up to 10% more productive:0.666666666667", "Up to 25% more productive:0.666666666667", "Up to 50% more productive:0.666666666667", "100%+ more productive (you'd be a machine):0.666666666667"], "cat": ["All Other Responses", "Not sure", "Up to 10% more productive", "Up to 25% more productive", "Up to 50% more productive", "100%+ more productive (you'd be a machine)"], "midPlatform": [1.0, 4.5, 12.5, 16.0, 10.5, 4.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [2.0, 14.0, 49.0, 56.0, 53.0, 22.0], "catPlatform": ["All Other Responses:0.333333333333", "Not sure:0.333333333333", "Up to 10% more productive:0.333333333333", "Up to 25% more productive:0.333333333333", "Up to 50% more productive:0.333333333333", "100%+ more productive (you'd be a machine):0.333333333333"], "stackedFx-Team": [2.0, 11.5, 37.0, 44.0, 37.0, 15.5], "midFx-Team": [0.0, 2.5, 12.0, 12.0, 16.0, 6.5], "Fx-Team": [0, 5, 24, 24, 32, 13]}, "id": "94615ab0-26ac-4cbf-b83c-62287a6bf695"}, "type": "ColumnDataSource", "id": "94615ab0-26ac-4cbf-b83c-62287a6bf695"}, {"subtype": "Chart", "type": "Plot", "id": "62944075-58c8-42a5-a355-808516772de9", "attributes": {"x_range": {"type": "FactorRange", "id": "12502aa5-2f33-4cbf-b38a-10b14f85e2c8"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "53fbdd9a-d09c-4022-a33a-898d5c1f0f85"}, "title": "How satisfied are you with the following aspects of MozReview? [Comment integration with Bugzilla]", "renderers": [{"type": "CategoricalAxis", "id": "52e6dbe8-f3fb-4ba3-80b5-02a420317a49"}, {"type": "LinearAxis", "id": "58c8a576-8ff8-4aab-9f76-f2d2ab3bd259"}, {"type": "Grid", "id": "39df9dd0-2844-41fd-9a4f-b16ffe4f1469"}, {"type": "GlyphRenderer", "id": "5692e079-0433-47e7-8f67-514f703925ed"}, {"type": "GlyphRenderer", "id": "7a8c3486-5128-41b5-90f4-f1f0ec389374"}, {"type": "Legend", "id": "8ce7afdb-3be4-4a6b-9010-5a7bff3786a5"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "f2c80e45-356b-4689-8f5e-98536ebae910"}, "plot_height": 560, "doc": null, "id": "62944075-58c8-42a5-a355-808516772de9", "tools": [], "below": [{"type": "CategoricalAxis", "id": "52e6dbe8-f3fb-4ba3-80b5-02a420317a49"}], "left": [{"type": "LinearAxis", "id": "58c8a576-8ff8-4aab-9f76-f2d2ab3bd259"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "428e5f98-2f83-4b91-b36b-414ece060d10"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "1d2307a2-039c-4a18-9879-71c75db5d055"}, "ticker": {"type": "CategoricalTicker", "id": "d764ad15-8271-43cf-95fe-2e2fbf81ea15"}, "id": "6430563a-f568-4d7c-addb-8bd9ba755359"}, "type": "CategoricalAxis", "id": "6430563a-f568-4d7c-addb-8bd9ba755359"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "38f970fb-87dc-410f-89a3-a0002cda629b"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "6218f5e8-b6ee-4f36-8366-60c6a53b8411"}, "ticker": {"type": "CategoricalTicker", "id": "0e96da3b-8d2f-4459-8a9b-5cac2604d673"}, "id": "b217cee1-a280-4beb-b1f2-c788a5bc61e2"}, "type": "CategoricalAxis", "id": "b217cee1-a280-4beb-b1f2-c788a5bc61e2"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "40f555e7-ccbf-479c-9c23-75177a31e162"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "55c3ddaf-419e-4e87-9abe-35ece25a7e1e"}, "ticker": {"type": "CategoricalTicker", "id": "b6ab9f9e-fe15-4641-985f-d65b2c0dbd8e"}, "id": "1fff8340-328a-4fea-8f45-274807fd0aee"}, "type": "CategoricalAxis", "id": "1fff8340-328a-4fea-8f45-274807fd0aee"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "563861ed-4b30-4bb1-ad40-24439fe897a8"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "ca81be37-0780-48a8-af01-f10ac6e86dd9"}, "ticker": {"type": "CategoricalTicker", "id": "5e57954c-9d67-4d29-bb6b-5b74a46165e6"}, "id": "6f8e6482-dc4d-43d2-8b1c-2084cd42564e"}, "type": "CategoricalAxis", "id": "6f8e6482-dc4d-43d2-8b1c-2084cd42564e"}, {"attributes": {"end": 47.300000000000004, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "ea5ee080-4ffb-48d4-a6b2-f77bf195569f"}, "type": "Range1d", "id": "ea5ee080-4ffb-48d4-a6b2-f77bf195569f"}, {"subtype": "Chart", "type": "Plot", "id": "f36211ad-7644-4302-88a4-ae6e74612306", "attributes": {"x_range": {"type": "FactorRange", "id": "81194e1d-8294-457b-bac4-6020dcace603"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "1305cc6b-9a54-4bae-828c-46ed237f5cfa"}, "title": "Thinking of the process of writing and debugging code, rank the following in terms of their impact on your productivity [There's too much technical debt in our codebase]", "renderers": [{"type": "CategoricalAxis", "id": "cb8308e8-846e-4f40-a953-dae0a095b073"}, {"type": "LinearAxis", "id": "83f4cd17-3041-4afd-95a0-d574404fa3fb"}, {"type": "Grid", "id": "1dda1936-19c1-41f9-93dc-d29890c530a0"}, {"type": "GlyphRenderer", "id": "0410ae3f-9346-4ded-99bd-309697772335"}, {"type": "GlyphRenderer", "id": "6f399c04-5800-4742-b3b0-ad52f43bf857"}, {"type": "Legend", "id": "9f089213-54a9-41db-bdae-fda112a9c243"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "7fcaf85e-dd3c-442f-9588-4d9107bc9892"}, "plot_height": 560, "doc": null, "id": "f36211ad-7644-4302-88a4-ae6e74612306", "tools": [], "below": [{"type": "CategoricalAxis", "id": "cb8308e8-846e-4f40-a953-dae0a095b073"}], "left": [{"type": "LinearAxis", "id": "83f4cd17-3041-4afd-95a0-d574404fa3fb"}]}}, {"attributes": {"doc": null, "id": "b6ab9f9e-fe15-4641-985f-d65b2c0dbd8e", "tags": []}, "type": "CategoricalTicker", "id": "b6ab9f9e-fe15-4641-985f-d65b2c0dbd8e"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "e1a445cc-3896-4ff6-9893-f4d26e8a0385"}, "type": "Rect", "id": "e1a445cc-3896-4ff6-9893-f4d26e8a0385"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "8bf057f3-0522-4b78-aee0-e3364bce39c6"}, "tags": [], "doc": null, "selection_glyph": null, "id": "c2abcb8f-edfe-4012-8f10-eca26ab739b4", "glyph": {"type": "Rect", "id": "d746cc77-179c-49ea-8467-4d6c173d388c"}}, "type": "GlyphRenderer", "id": "c2abcb8f-edfe-4012-8f10-eca26ab739b4"}, {"attributes": {"doc": null, "id": "5f805596-a4c5-4087-b86e-57a6a4a95618", "tags": []}, "type": "BasicTickFormatter", "id": "5f805596-a4c5-4087-b86e-57a6a4a95618"}, {"subtype": "Chart", "type": "Plot", "id": "4164940b-1143-4f6c-b1d6-cbfd2cd7b256", "attributes": {"x_range": {"type": "FactorRange", "id": "dc474deb-4ab2-4569-9402-40a25d3507c5"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "c2f65891-49bf-49a1-b8d4-9c8180f627d1"}, "title": "Thinking of the patch review and landing process, please rank the following potential improvements in terms of their impact on your productivity. [Enable patches to be submitted for review without having to open a bug first]", "renderers": [{"type": "CategoricalAxis", "id": "1658eb89-d6fb-45cd-8822-413e05fd1388"}, {"type": "LinearAxis", "id": "a2cc4829-d58e-4edf-ad72-805ef0d3fb5c"}, {"type": "Grid", "id": "58e998f2-ba53-419e-9ac8-833b47865eff"}, {"type": "GlyphRenderer", "id": "78498daa-7d02-4af5-bee6-334d9372ea84"}, {"type": "GlyphRenderer", "id": "69dc70b3-a0ef-43a5-93b5-05e1ed111dfc"}, {"type": "Legend", "id": "433cebf8-2897-493c-8909-1586e5a1163a"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "b8a7fd18-99b1-4c5d-b9d1-9c1fafdc38ef"}, "plot_height": 560, "doc": null, "id": "4164940b-1143-4f6c-b1d6-cbfd2cd7b256", "tools": [], "below": [{"type": "CategoricalAxis", "id": "1658eb89-d6fb-45cd-8822-413e05fd1388"}], "left": [{"type": "LinearAxis", "id": "a2cc4829-d58e-4edf-ad72-805ef0d3fb5c"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "979329db-3ffa-450b-acb8-e804615bae87"}, "orientation": "top_left", "tags": [], "doc": null, "id": "ef5f7d9d-d7ef-4142-959d-4c3f62bd7609", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "78aabb17-ed93-4dc0-aa8c-19016d857dab"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "3b21419c-ae47-44b6-b522-3ee8be0d5506"}]]]}, "type": "Legend", "id": "ef5f7d9d-d7ef-4142-959d-4c3f62bd7609"}, {"attributes": {"doc": null, "id": "a5720ff1-009a-4ff9-8833-b283171cb216", "tags": []}, "type": "CategoricalTicker", "id": "a5720ff1-009a-4ff9-8833-b283171cb216"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "3bfd1df1-ca7f-4f10-8a9a-14a7dc2c1a5b"}, "orientation": "top_left", "tags": [], "doc": null, "id": "f9060a75-8468-4cfb-a5b4-8ff4f5dcf93b", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "24cbf4a1-a403-4dbb-bcc6-e754fd606cbc"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "b8a03831-0f59-46ae-9f2a-f8a23b0f87f7"}]]]}, "type": "Legend", "id": "f9060a75-8468-4cfb-a5b4-8ff4f5dcf93b"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "a27289a9-6b42-4174-b4a0-66dfffd65955"}, "type": "BasicTicker", "id": "a27289a9-6b42-4174-b4a0-66dfffd65955"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [3.0, 5.5, 15.0, 17.5, 8.0], "Platform": [6, 11, 30, 35, 16], "catFx-Team": ["All Other Responses:0.666666666667", "1 - no impact:0.666666666667", "2 - little impact:0.666666666667", "3 - a fair amount of impact:0.666666666667", "4 - a significant amount of impact:0.666666666667"], "cat": ["All Other Responses", "1 - no impact", "2 - little impact", "3 - a fair amount of impact", "4 - a significant amount of impact"], "midPlatform": [3.0, 5.5, 15.0, 17.5, 8.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [6.0, 13.0, 59.0, 83.0, 34.0], "catPlatform": ["All Other Responses:0.333333333333", "1 - no impact:0.333333333333", "2 - little impact:0.333333333333", "3 - a fair amount of impact:0.333333333333", "4 - a significant amount of impact:0.333333333333"], "stackedFx-Team": [6.0, 12.0, 44.5, 59.0, 25.0], "midFx-Team": [0.0, 1.0, 14.5, 24.0, 9.0], "Fx-Team": [0, 2, 29, 48, 18]}, "id": "f11bf09f-cca3-4310-9dbd-8a075a6b7d4e"}, "type": "ColumnDataSource", "id": "f11bf09f-cca3-4310-9dbd-8a075a6b7d4e"}, {"attributes": {"doc": null, "id": "fe730f5a-6b89-4d90-967e-80ad76ac4957", "tags": []}, "type": "CategoricalTickFormatter", "id": "fe730f5a-6b89-4d90-967e-80ad76ac4957"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "7dcebdb6-615b-4277-82d4-d72c573011a1"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "e36a06f5-5f79-46b2-991a-e197e501c28c"}, "ticker": {"type": "CategoricalTicker", "id": "44ad4a96-e496-4f03-a2b6-bba9130d54ee"}, "id": "55860698-e780-4251-9e2f-065c3fa20192"}, "type": "CategoricalAxis", "id": "55860698-e780-4251-9e2f-065c3fa20192"}, {"attributes": {"doc": null, "id": "584d3432-067a-498c-a045-3cef46773382", "tags": []}, "type": "CategoricalTickFormatter", "id": "584d3432-067a-498c-a045-3cef46773382"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "4e8bda7e-f427-4f28-a30c-7615dcdf56d2"}, "type": "Rect", "id": "4e8bda7e-f427-4f28-a30c-7615dcdf56d2"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "f6d974db-f600-4ea9-89cc-a37c7017de7f"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "b2f0ea7e-96b8-47b2-bd31-9d95ebad3eb9"}, "id": "94ac73e2-4d84-4ff4-b5d3-47d6ca8f1d7d"}, "type": "Grid", "id": "94ac73e2-4d84-4ff4-b5d3-47d6ca8f1d7d"}, {"attributes": {"callback": null, "factors": ["N/A", "Keep about the same", "Increase investment", "Drastically increase investment"], "doc": null, "tags": [], "id": "a875cb8b-23bb-4e40-b808-2b3973772db8"}, "type": "FactorRange", "id": "a875cb8b-23bb-4e40-b808-2b3973772db8"}, {"attributes": {"doc": null, "id": "694938b2-76e8-4e4f-8990-34ada6437561", "tags": []}, "type": "CategoricalTickFormatter", "id": "694938b2-76e8-4e4f-8990-34ada6437561"}, {"subtype": "Chart", "type": "Plot", "id": "809016c3-2f8e-4771-aa32-f933297dcf2e", "attributes": {"x_range": {"type": "FactorRange", "id": "a99be5b8-d73a-4240-bbe3-e75c88d695b7"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "1762d41f-2c04-4f12-8e0f-08f7ce58a30e"}, "title": "How impactful would the following potential MozReview features have on your productivity? [Automatically land changes once review is granted]", "renderers": [{"type": "CategoricalAxis", "id": "a9cde61f-c114-4528-a103-0da0cd08a615"}, {"type": "LinearAxis", "id": "b13b7768-9f23-411f-b094-668d8584b533"}, {"type": "Grid", "id": "711bd3a7-9406-40a5-ba7a-c90a8c160d99"}, {"type": "GlyphRenderer", "id": "fb0ea017-41f9-45c0-8c8d-6a32918d45db"}, {"type": "GlyphRenderer", "id": "9ba65650-b933-4b2c-b8a9-4d3cf59cd4be"}, {"type": "Legend", "id": "5f54f520-4f44-478d-9344-d79d4eec1aa3"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "948eba46-f3ba-4fc2-b2a9-c783cf6666ef"}, "plot_height": 560, "doc": null, "id": "809016c3-2f8e-4771-aa32-f933297dcf2e", "tools": [], "below": [{"type": "CategoricalAxis", "id": "a9cde61f-c114-4528-a103-0da0cd08a615"}], "left": [{"type": "LinearAxis", "id": "b13b7768-9f23-411f-b094-668d8584b533"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "428e5f98-2f83-4b91-b36b-414ece060d10"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "f48a2fba-a132-4113-9594-5160f229c393"}, "id": "aa2e937c-af10-4599-ac0b-b19d014d5a0d"}, "type": "Grid", "id": "aa2e937c-af10-4599-ac0b-b19d014d5a0d"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ac80c5e0-3f83-454b-b4ed-ee002dcc3c50"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "350e6621-4c56-475d-9d9e-1bfc7274cc63"}, "ticker": {"type": "BasicTicker", "id": "c9db0a7b-a481-458f-b217-d79578eb80ea"}, "id": "763f5519-81cd-4300-9dde-3213b41fe32b"}, "type": "LinearAxis", "id": "763f5519-81cd-4300-9dde-3213b41fe32b"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "71788d54-cdac-4ed9-aa92-926dc7b0663d"}, "tags": [], "doc": null, "selection_glyph": null, "id": "69dc70b3-a0ef-43a5-93b5-05e1ed111dfc", "glyph": {"type": "Rect", "id": "560caf84-5ab1-4fbe-9e66-ad1abd53b91c"}}, "type": "GlyphRenderer", "id": "69dc70b3-a0ef-43a5-93b5-05e1ed111dfc"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "e87cac07-7157-4a9b-8ba8-c6312e3f11ad"}, "type": "ToolEvents", "id": "e87cac07-7157-4a9b-8ba8-c6312e3f11ad"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "e2331646-7b27-4d8b-8604-4fadcd1a8ce8"}, "tags": [], "doc": null, "selection_glyph": null, "id": "654092f1-e898-42ba-a645-20f639df3658", "glyph": {"type": "Rect", "id": "90dc4a19-1b1d-445c-a25b-c1a70804f894"}}, "type": "GlyphRenderer", "id": "654092f1-e898-42ba-a645-20f639df3658"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "44b0f247-9666-48fe-a86e-921b397decb8"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "0aafde50-d47b-4ced-b0a1-2cc7696808cd"}, "id": "572f960f-1080-4dec-a0be-6bd0779b31c3"}, "type": "Grid", "id": "572f960f-1080-4dec-a0be-6bd0779b31c3"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ff29212c-b360-400d-9981-08847427a774"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "c69ac7ab-796a-4415-827a-0a573db04698"}, "id": "068e58bf-519c-4ce4-b93c-88a6e75c0841"}, "type": "Grid", "id": "068e58bf-519c-4ce4-b93c-88a6e75c0841"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "db85f360-0ea5-4db1-ab2c-b79cfa1beeb3"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "e0ec261a-3218-4842-af7d-937fb5f6c3c5"}, "ticker": {"type": "BasicTicker", "id": "29d6beea-5b7b-4e2d-90e6-36ba9601f965"}, "id": "33590972-cdf3-4abc-89b2-c489d0467c44"}, "type": "LinearAxis", "id": "33590972-cdf3-4abc-89b2-c489d0467c44"}, {"subtype": "Chart", "type": "Plot", "id": "483e5293-c3fb-445e-a36d-de33b00b2dc3", "attributes": {"x_range": {"type": "FactorRange", "id": "c1c9c96b-50fb-4a7d-aa63-1b8f12f61d19"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "1268dbf4-6052-4284-a8e5-c08b9435210c"}, "title": "Rank the following issues according to how they impact your ability to debug tests using try. [Don\u2019t have access to tools (debuggers, valgrind, profilers, etc..)]", "renderers": [{"type": "CategoricalAxis", "id": "fe125a69-6eb0-44b6-920a-50ada67b027d"}, {"type": "LinearAxis", "id": "c30b22c6-1193-4ba3-a36c-05035da40621"}, {"type": "Grid", "id": "1cc88f23-ccbe-4cc9-bb5e-24000093d4a4"}, {"type": "GlyphRenderer", "id": "3040e662-1da3-4092-a84e-211942133c0f"}, {"type": "GlyphRenderer", "id": "8006ca95-6be6-4bbf-b69c-2c2570b52c26"}, {"type": "Legend", "id": "2422c654-ba53-4395-8195-2e4206a9d2f8"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "f7718f28-f62b-46e9-9c1a-10760e257bee"}, "plot_height": 560, "doc": null, "id": "483e5293-c3fb-445e-a36d-de33b00b2dc3", "tools": [], "below": [{"type": "CategoricalAxis", "id": "fe125a69-6eb0-44b6-920a-50ada67b027d"}], "left": [{"type": "LinearAxis", "id": "c30b22c6-1193-4ba3-a36c-05035da40621"}]}}, {"subtype": "Chart", "type": "Plot", "id": "38f970fb-87dc-410f-89a3-a0002cda629b", "attributes": {"x_range": {"type": "FactorRange", "id": "63e34d18-e12e-480c-a1b8-14fcbb3ee8ab"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "aecbcefe-a4b4-4ddf-b20f-fcd1e9c435f0"}, "title": "How much should Mozilla invest in the following Mercurial related items? [Unifying the multiple Firefox repositories into a single repository (like the gecko-dev Git repo)]", "renderers": [{"type": "CategoricalAxis", "id": "b217cee1-a280-4beb-b1f2-c788a5bc61e2"}, {"type": "LinearAxis", "id": "396920a0-56dc-46fc-ab0e-fb57eb83caaa"}, {"type": "Grid", "id": "28ad37a2-f057-4c06-9c9a-6cb10b8ce161"}, {"type": "GlyphRenderer", "id": "cc1279ff-f375-4412-bb5c-5a83144d4f09"}, {"type": "GlyphRenderer", "id": "4dd5199d-1fec-4126-b6e8-0c0992ba7431"}, {"type": "Legend", "id": "1662b300-3b65-4d23-a8a8-ccdd5af30207"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "6773311c-cfb1-455c-98b7-72cd857e8950"}, "plot_height": 560, "doc": null, "id": "38f970fb-87dc-410f-89a3-a0002cda629b", "tools": [], "below": [{"type": "CategoricalAxis", "id": "b217cee1-a280-4beb-b1f2-c788a5bc61e2"}], "left": [{"type": "LinearAxis", "id": "396920a0-56dc-46fc-ab0e-fb57eb83caaa"}]}}, {"subtype": "Chart", "type": "Plot", "id": "181f467e-8df8-4c5c-a416-21b1cfe03a81", "attributes": {"x_range": {"type": "FactorRange", "id": "66a49990-5500-4a6b-98b7-98b8364e7c97"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "5f229964-0cb4-41c5-809f-a21d6083675e"}, "title": "How satisfied are you with the following aspects of MozReview? [Submitting updates to existing reviews]", "renderers": [{"type": "CategoricalAxis", "id": "f5c82d61-621e-4c8c-8046-04c10b4728e6"}, {"type": "LinearAxis", "id": "1a8e7033-d5c4-471c-9860-918f09ef2247"}, {"type": "Grid", "id": "f391ab6e-bb14-4639-83a6-5c4d016d59cf"}, {"type": "GlyphRenderer", "id": "a6d0294e-9c15-4fd8-893e-1363d9fa6d49"}, {"type": "GlyphRenderer", "id": "cf8016fe-5f42-4bcd-bb6a-4c0942ce478f"}, {"type": "Legend", "id": "c62b54a1-8249-43ba-939e-021a1ac407ad"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "15440e60-4cb6-49d6-8822-584a4bf79fc6"}, "plot_height": 560, "doc": null, "id": "181f467e-8df8-4c5c-a416-21b1cfe03a81", "tools": [], "below": [{"type": "CategoricalAxis", "id": "f5c82d61-621e-4c8c-8046-04c10b4728e6"}], "left": [{"type": "LinearAxis", "id": "1a8e7033-d5c4-471c-9860-918f09ef2247"}]}}, {"attributes": {"end": 30.800000000000004, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "b6a2fd79-e6ba-4fb3-aaec-38ae8e9d4668"}, "type": "Range1d", "id": "b6a2fd79-e6ba-4fb3-aaec-38ae8e9d4668"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "17ac799c-d49d-4577-8e39-49b74a0a121c"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "d36d5b0c-2a8f-4737-8b76-f378c5177bda"}, "ticker": {"type": "BasicTicker", "id": "d9d727df-8f8a-4366-b5a7-238f8afe6b5e"}, "id": "442dab77-cea0-4be6-8265-c0523b425db7"}, "type": "LinearAxis", "id": "442dab77-cea0-4be6-8265-c0523b425db7"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "b576d1a0-61b4-4617-b798-6e12969f4a51"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "e16301f3-aa22-4d11-8bae-f28761efa57a"}, "ticker": {"type": "BasicTicker", "id": "104b1983-c921-4a16-aa26-e806548940dd"}, "id": "eef13de4-2dd1-4507-bdfd-c2c648c9acfb"}, "type": "LinearAxis", "id": "eef13de4-2dd1-4507-bdfd-c2c648c9acfb"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a0686fbe-3de2-41ce-92a9-c9e525d59586"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "1cbe8503-b31e-4129-9913-6880a9f69c78"}, "id": "74ed4760-1db1-4217-a6be-66f5c76b7edc"}, "type": "Grid", "id": "74ed4760-1db1-4217-a6be-66f5c76b7edc"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "5284f340-60d8-4263-a7fd-0588f6dc45a7"}, "type": "Rect", "id": "5284f340-60d8-4263-a7fd-0588f6dc45a7"}, {"subtype": "Chart", "type": "Plot", "id": "ef80c114-5cbf-42f5-9b3e-220a564369b4", "attributes": {"x_range": {"type": "FactorRange", "id": "3208a6ca-ce64-429a-ab00-d3714edf842d"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "42118fa0-d7e1-4c57-baf2-6877af1f88e1"}, "title": "Please rate your satisfaction with the following items. [Git (the tool)]", "renderers": [{"type": "CategoricalAxis", "id": "6c131cbd-3220-4e09-bd04-3bbbf9e3dfb8"}, {"type": "LinearAxis", "id": "eaeca3c5-74b7-459c-bd56-9a16c3e71f44"}, {"type": "Grid", "id": "4c34381a-670c-4a34-845a-b6a16fc2642c"}, {"type": "GlyphRenderer", "id": "6473a91f-8cec-4750-be3d-b7b146bc329a"}, {"type": "GlyphRenderer", "id": "9e1b4b97-233c-4577-a733-03c9fcf9d63d"}, {"type": "Legend", "id": "24fff965-796c-4028-a29a-6456ab1440f5"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "fe116632-d966-4359-90ea-bca0ad32379e"}, "plot_height": 560, "doc": null, "id": "ef80c114-5cbf-42f5-9b3e-220a564369b4", "tools": [], "below": [{"type": "CategoricalAxis", "id": "6c131cbd-3220-4e09-bd04-3bbbf9e3dfb8"}], "left": [{"type": "LinearAxis", "id": "eaeca3c5-74b7-459c-bd56-9a16c3e71f44"}]}}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "461a28fa-7f03-4c8d-9b5b-3e3b6b2d207c"}, "type": "ToolEvents", "id": "461a28fa-7f03-4c8d-9b5b-3e3b6b2d207c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fe4dde56-d69e-4fb0-aaf6-aaa62faafa93"}, "orientation": "top_left", "tags": [], "doc": null, "id": "ae1bd3bb-551d-4d2e-a301-7aaf2376cdff", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "5e0cb115-8525-4e8c-b030-f168c4d3a2ae"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "b7c38fe1-979c-4fe9-be06-c56a98c73a6b"}]]]}, "type": "Legend", "id": "ae1bd3bb-551d-4d2e-a301-7aaf2376cdff"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "7704e2a2-aab2-481b-89b4-44eec5d34f24"}, "orientation": "top_left", "tags": [], "doc": null, "id": "8c082501-825d-4b7b-bf8a-7fc8fa69dd2f", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "5fed4e81-b5f7-4619-a846-31dc5e34253a"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "2bad58f1-596d-4f37-932e-66881c8fb737"}]]]}, "type": "Legend", "id": "8c082501-825d-4b7b-bf8a-7fc8fa69dd2f"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "c8328126-cdf1-42ab-8b73-7167c40ee2da"}, "type": "Rect", "id": "c8328126-cdf1-42ab-8b73-7167c40ee2da"}, {"attributes": {"doc": null, "id": "38ae3ca0-358b-469e-a10e-73d215677063", "tags": []}, "type": "CategoricalTickFormatter", "id": "38ae3ca0-358b-469e-a10e-73d215677063"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "4202c217-5c75-423d-8a68-89636f6fc90c"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "268fcedc-56be-4345-b901-929bb54d5e5a"}, "ticker": {"type": "CategoricalTicker", "id": "8e814288-20d7-4e40-b211-13032aba4c7f"}, "id": "25fac1da-27a4-4546-99d7-b78c43b18c49"}, "type": "CategoricalAxis", "id": "25fac1da-27a4-4546-99d7-b78c43b18c49"}, {"subtype": "Chart", "type": "Plot", "id": "31e55b47-64c6-443d-8756-b526a0311feb", "attributes": {"x_range": {"type": "FactorRange", "id": "72dc1eff-a987-46d3-ab16-338ad5929b0a"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "f6d9bdb5-1f14-4588-a725-0fbc52f7249d"}, "title": "Thinking of the ways our test automation works in continuous integration, rank the following potential improvements in terms of their impact on your productivity. [Make Treeherder able to recognize known intermittent failures automatically, so I don\u2019t have to spend time figuring out if a test failure is caused by my code]", "renderers": [{"type": "CategoricalAxis", "id": "3c79d247-51cf-463c-ba93-97f643bfe6ef"}, {"type": "LinearAxis", "id": "6eca7af3-61ea-4c5e-9a3d-7b929417b831"}, {"type": "Grid", "id": "f0588f5f-0160-40f4-b86a-e457b8936fc1"}, {"type": "GlyphRenderer", "id": "115674ff-2865-4f51-850d-1cbea278f4e9"}, {"type": "GlyphRenderer", "id": "e070b272-3af6-4eab-99ab-a43ffa0fb9f9"}, {"type": "Legend", "id": "3fdfdf3c-c129-4bb1-95b9-e60830b00bad"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "d50c21bc-9e4c-4dee-857b-7b87410fd2cc"}, "plot_height": 560, "doc": null, "id": "31e55b47-64c6-443d-8756-b526a0311feb", "tools": [], "below": [{"type": "CategoricalAxis", "id": "3c79d247-51cf-463c-ba93-97f643bfe6ef"}], "left": [{"type": "LinearAxis", "id": "6eca7af3-61ea-4c5e-9a3d-7b929417b831"}]}}, {"attributes": {"doc": null, "id": "f250cd11-4ba8-424b-8524-057abb069a7e", "tags": []}, "type": "CategoricalTicker", "id": "f250cd11-4ba8-424b-8524-057abb069a7e"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "79e5a479-8c1f-409d-8c83-8a91176fb5ab"}, "tags": [], "doc": null, "selection_glyph": null, "id": "f5ac1389-b765-4df8-822d-4f672f034a96", "glyph": {"type": "Rect", "id": "e98a804e-a43f-494e-922b-834f2f520f58"}}, "type": "GlyphRenderer", "id": "f5ac1389-b765-4df8-822d-4f672f034a96"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "f3d71584-33ce-46a7-91f2-a2d271d46943"}, "type": "BasicTicker", "id": "f3d71584-33ce-46a7-91f2-a2d271d46943"}, {"subtype": "Chart", "type": "Plot", "id": "77a6020c-80a3-41e9-a0f9-add80c1e1546", "attributes": {"x_range": {"type": "FactorRange", "id": "84c3c936-92f9-49b9-a59d-990b7c1ca3bd"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "ef86271b-4ff5-4a66-9453-a679187ef20e"}, "title": "Thinking of the ways our test automation works in continuous integration, rank the following potential improvements in terms of their impact on your productivity. [Make Try runs really fast, so I can effectively iterate on automated tests using try instead of my local machine]", "renderers": [{"type": "CategoricalAxis", "id": "9233534e-5622-4bf3-85f9-f43be5c672af"}, {"type": "LinearAxis", "id": "2b120211-158f-4d26-92aa-332d5b0f9c9f"}, {"type": "Grid", "id": "1706f071-9b5b-4f41-8409-c43bb439b018"}, {"type": "GlyphRenderer", "id": "c24d19d1-6fc0-4c46-b8e7-d6f339c0364e"}, {"type": "GlyphRenderer", "id": "e4784dc7-cc51-4154-915e-232f176c81c9"}, {"type": "Legend", "id": "5f16d2d4-9a76-49ab-85e3-0c6b48bc3943"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "21b020b8-d036-49b7-8d17-63c63bf92f12"}, "plot_height": 560, "doc": null, "id": "77a6020c-80a3-41e9-a0f9-add80c1e1546", "tools": [], "below": [{"type": "CategoricalAxis", "id": "9233534e-5622-4bf3-85f9-f43be5c672af"}], "left": [{"type": "LinearAxis", "id": "2b120211-158f-4d26-92aa-332d5b0f9c9f"}]}}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "0b857157-5205-405e-b722-76856b819a54"}, "type": "BasicTicker", "id": "0b857157-5205-405e-b722-76856b819a54"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "fdd726b5-e547-4ae9-9a0c-79ae8f243878"}, "tags": [], "doc": null, "selection_glyph": null, "id": "40bd5839-cb3b-4fc0-831a-c047b9ce79f1", "glyph": {"type": "Rect", "id": "b8046c4d-c2f6-4db1-9f41-f8f03288f907"}}, "type": "GlyphRenderer", "id": "40bd5839-cb3b-4fc0-831a-c047b9ce79f1"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "42a530cb-6878-474f-a40e-8b2cae921660"}, "tags": [], "doc": null, "selection_glyph": null, "id": "106cdd2f-4a55-4965-9bfb-dcf0c0a30443", "glyph": {"type": "Rect", "id": "28a70747-dfae-496f-8198-8baa49b1e921"}}, "type": "GlyphRenderer", "id": "106cdd2f-4a55-4965-9bfb-dcf0c0a30443"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "3945b289-7f63-446e-b6e7-dfcacfe1cd11"}, "type": "ToolEvents", "id": "3945b289-7f63-446e-b6e7-dfcacfe1cd11"}, {"attributes": {"doc": null, "id": "10500047-f976-443f-b64a-2c48669d0c02", "tags": []}, "type": "BasicTickFormatter", "id": "10500047-f976-443f-b64a-2c48669d0c02"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "84e28c38-2400-4cd7-bb81-74fd76644ffa"}, "tags": [], "doc": null, "selection_glyph": null, "id": "9e1b4b97-233c-4577-a733-03c9fcf9d63d", "glyph": {"type": "Rect", "id": "3fdddab8-37f2-4d3b-98db-c370b67bf2cf"}}, "type": "GlyphRenderer", "id": "9e1b4b97-233c-4577-a733-03c9fcf9d63d"}, {"attributes": {"end": 28.6, "callback": null, "doc": null, "tags": [], "start": 0, "id": "aecbcefe-a4b4-4ddf-b20f-fcd1e9c435f0"}, "type": "Range1d", "id": "aecbcefe-a4b4-4ddf-b20f-fcd1e9c435f0"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "1 = least impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "702eb956-01fe-4700-bf8e-1ed960b1a51c"}, "type": "FactorRange", "id": "702eb956-01fe-4700-bf8e-1ed960b1a51c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "b576d1a0-61b4-4617-b798-6e12969f4a51"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "02ffd5b3-35a4-4515-8da0-97ae56514f6e"}, "ticker": {"type": "CategoricalTicker", "id": "f250cd11-4ba8-424b-8524-057abb069a7e"}, "id": "3b7f631e-f9cc-4785-a34f-e71f4afb4865"}, "type": "CategoricalAxis", "id": "3b7f631e-f9cc-4785-a34f-e71f4afb4865"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "1346023d-1f1a-497d-9f28-e5779fe7d758"}, "type": "BasicTicker", "id": "1346023d-1f1a-497d-9f28-e5779fe7d758"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "f36211ad-7644-4302-88a4-ae6e74612306"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "b1f4d36a-b3ec-4a3c-8b08-86b8d626b3bb"}, "id": "1dda1936-19c1-41f9-93dc-d29890c530a0"}, "type": "Grid", "id": "1dda1936-19c1-41f9-93dc-d29890c530a0"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "e26958b0-bc3b-4764-90f3-f8d0ee6370ef"}, "type": "Rect", "id": "e26958b0-bc3b-4764-90f3-f8d0ee6370ef"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "66f73d12-4c8e-4412-a61a-952be0b375fb"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "c61bc813-2553-4181-b03d-2b29b5a83e76"}, "id": "881e2b74-f8f2-450b-80dd-c73e890db3a1"}, "type": "Grid", "id": "881e2b74-f8f2-450b-80dd-c73e890db3a1"}, {"subtype": "Chart", "type": "Plot", "id": "40f555e7-ccbf-479c-9c23-75177a31e162", "attributes": {"x_range": {"type": "FactorRange", "id": "63849b9c-b8ed-4448-aa6d-97b0ec65f868"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "aa69630d-c2a8-458e-be2b-373c85150064"}, "title": "Please rate your satisfaction with the following items. [GitHub pull requests]", "renderers": [{"type": "CategoricalAxis", "id": "1fff8340-328a-4fea-8f45-274807fd0aee"}, {"type": "LinearAxis", "id": "df25009b-b30f-4693-8baf-bdcf4889b3bd"}, {"type": "Grid", "id": "68c4c4d3-9410-48f8-867a-75cea9f3835c"}, {"type": "GlyphRenderer", "id": "a0ed31f1-bfa2-43e1-8add-4b1340290707"}, {"type": "GlyphRenderer", "id": "ad1ab6ab-a1b4-4715-b52e-f0740606d352"}, {"type": "Legend", "id": "254622ce-283e-434a-a552-0720a10b5d5d"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "8f20ea6e-f5b3-4550-a445-87c989707eec"}, "plot_height": 560, "doc": null, "id": "40f555e7-ccbf-479c-9c23-75177a31e162", "tools": [], "below": [{"type": "CategoricalAxis", "id": "1fff8340-328a-4fea-8f45-274807fd0aee"}], "left": [{"type": "LinearAxis", "id": "df25009b-b30f-4693-8baf-bdcf4889b3bd"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "44b0f247-9666-48fe-a86e-921b397decb8"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "65c06bda-0027-4df1-b146-72549fa55e25"}, "ticker": {"type": "BasicTicker", "id": "0aafde50-d47b-4ced-b0a1-2cc7696808cd"}, "id": "d511da01-63dd-4df9-a255-ce8210a6daa8"}, "type": "LinearAxis", "id": "d511da01-63dd-4df9-a255-ce8210a6daa8"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "a71a49a0-1992-4663-97e2-53b3e19d2a02"}, "type": "BasicTicker", "id": "a71a49a0-1992-4663-97e2-53b3e19d2a02"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "c8fd6d82-d195-4db7-b546-bed8ac5e231a"}, "type": "ToolEvents", "id": "c8fd6d82-d195-4db7-b546-bed8ac5e231a"}, {"attributes": {"doc": null, "id": "d9bb9f3c-a253-4ce9-94c6-836b141faa86", "tags": []}, "type": "CategoricalTicker", "id": "d9bb9f3c-a253-4ce9-94c6-836b141faa86"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "7039b922-8a0b-4183-9633-2bf4010eac84"}, "type": "ToolEvents", "id": "7039b922-8a0b-4183-9633-2bf4010eac84"}, {"attributes": {"doc": null, "id": "3dd709ab-c98e-4d6f-a2bf-433a0ee35aaf", "tags": []}, "type": "CategoricalTickFormatter", "id": "3dd709ab-c98e-4d6f-a2bf-433a0ee35aaf"}, {"subtype": "Chart", "type": "Plot", "id": "c6c37cfc-ad8d-45d2-aed2-393144d2db94", "attributes": {"x_range": {"type": "FactorRange", "id": "ea2f91fb-8a17-4241-bd92-4a72a8ad3f7d"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "72bff794-4bb8-4d17-99b0-1eeb64d2cf40"}, "title": "Rank the following issues according to how they impact your ability to debug tests using try. [Don\u2019t want to waste machine resources]", "renderers": [{"type": "CategoricalAxis", "id": "af2ad0b8-7335-4e1a-a871-bf96283bef99"}, {"type": "LinearAxis", "id": "0872c7e1-8da9-4ae0-ab2a-d3f65422aca9"}, {"type": "Grid", "id": "e4813d55-a980-44e8-a909-6b8df88e2b9b"}, {"type": "GlyphRenderer", "id": "4f2916bd-e7d2-4545-bf00-48d9629f01ce"}, {"type": "GlyphRenderer", "id": "ab9f4f83-68f3-4cca-a6e4-6d62c59c75e2"}, {"type": "Legend", "id": "1f25013c-15b0-4a5f-8e81-d803b41766f7"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "fcfdb9df-1839-4a3d-a8cc-b3727a1717f1"}, "plot_height": 560, "doc": null, "id": "c6c37cfc-ad8d-45d2-aed2-393144d2db94", "tools": [], "below": [{"type": "CategoricalAxis", "id": "af2ad0b8-7335-4e1a-a871-bf96283bef99"}], "left": [{"type": "LinearAxis", "id": "0872c7e1-8da9-4ae0-ab2a-d3f65422aca9"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "36e4e267-2fc2-456c-baf3-f5dfb64ce2bb"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "68419587-04c4-47cd-be4d-72db951b9b2f"}, "id": "82d9c7d1-e2bc-4340-a412-fc3ca9ec8f91"}, "type": "Grid", "id": "82d9c7d1-e2bc-4340-a412-fc3ca9ec8f91"}, {"attributes": {"doc": null, "id": "8e814288-20d7-4e40-b211-13032aba4c7f", "tags": []}, "type": "CategoricalTicker", "id": "8e814288-20d7-4e40-b211-13032aba4c7f"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "No impact / Not applicable", "A little impact", "Moderate impact", "Significant impact"], "doc": null, "tags": [], "id": "e5c3a1c0-2f04-44d9-a453-c02ef712dda1"}, "type": "FactorRange", "id": "e5c3a1c0-2f04-44d9-a453-c02ef712dda1"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "1ad8e43e-3591-44c6-ac87-a667a2afa698"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "c716bea1-99f8-419b-9576-e0eddd120813"}, "ticker": {"type": "CategoricalTicker", "id": "ed1095d4-2aa0-4f4a-a316-bc1e15abe6da"}, "id": "6c1fa5a4-53b0-41da-8fe8-1b1a80590542"}, "type": "CategoricalAxis", "id": "6c1fa5a4-53b0-41da-8fe8-1b1a80590542"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "dee5d3e8-e7de-49a7-802f-97c2cb2409e3"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "f1999b0c-15ec-4501-9371-199df01c7ee5"}, "id": "97088ce5-745e-4bd1-8df3-215014b7c737"}, "type": "Grid", "id": "97088ce5-745e-4bd1-8df3-215014b7c737"}, {"attributes": {"doc": null, "id": "7c748949-d365-4941-84cc-e2dc40727cb5", "tags": []}, "type": "CategoricalTickFormatter", "id": "7c748949-d365-4941-84cc-e2dc40727cb5"}, {"attributes": {"doc": null, "id": "9bb461f9-7d45-4a50-9fd6-7f0a16df2490", "tags": []}, "type": "CategoricalTickFormatter", "id": "9bb461f9-7d45-4a50-9fd6-7f0a16df2490"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "11116332-09e5-4136-bbf1-8399d379b0d4"}, "type": "Rect", "id": "11116332-09e5-4136-bbf1-8399d379b0d4"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "c81e269b-b38a-4d7a-9861-241e33de6132"}, "type": "Rect", "id": "c81e269b-b38a-4d7a-9861-241e33de6132"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "85eee339-71dd-4b32-885e-6e841a58b5b8"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "447b709d-dd29-4159-a21e-462ef5d9967e"}, "ticker": {"type": "BasicTicker", "id": "8c188278-fc41-4e11-8878-f89817285895"}, "id": "89457405-861b-4e4d-9bd3-0f910599a629"}, "type": "LinearAxis", "id": "89457405-861b-4e4d-9bd3-0f910599a629"}, {"attributes": {"end": 48.400000000000006, "callback": null, "doc": null, "tags": [], "start": 0, "id": "0919ed80-c728-40bd-a2c6-b0c090b9cd3c"}, "type": "Range1d", "id": "0919ed80-c728-40bd-a2c6-b0c090b9cd3c"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "f444fdfe-3bf6-4fbb-baf8-3e657584b9eb"}, "type": "ToolEvents", "id": "f444fdfe-3bf6-4fbb-baf8-3e657584b9eb"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ef80c114-5cbf-42f5-9b3e-220a564369b4"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "bfb01253-fd5d-44af-b7e7-1dbc2dae1019"}, "ticker": {"type": "CategoricalTicker", "id": "d96f9775-6ecc-4dd7-988f-20e51f1e7f3d"}, "id": "6c131cbd-3220-4e09-bd04-3bbbf9e3dfb8"}, "type": "CategoricalAxis", "id": "6c131cbd-3220-4e09-bd04-3bbbf9e3dfb8"}, {"attributes": {"doc": null, "id": "f78fb760-200e-4fb5-8c8d-4263022cefbd", "tags": []}, "type": "BasicTickFormatter", "id": "f78fb760-200e-4fb5-8c8d-4263022cefbd"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "abff72f7-88d4-4678-9306-1b63af79965d"}, "tags": [], "doc": null, "selection_glyph": null, "id": "3b21419c-ae47-44b6-b522-3ee8be0d5506", "glyph": {"type": "Rect", "id": "eda80728-93be-4486-98b3-c069903005f3"}}, "type": "GlyphRenderer", "id": "3b21419c-ae47-44b6-b522-3ee8be0d5506"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "702e8b11-0275-4ac2-94a0-3dd330ea0cb6"}, "type": "Rect", "id": "702e8b11-0275-4ac2-94a0-3dd330ea0cb6"}, {"attributes": {"end": 47.300000000000004, "callback": null, "doc": null, "tags": [], "start": 0, "id": "64a88915-27c5-4052-8c0f-17a1af7425ed"}, "type": "Range1d", "id": "64a88915-27c5-4052-8c0f-17a1af7425ed"}, {"subtype": "Chart", "type": "Plot", "id": "68867bb8-e0b8-433b-b5e4-63ea8e54af1b", "attributes": {"x_range": {"type": "FactorRange", "id": "c50a958b-470b-43f8-9792-7787dcf66368"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "2a3b4c77-b281-4de6-a41e-f4a625aa94cf"}, "title": "How would you rate your competence in the following version control tools? [Git]", "renderers": [{"type": "CategoricalAxis", "id": "62c6410f-163a-43c2-952f-dafbead3cff9"}, {"type": "LinearAxis", "id": "d245045c-6073-4f00-ae46-f9640daf6926"}, {"type": "Grid", "id": "193feb9a-bd3d-4319-afcd-4d5f176b5515"}, {"type": "GlyphRenderer", "id": "78780b62-a09e-4f55-a2d0-09d18d78692a"}, {"type": "GlyphRenderer", "id": "bab979b5-5c08-4f54-afde-e67a5d6cd724"}, {"type": "Legend", "id": "b8e2820a-e021-4b8d-a1d5-9d59faf7dd46"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "6df09cff-c090-471e-a0bc-b4f05c5264d9"}, "plot_height": 560, "doc": null, "id": "68867bb8-e0b8-433b-b5e4-63ea8e54af1b", "tools": [], "below": [{"type": "CategoricalAxis", "id": "62c6410f-163a-43c2-952f-dafbead3cff9"}], "left": [{"type": "LinearAxis", "id": "d245045c-6073-4f00-ae46-f9640daf6926"}]}}, {"attributes": {"doc": null, "id": "57b2c84c-1db4-4590-a69f-993fe941555f", "tags": []}, "type": "CategoricalTicker", "id": "57b2c84c-1db4-4590-a69f-993fe941555f"}, {"attributes": {"doc": null, "id": "ca81be37-0780-48a8-af01-f10ac6e86dd9", "tags": []}, "type": "CategoricalTickFormatter", "id": "ca81be37-0780-48a8-af01-f10ac6e86dd9"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "281ee3f6-656d-4f59-8328-5b2bfa080b84"}, "type": "BasicTicker", "id": "281ee3f6-656d-4f59-8328-5b2bfa080b84"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "4b346df4-3d18-4de5-9fff-05512720ead3"}, "type": "BasicTicker", "id": "4b346df4-3d18-4de5-9fff-05512720ead3"}, {"attributes": {"doc": null, "id": "e527198d-70cf-4eb8-a5c3-31c186673f2f", "tags": []}, "type": "CategoricalTicker", "id": "e527198d-70cf-4eb8-a5c3-31c186673f2f"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "8bf057f3-0522-4b78-aee0-e3364bce39c6"}, "tags": [], "doc": null, "selection_glyph": null, "id": "f259c54d-a3aa-4d02-b731-1611fecde1dc", "glyph": {"type": "Rect", "id": "e199f16a-df06-4eaa-9abb-21525c152c54"}}, "type": "GlyphRenderer", "id": "f259c54d-a3aa-4d02-b731-1611fecde1dc"}, {"attributes": {"end": 55.00000000000001, "callback": null, "doc": null, "tags": [], "start": 0, "id": "2933e61a-6091-4a35-b814-eac7431ed6ed"}, "type": "Range1d", "id": "2933e61a-6091-4a35-b814-eac7431ed6ed"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [9.5, 22.0, 11.0, 4.0, 2.5], "Platform": [19, 44, 22, 8, 5], "catFx-Team": ["1 - no impact:0.666666666667", "2 - little impact:0.666666666667", "3 - a fair amount of impact:0.666666666667", "4 - a significant amount of impact:0.666666666667", "5 - an extremely frustrating amount of impact:0.666666666667"], "cat": ["1 - no impact", "2 - little impact", "3 - a fair amount of impact", "4 - a significant amount of impact", "5 - an extremely frustrating amount of impact"], "midPlatform": [9.5, 22.0, 11.0, 4.0, 2.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [29.0, 89.0, 40.0, 24.0, 13.0], "catPlatform": ["1 - no impact:0.333333333333", "2 - little impact:0.333333333333", "3 - a fair amount of impact:0.333333333333", "4 - a significant amount of impact:0.333333333333", "5 - an extremely frustrating amount of impact:0.333333333333"], "stackedFx-Team": [24.0, 66.5, 31.0, 16.0, 9.0], "midFx-Team": [5.0, 22.5, 9.0, 8.0, 4.0], "Fx-Team": [10, 45, 18, 16, 8]}, "id": "2e360e70-2620-4dd1-8a1d-5f2c9b4ff91f"}, "type": "ColumnDataSource", "id": "2e360e70-2620-4dd1-8a1d-5f2c9b4ff91f"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "c1b6d97c-b795-4308-9a69-c61c7865ae6b"}, "tags": [], "doc": null, "selection_glyph": null, "id": "f628c8a2-ac14-4d4e-a5e5-dd5dbf92a023", "glyph": {"type": "Rect", "id": "7339739b-c389-4006-a28d-dc58685aeec5"}}, "type": "GlyphRenderer", "id": "f628c8a2-ac14-4d4e-a5e5-dd5dbf92a023"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "0feea656-55e1-420c-84b3-0f31304c5300"}, "type": "Rect", "id": "0feea656-55e1-420c-84b3-0f31304c5300"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "035267cb-b46f-4fa5-bdb6-d2f0f2bbf50d"}, "tags": [], "doc": null, "selection_glyph": null, "id": "4b26fcb8-4f27-4cae-bb77-472a7bacc918", "glyph": {"type": "Rect", "id": "987dfa8a-e7f9-4cf3-abbe-ada9476aacd7"}}, "type": "GlyphRenderer", "id": "4b26fcb8-4f27-4cae-bb77-472a7bacc918"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A", "About the same", "Gotten better"], "doc": null, "tags": [], "id": "97dc6c29-7668-44ca-9381-62be04813494"}, "type": "FactorRange", "id": "97dc6c29-7668-44ca-9381-62be04813494"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "216e75b5-aa2b-43ac-9e72-6bf13e161525"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "1d23478b-e8b5-4449-969a-f3ca2a7709a2"}, "ticker": {"type": "BasicTicker", "id": "f5b607df-91f2-4fe3-b4e9-e0f9e044b2cb"}, "id": "0c4c4c9a-4893-491f-8e3e-4d34487ab91c"}, "type": "LinearAxis", "id": "0c4c4c9a-4893-491f-8e3e-4d34487ab91c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "33fbe32c-12b9-45f7-9586-64e64afe3f30"}, "orientation": "top_left", "tags": [], "doc": null, "id": "53504ea4-6887-4059-bec5-193f14b1064d", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "3bff5d22-f81f-4075-9b79-5c8b2302ccd7"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "4e1c85ab-85d9-4b41-a09a-bfa0cd157f9a"}]]]}, "type": "Legend", "id": "53504ea4-6887-4059-bec5-193f14b1064d"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "6a6e7e71-9f43-401c-affb-7cda0c371e86"}, "type": "ToolEvents", "id": "6a6e7e71-9f43-401c-affb-7cda0c371e86"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "dee5d3e8-e7de-49a7-802f-97c2cb2409e3"}, "orientation": "top_left", "tags": [], "doc": null, "id": "83f654e0-05a3-403e-9d84-7dd579506822", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "5a03021d-9461-40e4-92dd-141e43825114"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "6f82b258-6410-418f-939f-a66fd09a6023"}]]]}, "type": "Legend", "id": "83f654e0-05a3-403e-9d84-7dd579506822"}, {"attributes": {"doc": null, "id": "e83ad9d9-0aa7-49e1-bc57-1821b52232e8", "tags": []}, "type": "BasicTickFormatter", "id": "e83ad9d9-0aa7-49e1-bc57-1821b52232e8"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "d50c21bc-9e4c-4dee-857b-7b87410fd2cc"}, "type": "ToolEvents", "id": "d50c21bc-9e4c-4dee-857b-7b87410fd2cc"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "483e5293-c3fb-445e-a36d-de33b00b2dc3"}, "orientation": "top_left", "tags": [], "doc": null, "id": "2422c654-ba53-4395-8195-2e4206a9d2f8", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "3040e662-1da3-4092-a84e-211942133c0f"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "8006ca95-6be6-4bbf-b69c-2c2570b52c26"}]]]}, "type": "Legend", "id": "2422c654-ba53-4395-8195-2e4206a9d2f8"}, {"attributes": {"doc": null, "id": "d96f9775-6ecc-4dd7-988f-20e51f1e7f3d", "tags": []}, "type": "CategoricalTicker", "id": "d96f9775-6ecc-4dd7-988f-20e51f1e7f3d"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "f4b7e0c8-dfa1-429a-916c-c3702756ad8a"}, "type": "Rect", "id": "f4b7e0c8-dfa1-429a-916c-c3702756ad8a"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "1ffa588b-2b23-4a03-a431-40c63fa7c4ae"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "5f7431c5-9300-4f94-8ecb-0eb98aa0cb44"}, "ticker": {"type": "CategoricalTicker", "id": "348d836c-b86c-4c9a-ab5e-942ae11ebaee"}, "id": "1ab770ba-d335-48ac-b3e3-7232a782bc4f"}, "type": "CategoricalAxis", "id": "1ab770ba-d335-48ac-b3e3-7232a782bc4f"}, {"attributes": {"end": 51.7, "callback": null, "doc": null, "tags": [], "start": 0, "id": "80700f72-7332-4ec3-9b85-306e733f9005"}, "type": "Range1d", "id": "80700f72-7332-4ec3-9b85-306e733f9005"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "5c4bbcf7-2176-4cbe-8036-1486def97d63"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "c7d5001f-8c51-4c5c-9a10-50df2eb19081"}, "id": "647661dd-29ae-423a-8ff6-12808ca39004"}, "type": "Grid", "id": "647661dd-29ae-423a-8ff6-12808ca39004"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "5e3ed8a1-a0e8-4774-880e-8b769e8a18f0"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "a480e705-ea04-416f-804c-f47d647e7a41"}, "id": "a8af74eb-486a-4597-b7f2-23cb0a08e6ca"}, "type": "Grid", "id": "a8af74eb-486a-4597-b7f2-23cb0a08e6ca"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "f7e53b60-70f5-4531-b7d8-bdc4f8605eb2"}, "tags": [], "doc": null, "selection_glyph": null, "id": "bf6107af-6b1d-484c-b06c-1f56f4d1b239", "glyph": {"type": "Rect", "id": "b75fed04-40ce-4a27-ae80-68144818049a"}}, "type": "GlyphRenderer", "id": "bf6107af-6b1d-484c-b06c-1f56f4d1b239"}, {"attributes": {"doc": null, "id": "8c6de0d7-665d-4113-8dc9-d349c2cb732a", "tags": []}, "type": "CategoricalTicker", "id": "8c6de0d7-665d-4113-8dc9-d349c2cb732a"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "a3978aef-0031-4d64-b402-74a7b0476809"}, "type": "Rect", "id": "a3978aef-0031-4d64-b402-74a7b0476809"}, {"attributes": {"callback": null, "factors": ["N/A", "1 = little impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "330ac903-a3e6-485f-a9f4-af164868e8bd"}, "type": "FactorRange", "id": "330ac903-a3e6-485f-a9f4-af164868e8bd"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "b07f4e84-e764-4638-808e-8770e629068e"}, "type": "ToolEvents", "id": "b07f4e84-e764-4638-808e-8770e629068e"}, {"attributes": {"end": 73.7, "callback": null, "doc": null, "tags": [], "start": 0, "id": "45666518-24c3-4be9-9f5c-4dc9a8e3c213"}, "type": "Range1d", "id": "45666518-24c3-4be9-9f5c-4dc9a8e3c213"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A", "It's awesome!"], "doc": null, "tags": [], "id": "4b90272e-2a44-4116-a9ca-5d61b713be9e"}, "type": "FactorRange", "id": "4b90272e-2a44-4116-a9ca-5d61b713be9e"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "69b56e3a-733d-44e8-9de5-0fb712dad00b"}, "tags": [], "doc": null, "selection_glyph": null, "id": "65c9faaf-4261-4f6e-81e6-4b7c561bb0a9", "glyph": {"type": "Rect", "id": "dae24baa-0361-4243-8c36-796f910c502a"}}, "type": "GlyphRenderer", "id": "65c9faaf-4261-4f6e-81e6-4b7c561bb0a9"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A (not relevant to me)", "Cut all investment", "Keep about the same", "Increase investment"], "doc": null, "tags": [], "id": "cb300da4-d640-43ab-b42b-b83a957ae145"}, "type": "FactorRange", "id": "cb300da4-d640-43ab-b42b-b83a957ae145"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "da626780-d364-4244-af22-c25025cee9d4"}, "tags": [], "doc": null, "selection_glyph": null, "id": "a2a8880c-9d00-437b-b855-c42156c36734", "glyph": {"type": "Rect", "id": "28e2bd13-2203-49d4-805d-072c62d09a7a"}}, "type": "GlyphRenderer", "id": "a2a8880c-9d00-437b-b855-c42156c36734"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "0a55c8bf-f850-4453-8917-f8e7c890abe5"}, "type": "Rect", "id": "0a55c8bf-f850-4453-8917-f8e7c890abe5"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "de17671d-f2af-4918-904d-ee51bf2ca003"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "3b1c2ec7-dc57-431e-a39d-e80659cff3ba"}, "id": "5d453f71-48de-4b8d-9272-af44343011b9"}, "type": "Grid", "id": "5d453f71-48de-4b8d-9272-af44343011b9"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [5.0, 8.0, 3.0, 14.0, 16.0, 3.0], "Platform": [10, 16, 6, 28, 32, 6], "catFx-Team": ["All Other Responses:0.666666666667", "N/A or I'm not sure:0.666666666667", "It sucks a little:0.666666666667", "It's OK, I guess:0.666666666667", "It's pretty good:0.666666666667", "It's awesome!:0.666666666667"], "cat": ["All Other Responses", "N/A or I'm not sure", "It sucks a little", "It's OK, I guess", "It's pretty good", "It's awesome!"], "midPlatform": [5.0, 8.0, 3.0, 14.0, 16.0, 3.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [18.0, 26.0, 11.0, 71.0, 59.0, 11.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A or I'm not sure:0.333333333333", "It sucks a little:0.333333333333", "It's OK, I guess:0.333333333333", "It's pretty good:0.333333333333", "It's awesome!:0.333333333333"], "stackedFx-Team": [14.0, 21.0, 8.5, 49.5, 45.5, 8.5], "midFx-Team": [4.0, 5.0, 2.5, 21.5, 13.5, 2.5], "Fx-Team": [8, 10, 5, 43, 27, 5]}, "id": "6c66b3c9-3357-4cf2-af62-190dc3d90b22"}, "type": "ColumnDataSource", "id": "6c66b3c9-3357-4cf2-af62-190dc3d90b22"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "25b42ab8-a37b-42a4-a393-509d67917e44"}, "type": "Rect", "id": "25b42ab8-a37b-42a4-a393-509d67917e44"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "ffcc49a7-9373-4fdf-84db-e1103f6ffcf4"}, "type": "Rect", "id": "ffcc49a7-9373-4fdf-84db-e1103f6ffcf4"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "1d37b100-1ed0-4f78-b2b5-3cb1ce55aca6"}, "type": "ToolEvents", "id": "1d37b100-1ed0-4f78-b2b5-3cb1ce55aca6"}, {"subtype": "Chart", "type": "Plot", "id": "08d112df-cc2f-434b-bc72-4b270fe5903f", "attributes": {"x_range": {"type": "FactorRange", "id": "199e3759-87c6-43ca-84ab-76d5641c48f8"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "f700d021-c3d1-4d37-b4dc-60a8c5d0a86f"}, "title": "Have you conducted a code review on MozReview?", "renderers": [{"type": "CategoricalAxis", "id": "eba45864-13ef-49dd-b873-f948890bea9f"}, {"type": "LinearAxis", "id": "caa75ad9-83e7-442b-ae8a-bab7b544574d"}, {"type": "Grid", "id": "71e4b069-1ad2-4b49-a32c-3499aeea7742"}, {"type": "GlyphRenderer", "id": "0f47d564-94ca-47ac-8071-8720a01dd72e"}, {"type": "GlyphRenderer", "id": "f4455831-b6a8-44ba-b159-b3d311943730"}, {"type": "Legend", "id": "eacc092f-21d4-4a1d-a2e1-c9ed0a717511"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "f07b03a4-889a-4a9d-a1a4-e789dc66327a"}, "plot_height": 560, "doc": null, "id": "08d112df-cc2f-434b-bc72-4b270fe5903f", "tools": [], "below": [{"type": "CategoricalAxis", "id": "eba45864-13ef-49dd-b873-f948890bea9f"}], "left": [{"type": "LinearAxis", "id": "caa75ad9-83e7-442b-ae8a-bab7b544574d"}]}}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "754fea8a-00e8-4bdc-8076-8ec7fefc7dc0"}, "type": "BasicTicker", "id": "754fea8a-00e8-4bdc-8076-8ec7fefc7dc0"}, {"attributes": {"end": 68.2, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "0b5a3bff-3bcb-4f43-8298-bd21b3b84762"}, "type": "Range1d", "id": "0b5a3bff-3bcb-4f43-8298-bd21b3b84762"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "56be1325-b342-4fd3-a6b0-7c2ed769c406"}, "tags": [], "doc": null, "selection_glyph": null, "id": "d10bf0b3-4ba8-42c7-9428-fb677cf2df69", "glyph": {"type": "Rect", "id": "224d15de-ce78-4ebb-9bc4-2c79e8d999b8"}}, "type": "GlyphRenderer", "id": "d10bf0b3-4ba8-42c7-9428-fb677cf2df69"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a0e5390f-1e01-4763-b57c-474d6ef45d45"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "fbd211a4-c410-45a1-93a5-632207ab414d"}, "ticker": {"type": "BasicTicker", "id": "dae2d14e-69cd-495e-82d4-3734eefdd2cf"}, "id": "3040e07a-a9ca-48c0-a2c6-5cf7c65f3baf"}, "type": "LinearAxis", "id": "3040e07a-a9ca-48c0-a2c6-5cf7c65f3baf"}, {"attributes": {"end": 35.2, "callback": null, "doc": null, "tags": [], "start": 0, "id": "c884252e-b737-4e3a-9930-2afea8e58ad4"}, "type": "Range1d", "id": "c884252e-b737-4e3a-9930-2afea8e58ad4"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "126dfb21-2412-407a-9c72-189d1fc65108"}, "type": "ToolEvents", "id": "126dfb21-2412-407a-9c72-189d1fc65108"}, {"subtype": "Chart", "type": "Plot", "id": "979329db-3ffa-450b-acb8-e804615bae87", "attributes": {"x_range": {"type": "FactorRange", "id": "e41f95d9-90d4-4777-89b5-bf51749aba99"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "9c31ef8d-5fc7-43df-a4df-e9244fc296cc"}, "title": "How impactful would the following potential MozReview features have on your productivity? [Make web interface less confusing]", "renderers": [{"type": "CategoricalAxis", "id": "4e2b16ff-abc8-4b0b-90e2-e36cba3dbae7"}, {"type": "LinearAxis", "id": "a9db0de5-376b-4fbf-bcf6-c2857990f9fe"}, {"type": "Grid", "id": "46aea047-2633-4c96-9a3f-6bc11fccbd4d"}, {"type": "GlyphRenderer", "id": "78aabb17-ed93-4dc0-aa8c-19016d857dab"}, {"type": "GlyphRenderer", "id": "3b21419c-ae47-44b6-b522-3ee8be0d5506"}, {"type": "Legend", "id": "ef5f7d9d-d7ef-4142-959d-4c3f62bd7609"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "2cc0bc52-76af-4853-b1f7-8bf5f57cdbf0"}, "plot_height": 560, "doc": null, "id": "979329db-3ffa-450b-acb8-e804615bae87", "tools": [], "below": [{"type": "CategoricalAxis", "id": "4e2b16ff-abc8-4b0b-90e2-e36cba3dbae7"}], "left": [{"type": "LinearAxis", "id": "a9db0de5-376b-4fbf-bcf6-c2857990f9fe"}]}}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "81ab62bc-09e2-406f-a570-1f221664efb6"}, "type": "Rect", "id": "81ab62bc-09e2-406f-a570-1f221664efb6"}, {"attributes": {"doc": null, "id": "6ef6438d-bc28-4177-8d64-660ee3e09163", "tags": []}, "type": "BasicTickFormatter", "id": "6ef6438d-bc28-4177-8d64-660ee3e09163"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "781d9dc3-3723-4aae-9d0e-7c72758ba69a"}, "type": "FactorRange", "id": "781d9dc3-3723-4aae-9d0e-7c72758ba69a"}, {"attributes": {"doc": null, "id": "c41a3db1-d4e4-4171-aa33-907f44d75076", "tags": []}, "type": "CategoricalTicker", "id": "c41a3db1-d4e4-4171-aa33-907f44d75076"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "059cd9ac-98c3-44b6-83db-cc05b1f959ec"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "33e604b2-58a2-4c27-8a9e-5b2695c82eae"}, "ticker": {"type": "BasicTicker", "id": "e41b3092-d69b-4c27-a8b2-f1beb5c05a79"}, "id": "56b0c550-3ca4-4c9b-9f64-7daa085ffe97"}, "type": "LinearAxis", "id": "56b0c550-3ca4-4c9b-9f64-7daa085ffe97"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "e0b5760b-c83a-46dd-99d9-6cbcdd523c2c"}, "type": "BasicTicker", "id": "e0b5760b-c83a-46dd-99d9-6cbcdd523c2c"}, {"attributes": {"callback": null, "factors": ["No", "Yes"], "doc": null, "tags": [], "id": "e6c52f9a-1e97-4678-b9f1-44c90204d8bc"}, "type": "FactorRange", "id": "e6c52f9a-1e97-4678-b9f1-44c90204d8bc"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "Yes"], "doc": null, "tags": [], "id": "ff0b13bb-fb53-4b2c-b313-bfcc49e1f5fd"}, "type": "FactorRange", "id": "ff0b13bb-fb53-4b2c-b313-bfcc49e1f5fd"}, {"attributes": {"doc": null, "id": "14f264a3-9695-47b4-aab6-e3f35542bc85", "tags": []}, "type": "CategoricalTicker", "id": "14f264a3-9695-47b4-aab6-e3f35542bc85"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "b3fa53bc-2eac-4867-9aef-178fceb117dd"}, "type": "Rect", "id": "b3fa53bc-2eac-4867-9aef-178fceb117dd"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "5b959267-0fa2-40dc-a97b-0e560578bbde"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "f464aea0-9568-4c05-8ea7-4d62ceeddd3f"}, "ticker": {"type": "CategoricalTicker", "id": "cd08f169-5c45-45de-acaf-1fcdcc02002d"}, "id": "c0bad64d-9813-49e6-8f08-b2954155b9b2"}, "type": "CategoricalAxis", "id": "c0bad64d-9813-49e6-8f08-b2954155b9b2"}, {"attributes": {"doc": null, "id": "b5232a19-933f-4e92-a07b-8ecb67bc7009", "tags": []}, "type": "CategoricalTicker", "id": "b5232a19-933f-4e92-a07b-8ecb67bc7009"}, {"subtype": "Chart", "type": "Plot", "id": "ae9c28fb-d4a1-4a0f-89f5-1101ea237083", "attributes": {"x_range": {"type": "FactorRange", "id": "a6e734de-e64f-46e4-a6f9-b96312b1828f"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "0b5a3bff-3bcb-4f43-8298-bd21b3b84762"}, "title": "Have you submitted an image/screenshot review to MozReview?", "renderers": [{"type": "CategoricalAxis", "id": "d6f30ad9-f7af-43e8-abf0-18ce3a9165fc"}, {"type": "LinearAxis", "id": "25316325-19da-4cf2-8eb3-a8422cf349c3"}, {"type": "Grid", "id": "668e7685-7740-4958-b21b-2fc138e736ff"}, {"type": "GlyphRenderer", "id": "577c1771-8643-4f9a-8421-87aab678cc44"}, {"type": "GlyphRenderer", "id": "a23bc05c-fcca-4f21-ac6b-f596ff61f7e6"}, {"type": "Legend", "id": "a955449b-66e4-4037-a687-3811ed132ba5"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "126dfb21-2412-407a-9c72-189d1fc65108"}, "plot_height": 560, "doc": null, "id": "ae9c28fb-d4a1-4a0f-89f5-1101ea237083", "tools": [], "below": [{"type": "CategoricalAxis", "id": "d6f30ad9-f7af-43e8-abf0-18ce3a9165fc"}], "left": [{"type": "LinearAxis", "id": "25316325-19da-4cf2-8eb3-a8422cf349c3"}]}}, {"attributes": {"callback": null, "factors": ["No impact / Not applicable", "A little impact", "Moderate impact", "Significant impact", "Tons of impact / Implement this ASAP"], "doc": null, "tags": [], "id": "a99be5b8-d73a-4240-bbe3-e75c88d695b7"}, "type": "FactorRange", "id": "a99be5b8-d73a-4240-bbe3-e75c88d695b7"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "be690310-856b-4ffe-9098-327487372d95"}, "type": "ToolEvents", "id": "be690310-856b-4ffe-9098-327487372d95"}, {"attributes": {"end": 40.7, "callback": null, "doc": null, "tags": [], "start": 0, "id": "fd4dd7f4-a3c9-4b7b-8412-42617c9e468e"}, "type": "Range1d", "id": "fd4dd7f4-a3c9-4b7b-8412-42617c9e468e"}, {"attributes": {"end": 56.1, "callback": null, "doc": null, "tags": [], "start": 0, "id": "4d4a2ef5-cd19-43c2-95f1-e095c0b2cf0c"}, "type": "Range1d", "id": "4d4a2ef5-cd19-43c2-95f1-e095c0b2cf0c"}, {"attributes": {"doc": null, "id": "f4f9b629-2f33-4975-9583-f3f855b10e01", "tags": []}, "type": "CategoricalTickFormatter", "id": "f4f9b629-2f33-4975-9583-f3f855b10e01"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "f0491a87-8728-47a9-813c-3f2c0bd6a593"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "fb44a947-3faf-4157-b01c-f55632820d98"}, "ticker": {"type": "CategoricalTicker", "id": "0bf16c74-0e5a-4532-84b9-2a8d241e1560"}, "id": "68ac3659-5db3-4f08-a06b-3339ede6f0aa"}, "type": "CategoricalAxis", "id": "68ac3659-5db3-4f08-a06b-3339ede6f0aa"}, {"attributes": {"doc": null, "id": "9128559a-758c-465e-a383-6606ff5982d3", "tags": []}, "type": "CategoricalTickFormatter", "id": "9128559a-758c-465e-a383-6606ff5982d3"}, {"attributes": {"end": 40.7, "callback": null, "doc": null, "tags": [], "start": 0, "id": "62ca6b90-8c03-4adc-91c5-dc28f3e59ba8"}, "type": "Range1d", "id": "62ca6b90-8c03-4adc-91c5-dc28f3e59ba8"}, {"attributes": {"doc": null, "id": "24de1bda-7eb0-4535-b6f2-b74e5600adea", "tags": []}, "type": "CategoricalTickFormatter", "id": "24de1bda-7eb0-4535-b6f2-b74e5600adea"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "85223055-9f53-4ab0-b539-e74c525e746e"}, "type": "ToolEvents", "id": "85223055-9f53-4ab0-b539-e74c525e746e"}, {"attributes": {"doc": null, "id": "fa8682d0-ab20-4995-b214-66879059c7bd", "tags": []}, "type": "CategoricalTicker", "id": "fa8682d0-ab20-4995-b214-66879059c7bd"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "5fa43983-a8b4-4afa-abf8-92c26b571edb"}, "type": "ToolEvents", "id": "5fa43983-a8b4-4afa-abf8-92c26b571edb"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "6ed0bb60-9e76-4b23-aab0-74029cc127cb"}, "type": "Rect", "id": "6ed0bb60-9e76-4b23-aab0-74029cc127cb"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "536825a5-9b5c-4094-ad89-c71deefc67cc"}, "type": "Rect", "id": "536825a5-9b5c-4094-ad89-c71deefc67cc"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "563861ed-4b30-4bb1-ad40-24439fe897a8"}, "orientation": "top_left", "tags": [], "doc": null, "id": "143786f8-e01b-4252-b2d5-80d4aa70f745", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "01ede30c-5ebd-4f3d-a849-ffa98f573c50"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "54ea631b-29fa-46a3-a8f6-36bc29d2b1a4"}]]]}, "type": "Legend", "id": "143786f8-e01b-4252-b2d5-80d4aa70f745"}, {"attributes": {"doc": null, "id": "8938435c-59ae-4313-b3b9-cf8bab25ea53", "tags": []}, "type": "CategoricalTickFormatter", "id": "8938435c-59ae-4313-b3b9-cf8bab25ea53"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "cac92ec6-141a-4319-b715-3da4813b8b26"}, "tags": [], "doc": null, "selection_glyph": null, "id": "7a8c3486-5128-41b5-90f4-f1f0ec389374", "glyph": {"type": "Rect", "id": "5650848a-083b-4db8-b770-75aa8f90c4e4"}}, "type": "GlyphRenderer", "id": "7a8c3486-5128-41b5-90f4-f1f0ec389374"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ec6ffc7e-8da4-405e-b370-a3d196a2ef2c"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "f87a3b8d-e11b-4059-b042-42e3a6bba137"}, "ticker": {"type": "CategoricalTicker", "id": "d045a2d5-a61c-4173-b446-6b341621e38d"}, "id": "46644744-7861-4e01-867e-bbb0b6f2e8d7"}, "type": "CategoricalAxis", "id": "46644744-7861-4e01-867e-bbb0b6f2e8d7"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "5353b830-14a9-4dfe-a22f-71533600d298"}, "type": "ToolEvents", "id": "5353b830-14a9-4dfe-a22f-71533600d298"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "44b0f247-9666-48fe-a86e-921b397decb8"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "cff6c21e-477b-45f3-b221-bca6a1167b2e"}, "ticker": {"type": "CategoricalTicker", "id": "9bb9fb34-1546-44b6-8766-6f80a95ddb85"}, "id": "6d0f5e00-35d0-4d61-af60-d6505fb4953b"}, "type": "CategoricalAxis", "id": "6d0f5e00-35d0-4d61-af60-d6505fb4953b"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ec6ffc7e-8da4-405e-b370-a3d196a2ef2c"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "f3d71584-33ce-46a7-91f2-a2d271d46943"}, "id": "fd0b047f-1fa0-4af7-95f7-55126cd38f8d"}, "type": "Grid", "id": "fd0b047f-1fa0-4af7-95f7-55126cd38f8d"}, {"attributes": {"doc": null, "id": "5e57954c-9d67-4d29-bb6b-5b74a46165e6", "tags": []}, "type": "CategoricalTicker", "id": "5e57954c-9d67-4d29-bb6b-5b74a46165e6"}, {"attributes": {"end": 103.4, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "a38bae40-ffb1-4173-bf27-8ae45e56ce9f"}, "type": "Range1d", "id": "a38bae40-ffb1-4173-bf27-8ae45e56ce9f"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "84f1676a-128e-4845-a8be-404961600f9e"}, "type": "Rect", "id": "84f1676a-128e-4845-a8be-404961600f9e"}, {"attributes": {"doc": null, "id": "6663cb26-13f3-465d-9d2f-de01e57aa10b", "tags": []}, "type": "CategoricalTickFormatter", "id": "6663cb26-13f3-465d-9d2f-de01e57aa10b"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "31e55b47-64c6-443d-8756-b526a0311feb"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "7b1a830a-296d-42a1-ad22-eb3a8d32d91b"}, "ticker": {"type": "BasicTicker", "id": "67cc97d7-8db2-478f-bab7-31e52c52c7f4"}, "id": "6eca7af3-61ea-4c5e-9a3d-7b929417b831"}, "type": "LinearAxis", "id": "6eca7af3-61ea-4c5e-9a3d-7b929417b831"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "5dd74155-377b-4a1a-8c39-cac7ac8eabc9"}, "tags": [], "doc": null, "selection_glyph": null, "id": "e69c0f54-5921-4900-8e5d-0793d19c943f", "glyph": {"type": "Rect", "id": "c290dd1e-1cff-41ac-969c-cbc10bc625fa"}}, "type": "GlyphRenderer", "id": "e69c0f54-5921-4900-8e5d-0793d19c943f"}, {"attributes": {"doc": null, "id": "33c9b01c-1147-44f1-b1ad-c8b0c4010775", "tags": []}, "type": "BasicTickFormatter", "id": "33c9b01c-1147-44f1-b1ad-c8b0c4010775"}, {"attributes": {"doc": null, "id": "c716bea1-99f8-419b-9576-e0eddd120813", "tags": []}, "type": "CategoricalTickFormatter", "id": "c716bea1-99f8-419b-9576-e0eddd120813"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "61c5230d-caf4-40db-9825-39121b4e5201"}, "type": "Rect", "id": "61c5230d-caf4-40db-9825-39121b4e5201"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "e1dc57c7-2233-4a41-b3e0-32ab89541be0"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "c6d4d997-8545-4dab-81d7-850e955a422e"}, "ticker": {"type": "CategoricalTicker", "id": "115894e2-deda-45c5-9994-aad02fc99e4b"}, "id": "92e1089d-f031-48b8-bd08-642cd5a6a329"}, "type": "CategoricalAxis", "id": "92e1089d-f031-48b8-bd08-642cd5a6a329"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "69b56e3a-733d-44e8-9de5-0fb712dad00b"}, "tags": [], "doc": null, "selection_glyph": null, "id": "2b1d17af-e529-48e2-82f6-901c20803caf", "glyph": {"type": "Rect", "id": "a2db98e6-6e5e-4fc5-b35d-d8cc974b000c"}}, "type": "GlyphRenderer", "id": "2b1d17af-e529-48e2-82f6-901c20803caf"}, {"attributes": {"end": 38.5, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "5f229964-0cb4-41c5-809f-a21d6083675e"}, "type": "Range1d", "id": "5f229964-0cb4-41c5-809f-a21d6083675e"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "211b7754-cfad-42d7-a3d3-7695ef9b9713"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "713f926e-b8c4-4d33-a3ae-284ea5dbe397"}, "ticker": {"type": "BasicTicker", "id": "8afd769f-16ba-4a4f-b632-ab2e17ed3fa5"}, "id": "622e9e14-8d68-48db-afbf-d096c57b1fc4"}, "type": "LinearAxis", "id": "622e9e14-8d68-48db-afbf-d096c57b1fc4"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "0bda6e36-efb0-4220-8964-a882012c97f0"}, "type": "Rect", "id": "0bda6e36-efb0-4220-8964-a882012c97f0"}, {"subtype": "Chart", "type": "Plot", "id": "8d37317e-ec95-478c-9eb4-36688e87a471", "attributes": {"x_range": {"type": "FactorRange", "id": "4192cfaa-ae2f-4578-8a1a-bcc85a1d97ac"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "99695843-2f5c-460a-868b-e969d7830f41"}, "title": "How much should Mozilla invest in the following Mercurial related items? [Better integration with existing tools and processes]", "renderers": [{"type": "CategoricalAxis", "id": "65262506-ee03-40dc-a623-b84a26442884"}, {"type": "LinearAxis", "id": "6cd78add-96b2-4e4a-a840-267e7e543a17"}, {"type": "Grid", "id": "d0a7d25a-3a44-43a6-8558-c7157efdcc31"}, {"type": "GlyphRenderer", "id": "1ca3a1e6-484d-4b6c-901e-2870fbc9af62"}, {"type": "GlyphRenderer", "id": "6eba8804-e5b5-4429-ab74-47bccb390127"}, {"type": "Legend", "id": "1b70dd95-930a-4ad7-a516-5b71179d4957"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "c8fd6d82-d195-4db7-b546-bed8ac5e231a"}, "plot_height": 560, "doc": null, "id": "8d37317e-ec95-478c-9eb4-36688e87a471", "tools": [], "below": [{"type": "CategoricalAxis", "id": "65262506-ee03-40dc-a623-b84a26442884"}], "left": [{"type": "LinearAxis", "id": "6cd78add-96b2-4e4a-a840-267e7e543a17"}]}}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "7c6fa153-ac76-45f9-aedf-e8a07bf4e39c"}, "type": "ToolEvents", "id": "7c6fa153-ac76-45f9-aedf-e8a07bf4e39c"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "f7e53b60-70f5-4531-b7d8-bdc4f8605eb2"}, "tags": [], "doc": null, "selection_glyph": null, "id": "4a031f68-79a7-4a61-a59b-758cfe0428e2", "glyph": {"type": "Rect", "id": "9aec71df-c95a-4153-8ad2-86266bb6cb9c"}}, "type": "GlyphRenderer", "id": "4a031f68-79a7-4a61-a59b-758cfe0428e2"}, {"attributes": {"doc": null, "id": "788df922-d734-4eac-a42d-6506dd9dcf1e", "tags": []}, "type": "BasicTickFormatter", "id": "788df922-d734-4eac-a42d-6506dd9dcf1e"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "bc085a35-b314-41e9-a57d-565def0bbdc6"}, "orientation": "top_left", "tags": [], "doc": null, "id": "2c9090e0-d311-4cf5-a724-e430eb712991", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "dcc14581-d34e-4206-931f-d2ca1845a32e"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "43499ae2-8d08-4d54-b264-7756fd0efd06"}]]]}, "type": "Legend", "id": "2c9090e0-d311-4cf5-a724-e430eb712991"}, {"subtype": "Chart", "type": "Plot", "id": "b8fc0587-42e8-4658-9314-5926a5529de4", "attributes": {"x_range": {"type": "FactorRange", "id": "7f383e52-f2d3-4952-91ec-9caf27933e46"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "0919ed80-c728-40bd-a2c6-b0c090b9cd3c"}, "title": "Has the Firefox build system improved? [In the past year]", "renderers": [{"type": "CategoricalAxis", "id": "3a468976-3344-4830-aeab-8dd39ab512b1"}, {"type": "LinearAxis", "id": "8f9d2153-bd87-4657-83bc-a76fae117354"}, {"type": "Grid", "id": "8fb2f99d-6814-4d1d-abf2-18e78430983c"}, {"type": "GlyphRenderer", "id": "2205b274-0519-4045-93e6-0c6213aa30be"}, {"type": "GlyphRenderer", "id": "976271c4-971a-40d4-899c-2975f5ee857c"}, {"type": "Legend", "id": "b25bc6e7-1c41-46e6-b821-4b01f7835dac"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "09808561-43f7-4900-b699-3d0f6b75c335"}, "plot_height": 560, "doc": null, "id": "b8fc0587-42e8-4658-9314-5926a5529de4", "tools": [], "below": [{"type": "CategoricalAxis", "id": "3a468976-3344-4830-aeab-8dd39ab512b1"}], "left": [{"type": "LinearAxis", "id": "8f9d2153-bd87-4657-83bc-a76fae117354"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "056b0be0-3c89-4cb8-b23e-6f5f17ec3629"}, "orientation": "top_left", "tags": [], "doc": null, "id": "04933e38-3b37-4736-a429-d733927140ee", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "22391232-0402-404e-ac43-982da63acdff"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "8ac35ffb-eb10-4106-896a-faf4c02ef9e9"}]]]}, "type": "Legend", "id": "04933e38-3b37-4736-a429-d733927140ee"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "516f2cc0-be48-4375-af7f-5d23af8066eb"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "b06dbffb-a8e9-4bd2-a016-85b230ad8b5d"}, "ticker": {"type": "CategoricalTicker", "id": "0e6c0ab6-d2bf-47fd-95ce-0f8fa5f6b2e4"}, "id": "00614eb1-f2dd-4863-a72d-3e3c8f9dc665"}, "type": "CategoricalAxis", "id": "00614eb1-f2dd-4863-a72d-3e3c8f9dc665"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "3bfd1df1-ca7f-4f10-8a9a-14a7dc2c1a5b"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "e07f6362-7c37-48e8-ac4e-cab786d2e2f2"}, "ticker": {"type": "BasicTicker", "id": "675951e1-65cf-4646-9e84-81291c4b89cb"}, "id": "722d1e85-4c8b-4efe-9a38-f67e68070b03"}, "type": "LinearAxis", "id": "722d1e85-4c8b-4efe-9a38-f67e68070b03"}, {"subtype": "Chart", "type": "Plot", "id": "c7c90e9d-22b1-4602-9a4d-efdd63afa873", "attributes": {"x_range": {"type": "FactorRange", "id": "f47eb812-5574-4884-aae0-8a321665b620"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "afd0c373-aad7-4eb2-8475-43b78f6111f5"}, "title": "How satisfied are you with the following items at Mozilla? [Firefox build system]", "renderers": [{"type": "CategoricalAxis", "id": "7e176ea2-d729-4002-adec-26567128364e"}, {"type": "LinearAxis", "id": "4ac60d87-3d40-42af-824d-5434d7071d49"}, {"type": "Grid", "id": "dae58fac-1aed-458f-a30c-9d412d5c86dd"}, {"type": "GlyphRenderer", "id": "70af4438-959d-44ba-900c-e739e501fb99"}, {"type": "GlyphRenderer", "id": "8259cca6-379f-4123-b7b9-90adf29c367d"}, {"type": "Legend", "id": "b515730f-43f0-452d-bd96-d68010567629"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "ffc75ed9-1dbc-4197-a146-27801476f9b5"}, "plot_height": 560, "doc": null, "id": "c7c90e9d-22b1-4602-9a4d-efdd63afa873", "tools": [], "below": [{"type": "CategoricalAxis", "id": "7e176ea2-d729-4002-adec-26567128364e"}], "left": [{"type": "LinearAxis", "id": "4ac60d87-3d40-42af-824d-5434d7071d49"}]}}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "074c9ead-edb7-4da0-8f27-4218245d2630"}, "type": "Rect", "id": "074c9ead-edb7-4da0-8f27-4218245d2630"}, {"attributes": {"doc": null, "id": "d764ad15-8271-43cf-95fe-2e2fbf81ea15", "tags": []}, "type": "CategoricalTicker", "id": "d764ad15-8271-43cf-95fe-2e2fbf81ea15"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "3e236193-d476-4b3f-a2b6-003bd0ea6fbb"}, "tags": [], "doc": null, "selection_glyph": null, "id": "3cfccd05-8ae8-4bfd-b479-b8436c2df1e3", "glyph": {"type": "Rect", "id": "dea316be-2b82-47a0-befb-67fefea884a3"}}, "type": "GlyphRenderer", "id": "3cfccd05-8ae8-4bfd-b479-b8436c2df1e3"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "f6a0f597-db8f-495e-b824-b91aa83ab48f"}, "orientation": "top_left", "tags": [], "doc": null, "id": "2529d222-05af-4595-80d8-4cffb7d7c17f", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "d10bf0b3-4ba8-42c7-9428-fb677cf2df69"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "4094d90b-ae6b-48f6-9372-01379cebf0e5"}]]]}, "type": "Legend", "id": "2529d222-05af-4595-80d8-4cffb7d7c17f"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "87c4eda2-0cee-4548-8dcd-110be1d775b9"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "68398b85-8a60-4197-8063-6b6ff6fc07ba"}, "ticker": {"type": "BasicTicker", "id": "ab99d4e0-4ef6-43ff-b08e-da3111bcb602"}, "id": "dd9642b6-9b17-40ba-bd08-1524df387292"}, "type": "LinearAxis", "id": "dd9642b6-9b17-40ba-bd08-1524df387292"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "87c4eda2-0cee-4548-8dcd-110be1d775b9"}, "orientation": "top_left", "tags": [], "doc": null, "id": "e3243175-272c-4177-b54a-e9f5d33d2718", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "85d00d2a-6957-4934-afe2-6774b9f4ab85"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "d4de357a-2672-4b84-86b2-61c6212c19f8"}]]]}, "type": "Legend", "id": "e3243175-272c-4177-b54a-e9f5d33d2718"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "ec9e3185-3442-44b6-a593-a546d272e0bd"}, "type": "BasicTicker", "id": "ec9e3185-3442-44b6-a593-a546d272e0bd"}, {"attributes": {"end": 23.1, "callback": null, "doc": null, "tags": [], "start": 0, "id": "cef0ab8f-ee2a-4f16-846f-adc139888217"}, "type": "Range1d", "id": "cef0ab8f-ee2a-4f16-846f-adc139888217"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "f36211ad-7644-4302-88a4-ae6e74612306"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "14316c34-5baa-408d-8905-84c942244a6d"}, "ticker": {"type": "BasicTicker", "id": "b1f4d36a-b3ec-4a3c-8b08-86b8d626b3bb"}, "id": "83f4cd17-3041-4afd-95a0-d574404fa3fb"}, "type": "LinearAxis", "id": "83f4cd17-3041-4afd-95a0-d574404fa3fb"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "22162a67-39d1-4f80-bdd7-0deb9056e9d5"}, "type": "Rect", "id": "22162a67-39d1-4f80-bdd7-0deb9056e9d5"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a6ad311a-50f7-421b-91ec-dee401cf22d5"}, "orientation": "top_left", "tags": [], "doc": null, "id": "ddef5e2f-862f-4d13-8d6e-90149d6d2b41", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "eac81318-357e-4192-a516-241938b716ff"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "be9fe1ee-09c8-4f40-8c30-ea6187975cf1"}]]]}, "type": "Legend", "id": "ddef5e2f-862f-4d13-8d6e-90149d6d2b41"}, {"attributes": {"doc": null, "id": "6d83ab24-aa61-45de-851c-87609a4bba6f", "tags": []}, "type": "BasicTickFormatter", "id": "6d83ab24-aa61-45de-851c-87609a4bba6f"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "71788d54-cdac-4ed9-aa92-926dc7b0663d"}, "tags": [], "doc": null, "selection_glyph": null, "id": "78498daa-7d02-4af5-bee6-334d9372ea84", "glyph": {"type": "Rect", "id": "8ce1e0ba-20c4-4522-b470-447e0cfa93f0"}}, "type": "GlyphRenderer", "id": "78498daa-7d02-4af5-bee6-334d9372ea84"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "c9fcc38a-3584-4bc4-a7d2-f73c302ff141"}, "type": "BasicTicker", "id": "c9fcc38a-3584-4bc4-a7d2-f73c302ff141"}, {"attributes": {"callback": null, "factors": ["N/A", "Not satisfied at all", "Below average", "Average", "Above average", "It's awesome!"], "doc": null, "tags": [], "id": "63849b9c-b8ed-4448-aa6d-97b0ec65f868"}, "type": "FactorRange", "id": "63849b9c-b8ed-4448-aa6d-97b0ec65f868"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [3.0, 9.0, 11.0, 15.0, 11.0], "Platform": [6, 18, 22, 30, 22], "catFx-Team": ["N/A:0.666666666667", "1 = little impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["N/A", "1 = little impact", "2", "3", "4 = most impact"], "midPlatform": [3.0, 9.0, 11.0, 15.0, 11.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [14.0, 28.0, 54.0, 59.0, 40.0], "catPlatform": ["N/A:0.333333333333", "1 = little impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [10.0, 23.0, 38.0, 44.5, 31.0], "midFx-Team": [4.0, 5.0, 16.0, 14.5, 9.0], "Fx-Team": [8, 10, 32, 29, 18]}, "id": "17678ba0-eb81-4ba7-af55-75248e32a5dd"}, "type": "ColumnDataSource", "id": "17678ba0-eb81-4ba7-af55-75248e32a5dd"}, {"subtype": "Chart", "type": "Plot", "id": "6d3456b4-4bd0-47b6-8b3c-7cfa6e72141d", "attributes": {"x_range": {"type": "FactorRange", "id": "fce95f54-42f6-44f5-850f-7e42a3f439ed"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "fd4dd7f4-a3c9-4b7b-8412-42617c9e468e"}, "title": "Why do you prefer Git over Mercurial? (check all that apply)", "renderers": [{"type": "CategoricalAxis", "id": "da9f13c8-7daf-4f01-bfef-721714a01706"}, {"type": "LinearAxis", "id": "f2c8c6cf-e87b-4e8f-ae2c-36ab62b2e9c7"}, {"type": "Grid", "id": "5cb3dc06-db14-4086-967b-f1e12266d1b1"}, {"type": "GlyphRenderer", "id": "ba7ead4e-6f24-4429-9edd-d704c03c8ebb"}, {"type": "GlyphRenderer", "id": "c13c0e48-fd8f-4c18-a336-a6ad157ff09e"}, {"type": "Legend", "id": "f7173e38-b38b-4215-8a76-168e307079c6"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "cc52a4f6-95be-4288-b273-af6d9a01140b"}, "plot_height": 560, "doc": null, "id": "6d3456b4-4bd0-47b6-8b3c-7cfa6e72141d", "tools": [], "below": [{"type": "CategoricalAxis", "id": "da9f13c8-7daf-4f01-bfef-721714a01706"}], "left": [{"type": "LinearAxis", "id": "f2c8c6cf-e87b-4e8f-ae2c-36ab62b2e9c7"}]}}, {"attributes": {"doc": null, "id": "da5a8237-b70a-473a-b8fe-5455732070f2", "tags": []}, "type": "CategoricalTicker", "id": "da5a8237-b70a-473a-b8fe-5455732070f2"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "f020c3ca-940c-4733-9b13-844bd87963d1"}, "type": "ToolEvents", "id": "f020c3ca-940c-4733-9b13-844bd87963d1"}, {"attributes": {"doc": null, "id": "49240545-244d-4ede-bac6-56ac43e886c7", "tags": []}, "type": "CategoricalTicker", "id": "49240545-244d-4ede-bac6-56ac43e886c7"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "d8ad1c6e-6686-44ee-ad57-3dce8794d0c0"}, "type": "Rect", "id": "d8ad1c6e-6686-44ee-ad57-3dce8794d0c0"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "332cd986-c81a-4b98-9918-5c9337354239"}, "tags": [], "doc": null, "selection_glyph": null, "id": "80bcf04c-2fa7-49cc-823c-6eee0f9726bc", "glyph": {"type": "Rect", "id": "c8ef8fbe-55dd-4985-a66c-a2e8314425f3"}}, "type": "GlyphRenderer", "id": "80bcf04c-2fa7-49cc-823c-6eee0f9726bc"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "8f20ea6e-f5b3-4550-a445-87c989707eec"}, "type": "ToolEvents", "id": "8f20ea6e-f5b3-4550-a445-87c989707eec"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "b3dfccd7-23b7-4d59-8ad5-b33af7d97bc0"}, "type": "ToolEvents", "id": "b3dfccd7-23b7-4d59-8ad5-b33af7d97bc0"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "c6c37cfc-ad8d-45d2-aed2-393144d2db94"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "0c63b24a-899e-4126-b40d-4b067e39353b"}, "ticker": {"type": "CategoricalTicker", "id": "5eabb731-3087-4ad8-a064-2a7dfcce09a6"}, "id": "af2ad0b8-7335-4e1a-a871-bf96283bef99"}, "type": "CategoricalAxis", "id": "af2ad0b8-7335-4e1a-a871-bf96283bef99"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "1c89141e-9218-4765-9da8-4efc264eb346"}, "type": "BasicTicker", "id": "1c89141e-9218-4765-9da8-4efc264eb346"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "d1b1878c-ef69-448a-8398-2c49a0559edc"}, "orientation": "top_left", "tags": [], "doc": null, "id": "60b857c8-ee73-4bf6-872f-a2e40966fa8c", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "c7be80d7-1af9-46e5-8efa-2a619cb60a6b"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "2a7543b7-8a4e-46e2-990c-b22f0f651bec"}]]]}, "type": "Legend", "id": "60b857c8-ee73-4bf6-872f-a2e40966fa8c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a12de8f6-e000-4e8f-831d-b9d9fc2fc2a3"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "788df922-d734-4eac-a42d-6506dd9dcf1e"}, "ticker": {"type": "BasicTicker", "id": "e375d48a-0962-4944-9ab9-5fe02305a048"}, "id": "3bfcb115-9eae-44c3-9df8-4bf53add0ccd"}, "type": "LinearAxis", "id": "3bfcb115-9eae-44c3-9df8-4bf53add0ccd"}, {"subtype": "Chart", "type": "Plot", "id": "35c94ce8-b8eb-4f3c-97f4-957c3cc3e63e", "attributes": {"x_range": {"type": "FactorRange", "id": "37ba5ee7-b4c0-413e-ba66-0be41bf96b82"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "f6eeb536-910f-45ee-a19b-8362cc999770"}, "title": "Thinking of the process of writing and debugging code, rank the following in terms of their impact on your productivity [Better IDE support (please indicate IDE below)]", "renderers": [{"type": "CategoricalAxis", "id": "b93ac4da-8cea-4ad5-ae92-5f6259515ebf"}, {"type": "LinearAxis", "id": "8dcf5cd4-a4d7-4a98-a244-aeb70c5d819b"}, {"type": "Grid", "id": "d9084d0a-82ce-4dc5-b2ee-5c173375ca68"}, {"type": "GlyphRenderer", "id": "4510c06a-9ed5-4327-874c-f4f09641519c"}, {"type": "GlyphRenderer", "id": "6cbf22bb-ab94-4dc5-9156-ec1fba253c87"}, {"type": "Legend", "id": "10df27f6-f9c3-4b98-aa47-0f96767f5ab5"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "10395fe0-0530-422d-a521-6450c67385c2"}, "plot_height": 560, "doc": null, "id": "35c94ce8-b8eb-4f3c-97f4-957c3cc3e63e", "tools": [], "below": [{"type": "CategoricalAxis", "id": "b93ac4da-8cea-4ad5-ae92-5f6259515ebf"}], "left": [{"type": "LinearAxis", "id": "8dcf5cd4-a4d7-4a98-a244-aeb70c5d819b"}]}}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "ee8c29c7-562e-4eb3-ab8f-40ff7384cfac"}, "type": "Rect", "id": "ee8c29c7-562e-4eb3-ab8f-40ff7384cfac"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "0f30d7ee-6657-4ceb-a729-50d850e51a4e"}, "type": "ToolEvents", "id": "0f30d7ee-6657-4ceb-a729-50d850e51a4e"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "03813c9d-f7c2-448c-83da-a990dc513852"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "3f4702fd-e523-453c-acb5-ebc54b6ff2ba"}, "ticker": {"type": "BasicTicker", "id": "e0c56f73-0e70-4c70-87ea-13ad42d7ad1d"}, "id": "ac8219de-0f1b-4a01-8627-9924732fe726"}, "type": "LinearAxis", "id": "ac8219de-0f1b-4a01-8627-9924732fe726"}, {"attributes": {"doc": null, "id": "f19e275e-6972-4f1e-ae12-eebff09990b9", "tags": []}, "type": "CategoricalTicker", "id": "f19e275e-6972-4f1e-ae12-eebff09990b9"}, {"subtype": "Chart", "type": "Plot", "id": "11949ae0-856e-45f2-874d-c82c2cc92ac0", "attributes": {"x_range": {"type": "FactorRange", "id": "ba8b9f9d-a2ed-45cf-bb17-a38c47b5f213"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "0f746331-2c78-4584-9630-ac76fd2f86ca"}, "title": "What version of Mercurial are you running? (run `hg --version` to find out)", "renderers": [{"type": "CategoricalAxis", "id": "781125d6-0c9c-4347-82bb-3cf37a4fff5f"}, {"type": "LinearAxis", "id": "16bf0e9b-4542-479b-b48d-4628d8ee60a3"}, {"type": "Grid", "id": "3e359332-fbd1-4608-aebb-8d10556f563e"}, {"type": "GlyphRenderer", "id": "1d97628e-d899-45c6-ac7b-51aa80e27483"}, {"type": "GlyphRenderer", "id": "09f19681-1f00-4ce0-8aac-437f30dec614"}, {"type": "Legend", "id": "e3926dbd-d3b6-47eb-80ae-82c39931ad1b"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "0f30d7ee-6657-4ceb-a729-50d850e51a4e"}, "plot_height": 560, "doc": null, "id": "11949ae0-856e-45f2-874d-c82c2cc92ac0", "tools": [], "below": [{"type": "CategoricalAxis", "id": "781125d6-0c9c-4347-82bb-3cf37a4fff5f"}], "left": [{"type": "LinearAxis", "id": "16bf0e9b-4542-479b-b48d-4628d8ee60a3"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ae9c28fb-d4a1-4a0f-89f5-1101ea237083"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "66cf4b29-6e5b-4385-9046-07f3d2af1cc9"}, "ticker": {"type": "CategoricalTicker", "id": "0d7e6de5-3391-4419-88bc-df16f475d921"}, "id": "d6f30ad9-f7af-43e8-abf0-18ce3a9165fc"}, "type": "CategoricalAxis", "id": "d6f30ad9-f7af-43e8-abf0-18ce3a9165fc"}, {"attributes": {"end": 44.0, "callback": null, "doc": null, "tags": [], "start": 0, "id": "0e14b5bc-2607-4c60-9065-7d592251fb2d"}, "type": "Range1d", "id": "0e14b5bc-2607-4c60-9065-7d592251fb2d"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A", "About the same", "Gotten better"], "doc": null, "tags": [], "id": "f827e6b1-7c68-4960-89ff-2d975fb919b4"}, "type": "FactorRange", "id": "f827e6b1-7c68-4960-89ff-2d975fb919b4"}, {"attributes": {"callback": null, "factors": ["No impact / Not applicable", "A little impact", "Moderate impact", "Significant impact", "Tons of impact / Implement this ASAP"], "doc": null, "tags": [], "id": "7e777d77-c2e6-4d26-85d0-1a1eaeca9b39"}, "type": "FactorRange", "id": "7e777d77-c2e6-4d26-85d0-1a1eaeca9b39"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "64cb9ce0-a727-4336-9e2a-219ac73ee461"}, "type": "ToolEvents", "id": "64cb9ce0-a727-4336-9e2a-219ac73ee461"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "9a8f6713-a7f2-486f-b470-eb14124ed16f"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "a27289a9-6b42-4174-b4a0-66dfffd65955"}, "id": "dd9fa5ad-281a-4231-b26a-ef1a618ffcd4"}, "type": "Grid", "id": "dd9fa5ad-281a-4231-b26a-ef1a618ffcd4"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "66f73d12-4c8e-4412-a61a-952be0b375fb"}, "orientation": "top_left", "tags": [], "doc": null, "id": "2e965a57-aafc-4fd3-b713-549125cdc3f2", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "1efc85bc-99b4-4e6b-a279-3ec839309fc8"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "4c551df0-02d8-4458-8669-1ad1d12590c0"}]]]}, "type": "Legend", "id": "2e965a57-aafc-4fd3-b713-549125cdc3f2"}, {"attributes": {"doc": null, "id": "1d79e0aa-b481-4085-8f33-d2c58a20eb4f", "tags": []}, "type": "CategoricalTickFormatter", "id": "1d79e0aa-b481-4085-8f33-d2c58a20eb4f"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "1088cb25-ae1e-46a7-b65e-1f5e8c5450bd"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "7ff1aeea-9d8d-4a95-9447-9f790aa9f3e7"}, "ticker": {"type": "BasicTicker", "id": "a71a49a0-1992-4663-97e2-53b3e19d2a02"}, "id": "54eefdcc-e735-4943-8169-5f64d4030bc7"}, "type": "LinearAxis", "id": "54eefdcc-e735-4943-8169-5f64d4030bc7"}, {"attributes": {"doc": null, "id": "6cf6a5dc-1c90-4805-a220-8b41897e78c1", "tags": []}, "type": "CategoricalTicker", "id": "6cf6a5dc-1c90-4805-a220-8b41897e78c1"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "c0211ed4-da00-466c-ac3c-358831743026"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "78a3cd79-1777-453c-96e2-010b508dca74"}, "ticker": {"type": "CategoricalTicker", "id": "670cef4a-9621-4914-8015-4db0b18868e0"}, "id": "f39d2796-fada-45bc-9544-5deca778e8ed"}, "type": "CategoricalAxis", "id": "f39d2796-fada-45bc-9544-5deca778e8ed"}, {"attributes": {"doc": null, "id": "6e48166b-73dc-4017-8710-d3ab8674aae7", "tags": []}, "type": "CategoricalTicker", "id": "6e48166b-73dc-4017-8710-d3ab8674aae7"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "9a8f6713-a7f2-486f-b470-eb14124ed16f"}, "orientation": "top_left", "tags": [], "doc": null, "id": "9dae11ef-3fb0-4b80-8cb5-1fa320c3745c", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "f7832ead-a6a0-4ae8-a89c-1e5feb6619fa"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "944ef638-68b7-40d8-9cfc-00e9ef3a181e"}]]]}, "type": "Legend", "id": "9dae11ef-3fb0-4b80-8cb5-1fa320c3745c"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "fdd726b5-e547-4ae9-9a0c-79ae8f243878"}, "tags": [], "doc": null, "selection_glyph": null, "id": "55692a77-0b4e-45b0-80f7-85c83b76503c", "glyph": {"type": "Rect", "id": "93cb118e-de65-4261-98cb-55999acecf08"}}, "type": "GlyphRenderer", "id": "55692a77-0b4e-45b0-80f7-85c83b76503c"}, {"attributes": {"doc": null, "id": "5dae7d39-1b66-43c0-9ad1-c9e54ecaff77", "tags": []}, "type": "CategoricalTicker", "id": "5dae7d39-1b66-43c0-9ad1-c9e54ecaff77"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "c6c37cfc-ad8d-45d2-aed2-393144d2db94"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "36f465b6-2fff-4bc7-b779-415f720bccca"}, "ticker": {"type": "BasicTicker", "id": "0ad66ace-4ba9-40fb-9fa6-842cd4231c95"}, "id": "0872c7e1-8da9-4ae0-ab2a-d3f65422aca9"}, "type": "LinearAxis", "id": "0872c7e1-8da9-4ae0-ab2a-d3f65422aca9"}, {"attributes": {"doc": null, "id": "95833cc1-caad-4d92-8b60-4fc673777036", "tags": []}, "type": "CategoricalTicker", "id": "95833cc1-caad-4d92-8b60-4fc673777036"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "a9b1a95f-601b-44cd-9a7e-0fe14d1ed422"}, "type": "BasicTicker", "id": "a9b1a95f-601b-44cd-9a7e-0fe14d1ed422"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "65ada7bd-a55f-43b7-83dc-8e58e947a4f0"}, "type": "ToolEvents", "id": "65ada7bd-a55f-43b7-83dc-8e58e947a4f0"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "03d28133-060e-4caf-b1ae-ad92f337226e"}, "tags": [], "doc": null, "selection_glyph": null, "id": "ad1ab6ab-a1b4-4715-b52e-f0740606d352", "glyph": {"type": "Rect", "id": "648c6161-773d-4163-ac5b-7a5c1df3ec88"}}, "type": "GlyphRenderer", "id": "ad1ab6ab-a1b4-4715-b52e-f0740606d352"}, {"attributes": {"doc": null, "id": "6218f5e8-b6ee-4f36-8366-60c6a53b8411", "tags": []}, "type": "CategoricalTickFormatter", "id": "6218f5e8-b6ee-4f36-8366-60c6a53b8411"}, {"attributes": {"doc": null, "id": "f1311ab3-108d-4685-b765-ad64bf45b76d", "tags": []}, "type": "CategoricalTicker", "id": "f1311ab3-108d-4685-b765-ad64bf45b76d"}, {"subtype": "Chart", "type": "Plot", "id": "77d1169c-0b2a-4a20-9899-1d963b34c3b9", "attributes": {"x_range": {"type": "FactorRange", "id": "7ee0ed3f-9d26-41fd-8f1f-3514747b3cda"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "ad5af6ad-4c26-40b7-9c8e-a2de998e9ff1"}, "title": "Which workflows do you practice to author commits with Mercurial? (Check all that apply)", "renderers": [{"type": "CategoricalAxis", "id": "b3c905cb-b0f8-467d-bf8d-9ad308d52406"}, {"type": "LinearAxis", "id": "1fd5029d-5f57-4e4c-bb08-8f49e8cf4a33"}, {"type": "Grid", "id": "a02bb240-eb63-4fb5-b106-e896e04edf76"}, {"type": "GlyphRenderer", "id": "c99de7ed-41a7-425b-b4aa-86d18737ceb8"}, {"type": "GlyphRenderer", "id": "a4ac14d1-a65f-4c00-a16f-f68500516e65"}, {"type": "Legend", "id": "5b827168-827e-4b9a-b3aa-9bf1acbc9486"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "8965c659-b8e8-40ce-859d-0b93f506e741"}, "plot_height": 560, "doc": null, "id": "77d1169c-0b2a-4a20-9899-1d963b34c3b9", "tools": [], "below": [{"type": "CategoricalAxis", "id": "b3c905cb-b0f8-467d-bf8d-9ad308d52406"}], "left": [{"type": "LinearAxis", "id": "1fd5029d-5f57-4e4c-bb08-8f49e8cf4a33"}]}}, {"attributes": {"doc": null, "id": "d67e39dc-8761-4f5d-9893-d41a386f37a5", "tags": []}, "type": "CategoricalTicker", "id": "d67e39dc-8761-4f5d-9893-d41a386f37a5"}, {"attributes": {"end": 38.5, "callback": null, "doc": null, "tags": [], "start": 0, "id": "e047bbdf-d66b-4e22-9690-e3a3c5e09271"}, "type": "Range1d", "id": "e047bbdf-d66b-4e22-9690-e3a3c5e09271"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "48441627-a510-472b-9a38-a8e37764a02b"}, "type": "Rect", "id": "48441627-a510-472b-9a38-a8e37764a02b"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "c6c37cfc-ad8d-45d2-aed2-393144d2db94"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "0ad66ace-4ba9-40fb-9fa6-842cd4231c95"}, "id": "e4813d55-a980-44e8-a909-6b8df88e2b9b"}, "type": "Grid", "id": "e4813d55-a980-44e8-a909-6b8df88e2b9b"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "42b7d26b-575b-497e-970a-66e60095ed14"}, "type": "ToolEvents", "id": "42b7d26b-575b-497e-970a-66e60095ed14"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "7808946e-3b7d-4351-9671-294b782a031e"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "c9fcc38a-3584-4bc4-a7d2-f73c302ff141"}, "id": "5dde4ec8-04fd-4a22-a788-f9f93f16a2ab"}, "type": "Grid", "id": "5dde4ec8-04fd-4a22-a788-f9f93f16a2ab"}, {"attributes": {"doc": null, "id": "d487e5fe-c6f3-40b3-843a-280e778ce624", "tags": []}, "type": "BasicTickFormatter", "id": "d487e5fe-c6f3-40b3-843a-280e778ce624"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "a6e04303-3b82-49db-a464-03eac134e926"}, "type": "ToolEvents", "id": "a6e04303-3b82-49db-a464-03eac134e926"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "2336062a-f291-4997-8c28-27480a3c327c"}, "tags": [], "doc": null, "selection_glyph": null, "id": "08f4121e-b124-4755-b2b5-dfcc256ac06e", "glyph": {"type": "Rect", "id": "44ec5b6f-e02e-4717-b4dd-0863160dd813"}}, "type": "GlyphRenderer", "id": "08f4121e-b124-4755-b2b5-dfcc256ac06e"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "68bf4f73-1acf-410e-a69f-8003d8a9b3b9"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "4f162c02-ddbb-4377-9d67-826726e2a9e0"}, "ticker": {"type": "BasicTicker", "id": "78f58015-6f6e-419c-b775-255d52f6e4e5"}, "id": "ecf3d36b-d6a4-48c0-9800-bf6906ed114f"}, "type": "LinearAxis", "id": "ecf3d36b-d6a4-48c0-9800-bf6906ed114f"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "9cf8e0f0-feb5-4baf-abde-2a6d421edcba"}, "type": "Rect", "id": "9cf8e0f0-feb5-4baf-abde-2a6d421edcba"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "590387a1-ec15-41cd-8526-f5db5b9fe8d9"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "8618f888-e7c4-4685-b511-8aa7607b9e3a"}, "id": "62034004-aa65-49fb-aa9b-e98a87e94624"}, "type": "Grid", "id": "62034004-aa65-49fb-aa9b-e98a87e94624"}, {"attributes": {"doc": null, "id": "50b3634e-62e6-4eeb-bec7-e68f21ce0fb9", "tags": []}, "type": "BasicTickFormatter", "id": "50b3634e-62e6-4eeb-bec7-e68f21ce0fb9"}, {"subtype": "Chart", "type": "Plot", "id": "03813c9d-f7c2-448c-83da-a990dc513852", "attributes": {"x_range": {"type": "FactorRange", "id": "4075fd8a-8cba-43d4-9ed4-5f9d6c11c243"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "65e5fed7-2cd5-452f-bc82-470486b6c448"}, "title": "Thinking of running automated tests, rank the following potential improvements in terms of their impact on your productivity. [Determine and run relevant tests based on what source files have been modified]", "renderers": [{"type": "CategoricalAxis", "id": "cc213278-6ab1-4b97-bf57-8728ee6be190"}, {"type": "LinearAxis", "id": "ac8219de-0f1b-4a01-8627-9924732fe726"}, {"type": "Grid", "id": "4322613c-0fd9-47a1-b8ef-2cabb0faa4e3"}, {"type": "GlyphRenderer", "id": "eb240fdc-0e94-4085-a2f5-2af8172e7123"}, {"type": "GlyphRenderer", "id": "884025d4-58e2-4dbe-a9c0-486eaccc586d"}, {"type": "Legend", "id": "a2c9910c-673a-4333-bb4e-ec2cc4fc4783"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "6a6e7e71-9f43-401c-affb-7cda0c371e86"}, "plot_height": 560, "doc": null, "id": "03813c9d-f7c2-448c-83da-a990dc513852", "tools": [], "below": [{"type": "CategoricalAxis", "id": "cc213278-6ab1-4b97-bf57-8728ee6be190"}], "left": [{"type": "LinearAxis", "id": "ac8219de-0f1b-4a01-8627-9924732fe726"}]}}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A", "Extremely dissatisfied", "Below average", "Average", "Above average"], "doc": null, "tags": [], "id": "12502aa5-2f33-4cbf-b38a-10b14f85e2c8"}, "type": "FactorRange", "id": "12502aa5-2f33-4cbf-b38a-10b14f85e2c8"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2], "stackedPlatform": [0.0, 27.0, 22.5], "Platform": [0, 54, 45], "catFx-Team": ["All Other Responses:0.666666666667", "No:0.666666666667", "You can do that?!:0.666666666667"], "cat": ["All Other Responses", "No", "You can do that?!"], "midPlatform": [0.0, 27.0, 22.5], "width": [0.8, 0.8, 0.8], "zero": [2.0, 89.0, 107.0], "catPlatform": ["All Other Responses:0.333333333333", "No:0.333333333333", "You can do that?!:0.333333333333"], "stackedFx-Team": [1.0, 71.5, 76.0], "midFx-Team": [1.0, 17.5, 31.0], "Fx-Team": [2, 35, 62]}, "id": "cf852d61-c0cb-4b4e-8e9a-37d79be4d2ef"}, "type": "ColumnDataSource", "id": "cf852d61-c0cb-4b4e-8e9a-37d79be4d2ef"}, {"attributes": {"doc": null, "id": "0f665c9d-6eb6-4b04-96c2-1597b7f3ff33", "tags": []}, "type": "CategoricalTickFormatter", "id": "0f665c9d-6eb6-4b04-96c2-1597b7f3ff33"}, {"attributes": {"doc": null, "id": "33d25c89-37be-4bb5-a128-026f75a6e341", "tags": []}, "type": "CategoricalTicker", "id": "33d25c89-37be-4bb5-a128-026f75a6e341"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "03813c9d-f7c2-448c-83da-a990dc513852"}, "orientation": "top_left", "tags": [], "doc": null, "id": "a2c9910c-673a-4333-bb4e-ec2cc4fc4783", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "eb240fdc-0e94-4085-a2f5-2af8172e7123"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "884025d4-58e2-4dbe-a9c0-486eaccc586d"}]]]}, "type": "Legend", "id": "a2c9910c-673a-4333-bb4e-ec2cc4fc4783"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "971b2036-690d-49d8-bb9a-20aa6468fd55"}, "tags": [], "doc": null, "selection_glyph": null, "id": "c501575f-2f06-4901-b5a8-1f74b586b072", "glyph": {"type": "Rect", "id": "e5f2c75c-533b-4cea-ba27-e84f0d09fa3d"}}, "type": "GlyphRenderer", "id": "c501575f-2f06-4901-b5a8-1f74b586b072"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [5.0, 4.0, 5.0, 21.5, 10.0], "Platform": [10, 8, 10, 43, 20], "catFx-Team": ["All Other Responses:0.666666666667", "N/A:0.666666666667", "Below average:0.666666666667", "Average:0.666666666667", "Above average:0.666666666667"], "cat": ["All Other Responses", "N/A", "Below average", "Average", "Above average"], "midPlatform": [5.0, 4.0, 5.0, 21.5, 10.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [10.0, 13.0, 34.0, 78.0, 41.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A:0.333333333333", "Below average:0.333333333333", "Average:0.333333333333", "Above average:0.333333333333"], "stackedFx-Team": [10.0, 10.5, 22.0, 60.5, 30.5], "midFx-Team": [0.0, 2.5, 12.0, 17.5, 10.5], "Fx-Team": [0, 5, 24, 35, 21]}, "id": "ee636778-0f34-4f96-9084-1c1f38bf8e75"}, "type": "ColumnDataSource", "id": "ee636778-0f34-4f96-9084-1c1f38bf8e75"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2], "stackedPlatform": [2.0, 47.5], "Platform": [4, 95], "catFx-Team": ["No:0.666666666667", "Yes:0.666666666667"], "cat": ["No", "Yes"], "midPlatform": [2.0, 47.5], "width": [0.8, 0.8], "zero": [12.0, 186.0], "catPlatform": ["No:0.333333333333", "Yes:0.333333333333"], "stackedFx-Team": [8.0, 140.5], "midFx-Team": [4.0, 45.5], "Fx-Team": [8, 91]}, "id": "84cb5802-6b8a-4467-9fbb-2e6b47c12c3f"}, "type": "ColumnDataSource", "id": "84cb5802-6b8a-4467-9fbb-2e6b47c12c3f"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "f0491a87-8728-47a9-813c-3f2c0bd6a593"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "2db658a3-e62b-456d-86db-4a71a088c52e"}, "ticker": {"type": "BasicTicker", "id": "2f91d1e6-555b-438f-80b6-960a6bdb5cca"}, "id": "e505db49-3780-49fe-8be6-23a3048f14a9"}, "type": "LinearAxis", "id": "e505db49-3780-49fe-8be6-23a3048f14a9"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "a41d8170-3146-4a9f-b6ad-26f74de8fbf2"}, "tags": [], "doc": null, "selection_glyph": null, "id": "e4784dc7-cc51-4154-915e-232f176c81c9", "glyph": {"type": "Rect", "id": "dbbbd97b-5d77-4b59-a59a-0a46c7a8f5a8"}}, "type": "GlyphRenderer", "id": "e4784dc7-cc51-4154-915e-232f176c81c9"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [2.5, 13.0, 11.0, 10.0, 12.5], "Platform": [5, 26, 22, 20, 25], "catFx-Team": ["All Other Responses:0.666666666667", "N/A:0.666666666667", "Extremely dissatisfied:0.666666666667", "Below average:0.666666666667", "Average:0.666666666667"], "cat": ["All Other Responses", "N/A", "Extremely dissatisfied", "Below average", "Average"], "midPlatform": [2.5, 13.0, 11.0, 10.0, 12.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [7.0, 50.0, 43.0, 57.0, 38.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A:0.333333333333", "Extremely dissatisfied:0.333333333333", "Below average:0.333333333333", "Average:0.333333333333"], "stackedFx-Team": [6.0, 38.0, 32.5, 38.5, 31.5], "midFx-Team": [1.0, 12.0, 10.5, 18.5, 6.5], "Fx-Team": [2, 24, 21, 37, 13]}, "id": "802a6cfb-4f78-4f9f-9aaa-3f3c209c2bcf"}, "type": "ColumnDataSource", "id": "802a6cfb-4f78-4f9f-9aaa-3f3c209c2bcf"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "a7465520-7a1a-47a5-ba09-26802fad745e"}, "tags": [], "doc": null, "selection_glyph": null, "id": "55ba0371-5429-4799-9b79-604e45bf66e8", "glyph": {"type": "Rect", "id": "ab824824-2231-4cc1-86ce-963a739d2c8e"}}, "type": "GlyphRenderer", "id": "55ba0371-5429-4799-9b79-604e45bf66e8"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "a52cc6cd-e422-40a9-ae78-730bfa8ce91e"}, "type": "Rect", "id": "a52cc6cd-e422-40a9-ae78-730bfa8ce91e"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "48ed1c65-8836-42ae-b5e7-680b1ae23d0b"}, "tags": [], "doc": null, "selection_glyph": null, "id": "6f399c04-5800-4742-b3b0-ad52f43bf857", "glyph": {"type": "Rect", "id": "d8ad1c6e-6686-44ee-ad57-3dce8794d0c0"}}, "type": "GlyphRenderer", "id": "6f399c04-5800-4742-b3b0-ad52f43bf857"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "e375d48a-0962-4944-9ab9-5fe02305a048"}, "type": "BasicTicker", "id": "e375d48a-0962-4944-9ab9-5fe02305a048"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [5.0, 14.5, 11.5, 10.0, 7.5], "Platform": [10, 29, 23, 20, 15], "catFx-Team": ["N/A:0.666666666667", "1 = least impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "midPlatform": [5.0, 14.5, 11.5, 10.0, 7.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [28.0, 69.0, 47.0, 30.0, 20.0], "catPlatform": ["N/A:0.333333333333", "1 = least impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [19.0, 49.0, 35.0, 25.0, 17.5], "midFx-Team": [9.0, 20.0, 12.0, 5.0, 2.5], "Fx-Team": [18, 40, 24, 10, 5]}, "id": "c850e971-9b66-42bb-a73b-313cfe840897"}, "type": "ColumnDataSource", "id": "c850e971-9b66-42bb-a73b-313cfe840897"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "fb4a44d2-af38-421b-a06c-f11f846c6d9a"}, "type": "ToolEvents", "id": "fb4a44d2-af38-421b-a06c-f11f846c6d9a"}, {"attributes": {"callback": null, "factors": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "502bf098-e067-489d-b489-f661a99a0088"}, "type": "FactorRange", "id": "502bf098-e067-489d-b489-f661a99a0088"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "7eaee4bf-95ef-435c-8233-fad5a5b5d480"}, "tags": [], "doc": null, "selection_glyph": null, "id": "09f19681-1f00-4ce0-8aac-437f30dec614", "glyph": {"type": "Rect", "id": "c44c617c-ce42-4220-81b0-a42ed578f179"}}, "type": "GlyphRenderer", "id": "09f19681-1f00-4ce0-8aac-437f30dec614"}, {"subtype": "Chart", "type": "Plot", "id": "bdd8b704-d549-4ed7-8292-b7000d0f0d4c", "attributes": {"x_range": {"type": "FactorRange", "id": "1a43b58e-34ff-4461-9243-c8dceb23b272"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "2070ac3c-ead7-4811-a8de-15f72b8f9f4a"}, "title": "Please rate your satisfaction with the following items. [Mercurial (the tool)]", "renderers": [{"type": "CategoricalAxis", "id": "8d9f772a-75a0-4f5e-b874-bb63d1cb2cee"}, {"type": "LinearAxis", "id": "03e02524-1f2b-40de-b4ea-ee59aafc16fe"}, {"type": "Grid", "id": "de4b6485-a1ec-4bad-8f7d-321c3ef82092"}, {"type": "GlyphRenderer", "id": "d39e109c-0b2e-4163-89e6-e755f63ca85a"}, {"type": "GlyphRenderer", "id": "051bc62e-109f-48af-b3f8-550cf574581d"}, {"type": "Legend", "id": "eefa0ca1-7838-4397-9e3f-e09c4644888d"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "05e13dc5-3cc3-4267-86b7-d78b4aa9d073"}, "plot_height": 560, "doc": null, "id": "bdd8b704-d549-4ed7-8292-b7000d0f0d4c", "tools": [], "below": [{"type": "CategoricalAxis", "id": "8d9f772a-75a0-4f5e-b874-bb63d1cb2cee"}], "left": [{"type": "LinearAxis", "id": "03e02524-1f2b-40de-b4ea-ee59aafc16fe"}]}}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [0.0, 3.0, 16.0, 3.5, 5.5], "Platform": [0, 6, 32, 7, 11], "catFx-Team": ["All Other Responses:0.666666666667", "Custom Git commands or scripts to import and export commits from/to Mercurial clones:0.666666666667", "From GitHub:0.666666666667", "From git.mozilla.org:0.666666666667", "git-cinnabar:0.666666666667"], "cat": ["All Other Responses", "Custom Git commands or scripts to import and export commits from/to Mercurial clones", "From GitHub", "From git.mozilla.org", "git-cinnabar"], "midPlatform": [0.0, 3.0, 16.0, 3.5, 5.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [2.0, 14.0, 69.0, 12.0, 19.0], "catPlatform": ["All Other Responses:0.333333333333", "Custom Git commands or scripts to import and export commits from/to Mercurial clones:0.333333333333", "From GitHub:0.333333333333", "From git.mozilla.org:0.333333333333", "git-cinnabar:0.333333333333"], "stackedFx-Team": [1.0, 10.0, 50.5, 9.5, 15.0], "midFx-Team": [1.0, 4.0, 18.5, 2.5, 4.0], "Fx-Team": [2, 8, 37, 5, 8]}, "id": "61b3ce83-437a-4225-b654-7d82477958f7"}, "type": "ColumnDataSource", "id": "61b3ce83-437a-4225-b654-7d82477958f7"}, {"attributes": {"doc": null, "id": "4f162c02-ddbb-4377-9d67-826726e2a9e0", "tags": []}, "type": "BasicTickFormatter", "id": "4f162c02-ddbb-4377-9d67-826726e2a9e0"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [8.5, 3.5, 6.5, 9.5, 20.0], "Platform": [17, 7, 13, 19, 40], "catFx-Team": ["No impact / Not applicable:0.666666666667", "A little impact:0.666666666667", "Moderate impact:0.666666666667", "Significant impact:0.666666666667", "Tons of impact / Implement this ASAP:0.666666666667"], "cat": ["No impact / Not applicable", "A little impact", "Moderate impact", "Significant impact", "Tons of impact / Implement this ASAP"], "midPlatform": [8.5, 3.5, 6.5, 9.5, 20.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [35.0, 15.0, 18.0, 46.0, 77.0], "catPlatform": ["No impact / Not applicable:0.333333333333", "A little impact:0.333333333333", "Moderate impact:0.333333333333", "Significant impact:0.333333333333", "Tons of impact / Implement this ASAP:0.333333333333"], "stackedFx-Team": [26.0, 11.0, 15.5, 32.5, 58.5], "midFx-Team": [9.0, 4.0, 2.5, 13.5, 18.5], "Fx-Team": [18, 8, 5, 27, 37]}, "id": "abff72f7-88d4-4678-9306-1b63af79965d"}, "type": "ColumnDataSource", "id": "abff72f7-88d4-4678-9306-1b63af79965d"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "7d986d53-ed95-4cfc-a8d2-df18e2915763"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "82183112-5207-4b8e-8691-1cf742c4726c"}, "ticker": {"type": "CategoricalTicker", "id": "362f7f6f-f501-49e4-8875-d69222a567c7"}, "id": "1ff266d1-08d4-40a4-862c-fe11a8ce02b3"}, "type": "CategoricalAxis", "id": "1ff266d1-08d4-40a4-862c-fe11a8ce02b3"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "d1f18933-480b-4a5f-961f-0e399c44e1b5"}, "type": "ToolEvents", "id": "d1f18933-480b-4a5f-961f-0e399c44e1b5"}, {"attributes": {"doc": null, "id": "a0a8779e-1e7b-4ca3-b1ec-e2dfaa2caafe", "tags": []}, "type": "CategoricalTicker", "id": "a0a8779e-1e7b-4ca3-b1ec-e2dfaa2caafe"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "71e4746f-9dd0-432e-8cd6-63dc01dda746"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "b8d25c36-a54f-44ed-a3b5-7d755da8c6d0"}, "ticker": {"type": "CategoricalTicker", "id": "b86e3391-d444-4dee-9ade-a6a2662bcd8f"}, "id": "9218d6bb-097e-43aa-b28d-4376bc430274"}, "type": "CategoricalAxis", "id": "9218d6bb-097e-43aa-b28d-4376bc430274"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "96cc484c-8b00-4952-812c-ee8d020551a4"}, "type": "BasicTicker", "id": "96cc484c-8b00-4952-812c-ee8d020551a4"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "d0d308b0-25e7-44c6-a48c-2a7590f5993a"}, "orientation": "top_left", "tags": [], "doc": null, "id": "dd7f0d1f-504b-46f3-b876-d1c4a7154e74", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "c2abcb8f-edfe-4012-8f10-eca26ab739b4"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "f259c54d-a3aa-4d02-b731-1611fecde1dc"}]]]}, "type": "Legend", "id": "dd7f0d1f-504b-46f3-b876-d1c4a7154e74"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "1bae94c3-cb4f-4af0-aaea-500571dfbcbb"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "84f10ece-a784-42fb-8c97-b85b37fdddb6"}, "id": "93ed74be-2869-4f53-83ce-2da35232382b"}, "type": "Grid", "id": "93ed74be-2869-4f53-83ce-2da35232382b"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A", "About the same", "Gotten better"], "doc": null, "tags": [], "id": "3cb228a1-656a-489c-971a-a27c46e975e4"}, "type": "FactorRange", "id": "3cb228a1-656a-489c-971a-a27c46e975e4"}, {"attributes": {"callback": null, "factors": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "63ae5e98-18d3-4104-b0b8-b63b2b97fa9e"}, "type": "FactorRange", "id": "63ae5e98-18d3-4104-b0b8-b63b2b97fa9e"}, {"attributes": {"doc": null, "id": "55c5ca16-0d53-464d-9714-d5c256c335e4", "tags": []}, "type": "CategoricalTicker", "id": "55c5ca16-0d53-464d-9714-d5c256c335e4"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "809016c3-2f8e-4771-aa32-f933297dcf2e"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "def00a17-91dc-4ad5-98ba-9661cf6e013d"}, "ticker": {"type": "CategoricalTicker", "id": "087d5de9-2538-44ae-8632-9a461ed0af1e"}, "id": "a9cde61f-c114-4528-a103-0da0cd08a615"}, "type": "CategoricalAxis", "id": "a9cde61f-c114-4528-a103-0da0cd08a615"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "85eee339-71dd-4b32-885e-6e841a58b5b8"}, "orientation": "top_left", "tags": [], "doc": null, "id": "99997b77-3f6a-45b0-85d5-f8097e237ed8", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "ed87681b-1990-4a87-9f23-565eb53e3494"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "654092f1-e898-42ba-a645-20f639df3658"}]]]}, "type": "Legend", "id": "99997b77-3f6a-45b0-85d5-f8097e237ed8"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "7dcebdb6-615b-4277-82d4-d72c573011a1"}, "orientation": "top_left", "tags": [], "doc": null, "id": "2f409cef-035a-4f3f-a562-d4474942632d", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "5fd01adc-f2c4-435c-a107-82a812aa88cd"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "be6a00c2-b158-481c-8a35-0fe693a82974"}]]]}, "type": "Legend", "id": "2f409cef-035a-4f3f-a562-d4474942632d"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "4ad592dc-dde0-4ae1-ba9a-5421ac8071d4"}, "type": "BasicTicker", "id": "4ad592dc-dde0-4ae1-ba9a-5421ac8071d4"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "b080480d-2072-46de-8efa-598cc09f3801"}, "type": "BasicTicker", "id": "b080480d-2072-46de-8efa-598cc09f3801"}, {"attributes": {"doc": null, "id": "f4d6f242-a51d-4384-9096-9381c0b65171", "tags": []}, "type": "CategoricalTicker", "id": "f4d6f242-a51d-4384-9096-9381c0b65171"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "0438e339-face-4074-9019-77d01fae3a6e"}, "tags": [], "doc": null, "selection_glyph": null, "id": "a40e44bc-6c84-44dc-b68d-62727418b20b", "glyph": {"type": "Rect", "id": "961ada31-53fb-4c50-b546-0cd3fca4b53a"}}, "type": "GlyphRenderer", "id": "a40e44bc-6c84-44dc-b68d-62727418b20b"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "6b426b55-aa5c-4c49-b070-df9877513b4a"}, "type": "Rect", "id": "6b426b55-aa5c-4c49-b070-df9877513b4a"}, {"attributes": {"end": 38.5, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "2a3b4c77-b281-4de6-a41e-f4a625aa94cf"}, "type": "Range1d", "id": "2a3b4c77-b281-4de6-a41e-f4a625aa94cf"}, {"subtype": "Chart", "type": "Plot", "id": "ff29212c-b360-400d-9981-08847427a774", "attributes": {"x_range": {"type": "FactorRange", "id": "781d9dc3-3723-4aae-9d0e-7c72758ba69a"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "7400d4f8-dd4d-4211-b1af-5881d8ddb337"}, "title": "Rank the following issues according to how they impact your ability to debug tests using try. [Takes too long / don\u2019t like context switching]", "renderers": [{"type": "CategoricalAxis", "id": "3e85d8f1-b767-48d6-94aa-1da12ac94aa7"}, {"type": "LinearAxis", "id": "b70879c0-7a2c-46f9-98ab-d57554390748"}, {"type": "Grid", "id": "068e58bf-519c-4ce4-b93c-88a6e75c0841"}, {"type": "GlyphRenderer", "id": "bbd1d6e5-3711-4152-bfe0-74324b9d6223"}, {"type": "GlyphRenderer", "id": "e0ffab6e-e60f-49e6-9cfc-d9055207546a"}, {"type": "Legend", "id": "a54d395d-789e-4e67-a503-014e8d2e8a70"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "bc94c9e4-069f-49e6-8179-d98bb2fc2ada"}, "plot_height": 560, "doc": null, "id": "ff29212c-b360-400d-9981-08847427a774", "tools": [], "below": [{"type": "CategoricalAxis", "id": "3e85d8f1-b767-48d6-94aa-1da12ac94aa7"}], "left": [{"type": "LinearAxis", "id": "b70879c0-7a2c-46f9-98ab-d57554390748"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fb35fd90-f4e1-4990-9a8e-8a7fe92f8c1d"}, "orientation": "top_left", "tags": [], "doc": null, "id": "f25a79d3-be8e-417c-be60-5b7b51099d32", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "37ae07a0-2230-4e70-95c2-d5b7835b9624"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "8127be8d-620e-487c-b3dd-740d6b283dc2"}]]]}, "type": "Legend", "id": "f25a79d3-be8e-417c-be60-5b7b51099d32"}, {"attributes": {"end": 57.2, "callback": null, "doc": null, "tags": [], "start": 0, "id": "f5ec5fb5-a8db-4165-b9ee-1d422d5bc8b9"}, "type": "Range1d", "id": "f5ec5fb5-a8db-4165-b9ee-1d422d5bc8b9"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "31a2cbb8-ff78-48bc-b678-5eb557b71670"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "cffd5b30-b161-496f-aca3-7efa97f83d1d"}, "id": "4bce7c8a-3445-4110-a653-639f36c1e0c3"}, "type": "Grid", "id": "4bce7c8a-3445-4110-a653-639f36c1e0c3"}, {"attributes": {"callback": null, "factors": ["1 - no impact", "2 - little impact", "3 - a fair amount of impact", "4 - a significant amount of impact", "5 - an extremely frustrating amount of impact"], "doc": null, "tags": [], "id": "b835e215-281e-4a7d-92b7-b783ab21d46e"}, "type": "FactorRange", "id": "b835e215-281e-4a7d-92b7-b783ab21d46e"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "1ad8e43e-3591-44c6-ac87-a667a2afa698"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "25984de7-3262-4aca-8a71-1fda4ebfb013"}, "id": "2cf9456f-f76d-42bd-a558-60f46a3e9ecb"}, "type": "Grid", "id": "2cf9456f-f76d-42bd-a558-60f46a3e9ecb"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "f8ed4e08-9656-4a0d-963b-60e262081fc2"}, "type": "Rect", "id": "f8ed4e08-9656-4a0d-963b-60e262081fc2"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [1.0, 3.5, 4.0, 2.5, 8.0, 25.5, 5.0], "Platform": [2, 7, 8, 5, 16, 51, 10], "catFx-Team": ["All Other Responses:0.666666666667", "N/A or I'm not sure:0.666666666667", "It sucks a little:0.666666666667", "It's neither bad nor good:0.666666666667", "It's OK, I guess:0.666666666667", "It's pretty good:0.666666666667", "It's awesome!:0.666666666667"], "cat": ["All Other Responses", "N/A or I'm not sure", "It sucks a little", "It's neither bad nor good", "It's OK, I guess", "It's pretty good", "It's awesome!"], "midPlatform": [1.0, 3.5, 4.0, 2.5, 8.0, 25.5, 5.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [15.0, 7.0, 18.0, 10.0, 48.0, 83.0, 15.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A or I'm not sure:0.333333333333", "It sucks a little:0.333333333333", "It's neither bad nor good:0.333333333333", "It's OK, I guess:0.333333333333", "It's pretty good:0.333333333333", "It's awesome!:0.333333333333"], "stackedFx-Team": [8.5, 7.0, 13.0, 7.5, 32.0, 67.0, 12.5], "midFx-Team": [6.5, 0.0, 5.0, 2.5, 16.0, 16.0, 2.5], "Fx-Team": [13, 0, 10, 5, 32, 32, 5]}, "id": "c7e2bdb3-9671-4ef0-8632-c134346d7b97"}, "type": "ColumnDataSource", "id": "c7e2bdb3-9671-4ef0-8632-c134346d7b97"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "eda80728-93be-4486-98b3-c069903005f3"}, "type": "Rect", "id": "eda80728-93be-4486-98b3-c069903005f3"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "acb6eec7-3b9e-45f3-93d1-40d887bd6d3a"}, "tags": [], "doc": null, "selection_glyph": null, "id": "a4ac14d1-a65f-4c00-a16f-f68500516e65", "glyph": {"type": "Rect", "id": "e33849cd-3fb1-42f3-b789-1c52fad6040d"}}, "type": "GlyphRenderer", "id": "a4ac14d1-a65f-4c00-a16f-f68500516e65"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "9bbf9116-a970-4daf-85df-2a53f9054b6c"}, "type": "Rect", "id": "9bbf9116-a970-4daf-85df-2a53f9054b6c"}, {"subtype": "Chart", "type": "Plot", "id": "0c767648-5c71-4487-8915-b4b03bf0395b", "attributes": {"x_range": {"type": "FactorRange", "id": "3fe0e904-361d-4a9f-99fa-418513206b96"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "daad806d-5309-4c6e-9e8e-3ccd1e4364cf"}, "title": "Why do you prefer Mercurial over Git? (Check all that apply)", "renderers": [{"type": "CategoricalAxis", "id": "1a75a7a6-c3aa-482c-bbb6-ce8b35a7bcd8"}, {"type": "LinearAxis", "id": "89ff1a4a-cf06-47fc-808a-decd2000ca41"}, {"type": "Grid", "id": "bd7a3cfa-44d0-471e-a85c-327ce4f52fa0"}, {"type": "GlyphRenderer", "id": "14424d79-4ac8-44f4-8151-b5a3beca8b82"}, {"type": "GlyphRenderer", "id": "11257f37-258d-4c29-b511-0d53533226eb"}, {"type": "Legend", "id": "f8d5f4e8-c1f7-47df-bf53-4ea865d1a3f0"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "1358371b-8e52-459c-9ecb-e01a323854ec"}, "plot_height": 560, "doc": null, "id": "0c767648-5c71-4487-8915-b4b03bf0395b", "tools": [], "below": [{"type": "CategoricalAxis", "id": "1a75a7a6-c3aa-482c-bbb6-ce8b35a7bcd8"}], "left": [{"type": "LinearAxis", "id": "89ff1a4a-cf06-47fc-808a-decd2000ca41"}]}}, {"attributes": {"doc": null, "id": "b769f65b-8a2b-457d-a30c-250db06beecd", "tags": []}, "type": "CategoricalTickFormatter", "id": "b769f65b-8a2b-457d-a30c-250db06beecd"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "c1b6d97c-b795-4308-9a69-c61c7865ae6b"}, "tags": [], "doc": null, "selection_glyph": null, "id": "cb0b63dd-fa0d-40f5-b14b-9dc3ea306af2", "glyph": {"type": "Rect", "id": "4c264af7-d7f4-4877-9b25-26540446672e"}}, "type": "GlyphRenderer", "id": "cb0b63dd-fa0d-40f5-b14b-9dc3ea306af2"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "317892f8-6166-4bb6-9515-4494ba642ae9"}, "tags": [], "doc": null, "selection_glyph": null, "id": "e455aafd-53bb-490d-a5bf-d2e9a62ad97c", "glyph": {"type": "Rect", "id": "affd1640-a746-46f2-9d29-5ac4390e3075"}}, "type": "GlyphRenderer", "id": "e455aafd-53bb-490d-a5bf-d2e9a62ad97c"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "7aeb5032-3b6c-441e-b557-39a0900c986f"}, "type": "ToolEvents", "id": "7aeb5032-3b6c-441e-b557-39a0900c986f"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "08152ded-c646-4f6a-8d6b-ba0e8e69c0e8"}, "tags": [], "doc": null, "selection_glyph": null, "id": "3c9234cd-df12-4b58-9410-f7d1805bf2ed", "glyph": {"type": "Rect", "id": "5c189153-e981-4f29-8ef7-e0eb5ae084ee"}}, "type": "GlyphRenderer", "id": "3c9234cd-df12-4b58-9410-f7d1805bf2ed"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "982450d2-3281-496c-8d55-9d279807bfd4"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "f4f9b629-2f33-4975-9583-f3f855b10e01"}, "ticker": {"type": "CategoricalTicker", "id": "d96316d9-fcff-49e5-99d0-b13fda07dfea"}, "id": "0f2227f2-bf7c-4922-b70d-741559a66ccd"}, "type": "CategoricalAxis", "id": "0f2227f2-bf7c-4922-b70d-741559a66ccd"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "6e4ddeb8-8378-4f13-96bf-88f321ef0e59"}, "tags": [], "doc": null, "selection_glyph": null, "id": "e5317421-53a2-47ef-9282-319af5d4a271", "glyph": {"type": "Rect", "id": "cede2d46-bc79-4641-b404-e38d39899c5f"}}, "type": "GlyphRenderer", "id": "e5317421-53a2-47ef-9282-319af5d4a271"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "f01fbe93-2bb4-4532-b71c-816df42230e8"}, "type": "BasicTicker", "id": "f01fbe93-2bb4-4532-b71c-816df42230e8"}, {"subtype": "Chart", "type": "Plot", "id": "563861ed-4b30-4bb1-ad40-24439fe897a8", "attributes": {"x_range": {"type": "FactorRange", "id": "a56fce25-9b44-46f5-a3d8-49f66179357c"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "2e8e8b43-8316-404b-b504-948de0a7224a"}, "title": "Please rate your satisfaction with the following items. [hg.mozilla.org web interface performance]", "renderers": [{"type": "CategoricalAxis", "id": "6f8e6482-dc4d-43d2-8b1c-2084cd42564e"}, {"type": "LinearAxis", "id": "f6ca85fa-37aa-400a-b6a8-2a51d4c1af53"}, {"type": "Grid", "id": "6b995d9b-e9d2-4ae7-87ef-b09db15ffc27"}, {"type": "GlyphRenderer", "id": "01ede30c-5ebd-4f3d-a849-ffa98f573c50"}, {"type": "GlyphRenderer", "id": "54ea631b-29fa-46a3-a8f6-36bc29d2b1a4"}, {"type": "Legend", "id": "143786f8-e01b-4252-b2d5-80d4aa70f745"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "59cb7714-8b4b-406c-bef2-d2f5852cf288"}, "plot_height": 560, "doc": null, "id": "563861ed-4b30-4bb1-ad40-24439fe897a8", "tools": [], "below": [{"type": "CategoricalAxis", "id": "6f8e6482-dc4d-43d2-8b1c-2084cd42564e"}], "left": [{"type": "LinearAxis", "id": "f6ca85fa-37aa-400a-b6a8-2a51d4c1af53"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "490a807f-dfed-464f-bc7a-59571a1b4794"}, "orientation": "top_left", "tags": [], "doc": null, "id": "0f84c784-bcdf-4d50-bc0b-009a3557f529", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "1a1e2f16-7052-41a5-93be-f9ebf39cadeb"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "a3899b43-abbd-482d-b27b-413ae8c5d172"}]]]}, "type": "Legend", "id": "0f84c784-bcdf-4d50-bc0b-009a3557f529"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "Once every few months", "Monthly"], "doc": null, "tags": [], "id": "79a45279-3ef4-4885-87e9-0238b5e1f854"}, "type": "FactorRange", "id": "79a45279-3ef4-4885-87e9-0238b5e1f854"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A", "Extremely dissatisfied", "Below average", "Average", "Above average"], "doc": null, "tags": [], "id": "2bd985c5-ce2f-4b92-b2d1-305bceeacd18"}, "type": "FactorRange", "id": "2bd985c5-ce2f-4b92-b2d1-305bceeacd18"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "Attempt to reproduce and debug locally until you figure it out", "Push to try and context switch to something else while you wait for results"], "doc": null, "tags": [], "id": "374e0dc6-8a74-41aa-a855-db115754c216"}, "type": "FactorRange", "id": "374e0dc6-8a74-41aa-a855-db115754c216"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "4b0f98bd-9e04-47d9-8bd8-694de028404a"}, "tags": [], "doc": null, "selection_glyph": null, "id": "def04223-5734-4770-b882-24870046e438", "glyph": {"type": "Rect", "id": "44cacf6e-20fd-42f5-ba8c-4a4655406c2c"}}, "type": "GlyphRenderer", "id": "def04223-5734-4770-b882-24870046e438"}, {"attributes": {"callback": null, "factors": ["N/A", "1 = little impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "e812b384-00c9-40ee-8c62-f00ac257918a"}, "type": "FactorRange", "id": "e812b384-00c9-40ee-8c62-f00ac257918a"}, {"attributes": {"callback": null, "factors": ["1 - no impact", "2 - little impact", "3 - a fair amount of impact", "4 - a significant amount of impact", "5 - an extremely frustrating amount of impact"], "doc": null, "tags": [], "id": "e0d07258-547d-42e5-b95b-e401ac564992"}, "type": "FactorRange", "id": "e0d07258-547d-42e5-b95b-e401ac564992"}, {"attributes": {"end": 49.50000000000001, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "57c6f56b-2240-46f6-b436-ba2691530ad9"}, "type": "Range1d", "id": "57c6f56b-2240-46f6-b436-ba2691530ad9"}, {"attributes": {"doc": null, "id": "a1a4293d-1dec-442c-851b-6ff787d07915", "tags": []}, "type": "CategoricalTicker", "id": "a1a4293d-1dec-442c-851b-6ff787d07915"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "e63893db-7b85-4e6e-9a32-56a15685003c"}, "type": "Rect", "id": "e63893db-7b85-4e6e-9a32-56a15685003c"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "cf261a56-8e23-44e2-b5cf-587e24ae8017"}, "type": "Rect", "id": "cf261a56-8e23-44e2-b5cf-587e24ae8017"}, {"attributes": {"doc": null, "id": "81ae1e30-ebc1-48e5-aabc-d33a7e73b5ec", "tags": []}, "type": "CategoricalTicker", "id": "81ae1e30-ebc1-48e5-aabc-d33a7e73b5ec"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "955f2852-d3bf-44b8-821d-e850ece60456"}, "type": "ToolEvents", "id": "955f2852-d3bf-44b8-821d-e850ece60456"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "5fdfb570-1e90-4436-a17b-658c65a11cb3"}, "type": "Rect", "id": "5fdfb570-1e90-4436-a17b-658c65a11cb3"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "03d28133-060e-4caf-b1ae-ad92f337226e"}, "tags": [], "doc": null, "selection_glyph": null, "id": "a0ed31f1-bfa2-43e1-8add-4b1340290707", "glyph": {"type": "Rect", "id": "7ee615f8-ba32-4ee9-b2c9-363b9971fbcd"}}, "type": "GlyphRenderer", "id": "a0ed31f1-bfa2-43e1-8add-4b1340290707"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ff29212c-b360-400d-9981-08847427a774"}, "orientation": "top_left", "tags": [], "doc": null, "id": "a54d395d-789e-4e67-a503-014e8d2e8a70", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "bbd1d6e5-3711-4152-bfe0-74324b9d6223"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "e0ffab6e-e60f-49e6-9cfc-d9055207546a"}]]]}, "type": "Legend", "id": "a54d395d-789e-4e67-a503-014e8d2e8a70"}, {"attributes": {"end": 39.6, "callback": null, "doc": null, "tags": [], "start": 0, "id": "2070ac3c-ead7-4811-a8de-15f72b8f9f4a"}, "type": "Range1d", "id": "2070ac3c-ead7-4811-a8de-15f72b8f9f4a"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "db85f360-0ea5-4db1-ab2c-b79cfa1beeb3"}, "orientation": "top_left", "tags": [], "doc": null, "id": "7dcd1bae-fafd-40a6-b113-997dabaa3427", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "4a7d09af-35a8-476a-8007-ff4ec089b002"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "809a217a-53b8-4df6-af1b-46a55d1c7360"}]]]}, "type": "Legend", "id": "7dcd1bae-fafd-40a6-b113-997dabaa3427"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "eba32c5d-7f69-48a8-b532-9b2383b6d623"}, "type": "ToolEvents", "id": "eba32c5d-7f69-48a8-b532-9b2383b6d623"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fe4dde56-d69e-4fb0-aaf6-aaa62faafa93"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "e4189bbe-2255-461f-870b-cb22e7be3b76"}, "id": "53c34a11-dd6a-4235-be71-b1c2daa7ba15"}, "type": "Grid", "id": "53c34a11-dd6a-4235-be71-b1c2daa7ba15"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "1ba4cfb9-25c8-4cc7-a90b-a70e93b75563"}, "type": "BasicTicker", "id": "1ba4cfb9-25c8-4cc7-a90b-a70e93b75563"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "8afd769f-16ba-4a4f-b632-ab2e17ed3fa5"}, "type": "BasicTicker", "id": "8afd769f-16ba-4a4f-b632-ab2e17ed3fa5"}, {"attributes": {"end": 52.800000000000004, "callback": null, "doc": null, "tags": [], "start": 0, "id": "835a49c9-796a-4303-88bc-326cb9966620"}, "type": "Range1d", "id": "835a49c9-796a-4303-88bc-326cb9966620"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "9ce18afe-51f4-4d99-9018-29ab6ac59ea0"}, "tags": [], "doc": null, "selection_glyph": null, "id": "d4de357a-2672-4b84-86b2-61c6212c19f8", "glyph": {"type": "Rect", "id": "e601f825-86a2-4370-ae3c-e4154550503c"}}, "type": "GlyphRenderer", "id": "d4de357a-2672-4b84-86b2-61c6212c19f8"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "84738b33-a417-4be7-8e50-69f0bfe14e87"}, "tags": [], "doc": null, "selection_glyph": null, "id": "fbd9d931-9768-4b11-9069-f0ecda5cfbc3", "glyph": {"type": "Rect", "id": "57ee450d-a3f6-418f-8c35-0b14e66febce"}}, "type": "GlyphRenderer", "id": "fbd9d931-9768-4b11-9069-f0ecda5cfbc3"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "047c1b5e-b1e2-4ec8-879c-81ae48cb24f6"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "3a967ccf-e55b-48d9-a4af-83e3fc01b0ba"}, "id": "401c446d-28d4-41af-98a3-eace7109b0c0"}, "type": "Grid", "id": "401c446d-28d4-41af-98a3-eace7109b0c0"}, {"attributes": {"end": 59.400000000000006, "callback": null, "doc": null, "tags": [], "start": 0, "id": "7400d4f8-dd4d-4211-b1af-5881d8ddb337"}, "type": "Range1d", "id": "7400d4f8-dd4d-4211-b1af-5881d8ddb337"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "9ed1e19e-0adf-4d03-a58a-3c5954f3ac8c"}, "type": "Rect", "id": "9ed1e19e-0adf-4d03-a58a-3c5954f3ac8c"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "5ce90c58-b60f-497f-8067-cce45c8758d7"}, "type": "Rect", "id": "5ce90c58-b60f-497f-8067-cce45c8758d7"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "e329563d-7487-4cc9-a7a1-1d0665bf4881"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "b59c15be-8372-48d3-b8e1-5e3b6afdcc0e"}, "id": "7ccde449-1597-4440-8d61-60e8a1d81dfc"}, "type": "Grid", "id": "7ccde449-1597-4440-8d61-60e8a1d81dfc"}, {"attributes": {"callback": null, "factors": ["No", "Yes", "You can do that?!"], "doc": null, "tags": [], "id": "3472482d-ef55-419b-9dca-a410cba813c9"}, "type": "FactorRange", "id": "3472482d-ef55-419b-9dca-a410cba813c9"}, {"subtype": "Chart", "type": "Plot", "id": "5469849f-877c-4ea4-81ec-eec6402d4391", "attributes": {"x_range": {"type": "FactorRange", "id": "89f3e248-f2e9-4b76-b05f-5261a0f50275"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "835a49c9-796a-4303-88bc-326cb9966620"}, "title": "Which version control tool do you prefer?", "renderers": [{"type": "CategoricalAxis", "id": "39030422-cc59-4d91-8646-0456d2e780f7"}, {"type": "LinearAxis", "id": "c3a762ab-2ddc-45f4-98a5-5bb19688d907"}, {"type": "Grid", "id": "18e3c02e-4cc0-4505-a5e6-d1bf12d56285"}, {"type": "GlyphRenderer", "id": "7242abcf-45cc-47e5-a63b-164f5c5bfc5e"}, {"type": "GlyphRenderer", "id": "433587d2-27b0-4d73-97b1-ab15046f4193"}, {"type": "Legend", "id": "e6b16188-d9a8-4566-b5f3-f747d103c94b"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "3f601b1d-444e-4134-bcb7-7997449b186d"}, "plot_height": 560, "doc": null, "id": "5469849f-877c-4ea4-81ec-eec6402d4391", "tools": [], "below": [{"type": "CategoricalAxis", "id": "39030422-cc59-4d91-8646-0456d2e780f7"}], "left": [{"type": "LinearAxis", "id": "c3a762ab-2ddc-45f4-98a5-5bb19688d907"}]}}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "a26acfb9-55ab-4534-806b-963a90d45e2f"}, "tags": [], "doc": null, "selection_glyph": null, "id": "8ac35ffb-eb10-4106-896a-faf4c02ef9e9", "glyph": {"type": "Rect", "id": "1049e633-3343-4f43-97c5-22be686b09e9"}}, "type": "GlyphRenderer", "id": "8ac35ffb-eb10-4106-896a-faf4c02ef9e9"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "aafb0ab7-d0d6-4cca-b545-b71418c261ec"}, "type": "Rect", "id": "aafb0ab7-d0d6-4cca-b545-b71418c261ec"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "1 = least impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "b1e0bf99-6853-4e51-95fc-f1b146d74257"}, "type": "FactorRange", "id": "b1e0bf99-6853-4e51-95fc-f1b146d74257"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A", "Below average", "Average", "Above average"], "doc": null, "tags": [], "id": "3bbf6903-597e-47e6-a0f7-1ebdc3143f65"}, "type": "FactorRange", "id": "3bbf6903-597e-47e6-a0f7-1ebdc3143f65"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2], "stackedPlatform": [1.0, 32.0, 41.0], "Platform": [2, 64, 82], "catFx-Team": ["All Other Responses:0.666666666667", "Git:0.666666666667", "Mercurial:0.666666666667"], "cat": ["All Other Responses", "Git", "Mercurial"], "midPlatform": [1.0, 32.0, 41.0], "width": [0.8, 0.8, 0.8], "zero": [4.0, 131.0, 157.0], "catPlatform": ["All Other Responses:0.333333333333", "Git:0.333333333333", "Mercurial:0.333333333333"], "stackedFx-Team": [3.0, 97.5, 119.5], "midFx-Team": [1.0, 33.5, 37.5], "Fx-Team": [2, 67, 75]}, "id": "56be1325-b342-4fd3-a6b0-7c2ed769c406"}, "type": "ColumnDataSource", "id": "56be1325-b342-4fd3-a6b0-7c2ed769c406"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [2.0, 10.0, 13.0, 15.0, 9.0], "Platform": [4, 20, 26, 30, 18], "catFx-Team": ["All Other Responses:0.666666666667", "1 = least impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["All Other Responses", "1 = least impact", "2", "3", "4 = most impact"], "midPlatform": [2.0, 10.0, 13.0, 15.0, 9.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [4.0, 52.0, 53.0, 54.0, 34.0], "catPlatform": ["All Other Responses:0.333333333333", "1 = least impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [4.0, 36.0, 39.5, 42.0, 26.0], "midFx-Team": [0.0, 16.0, 13.5, 12.0, 8.0], "Fx-Team": [0, 32, 27, 24, 16]}, "id": "717a6a3d-1c3f-44f3-939b-4ad87f690fea"}, "type": "ColumnDataSource", "id": "717a6a3d-1c3f-44f3-939b-4ad87f690fea"}, {"attributes": {"doc": null, "id": "925bdcbe-0218-4281-87fd-f7572c022b84", "tags": []}, "type": "CategoricalTickFormatter", "id": "925bdcbe-0218-4281-87fd-f7572c022b84"}, {"attributes": {"doc": null, "id": "a37f3ba5-7bef-4866-9693-7400672a6a63", "tags": []}, "type": "CategoricalTickFormatter", "id": "a37f3ba5-7bef-4866-9693-7400672a6a63"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "62944075-58c8-42a5-a355-808516772de9"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "6a6c7e55-2daa-4e3a-a4b0-247e9435a0fd"}, "ticker": {"type": "CategoricalTicker", "id": "53143c1b-c77b-4dde-b2e4-188bbfd603ee"}, "id": "52e6dbe8-f3fb-4ba3-80b5-02a420317a49"}, "type": "CategoricalAxis", "id": "52e6dbe8-f3fb-4ba3-80b5-02a420317a49"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "ddee9c64-b4c3-4e43-b547-3847db61db89"}, "type": "Rect", "id": "ddee9c64-b4c3-4e43-b547-3847db61db89"}, {"attributes": {"callback": null, "factors": ["N/A", "1 = least impactful", "2", "3", "4 = most impactful"], "doc": null, "tags": [], "id": "aaa59472-ba0d-4f87-ab0b-78ee27cb56fb"}, "type": "FactorRange", "id": "aaa59472-ba0d-4f87-ab0b-78ee27cb56fb"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "08d112df-cc2f-434b-bc72-4b270fe5903f"}, "orientation": "top_left", "tags": [], "doc": null, "id": "eacc092f-21d4-4a1d-a2e1-c9ed0a717511", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "0f47d564-94ca-47ac-8071-8720a01dd72e"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "f4455831-b6a8-44ba-b159-b3d311943730"}]]]}, "type": "Legend", "id": "eacc092f-21d4-4a1d-a2e1-c9ed0a717511"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2], "stackedPlatform": [0.5, 19.0, 39.5], "Platform": [1, 38, 79], "catFx-Team": ["All Other Responses:0.666666666667", "Git:0.666666666667", "Mercurial:0.666666666667"], "cat": ["All Other Responses", "Git", "Mercurial"], "midPlatform": [0.5, 19.0, 39.5], "width": [0.8, 0.8, 0.8], "zero": [3.0, 75.0, 154.0], "catPlatform": ["All Other Responses:0.333333333333", "Git:0.333333333333", "Mercurial:0.333333333333"], "stackedFx-Team": [2.0, 56.5, 116.5], "midFx-Team": [1.0, 18.5, 37.5], "Fx-Team": [2, 37, 75]}, "id": "eb7096e4-cbcc-447c-b2d8-07f730c8b29f"}, "type": "ColumnDataSource", "id": "eb7096e4-cbcc-447c-b2d8-07f730c8b29f"}, {"attributes": {"doc": null, "id": "fbd211a4-c410-45a1-93a5-632207ab414d", "tags": []}, "type": "BasicTickFormatter", "id": "fbd211a4-c410-45a1-93a5-632207ab414d"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "a41d8170-3146-4a9f-b6ad-26f74de8fbf2"}, "tags": [], "doc": null, "selection_glyph": null, "id": "c24d19d1-6fc0-4c46-b8e7-d6f339c0364e", "glyph": {"type": "Rect", "id": "2fcff337-0b19-48f7-90d6-b153f095dd3c"}}, "type": "GlyphRenderer", "id": "c24d19d1-6fc0-4c46-b8e7-d6f339c0364e"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "188bb62a-1536-4926-b517-f8ada39606bd"}, "tags": [], "doc": null, "selection_glyph": null, "id": "ab9f4f83-68f3-4cca-a6e4-6d62c59c75e2", "glyph": {"type": "Rect", "id": "c1ec58fd-06ca-4096-91c8-7014b66a001c"}}, "type": "GlyphRenderer", "id": "ab9f4f83-68f3-4cca-a6e4-6d62c59c75e2"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "50664afb-1e66-41d0-8d0a-46dfe50cfa77"}, "type": "ToolEvents", "id": "50664afb-1e66-41d0-8d0a-46dfe50cfa77"}, {"attributes": {"doc": null, "id": "7397645a-b538-4a7e-872d-e5b3f98274eb", "tags": []}, "type": "CategoricalTickFormatter", "id": "7397645a-b538-4a7e-872d-e5b3f98274eb"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "5d60df04-f52d-42c3-b6bf-f9d9fe614c4d"}, "type": "Rect", "id": "5d60df04-f52d-42c3-b6bf-f9d9fe614c4d"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "7aa85ca2-4fbf-4ed8-8b6e-40101e2ca4c2"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "1167e2db-ba7b-48c1-a22f-ecbb227219a3"}, "id": "be954906-49a8-49eb-8be4-8f314a2ddc41"}, "type": "Grid", "id": "be954906-49a8-49eb-8be4-8f314a2ddc41"}, {"attributes": {"doc": null, "id": "636c0ac0-f2ac-481d-810e-200d874ad771", "tags": []}, "type": "CategoricalTickFormatter", "id": "636c0ac0-f2ac-481d-810e-200d874ad771"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "9b1e456e-6a96-4a42-8fb7-20262fb52275"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "ed0367de-af93-4c7c-b50e-d4b713292aaa"}, "id": "f79fefbe-8abf-4c48-b3a7-6edc8a82ab30"}, "type": "Grid", "id": "f79fefbe-8abf-4c48-b3a7-6edc8a82ab30"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "60c06f34-6825-4f4a-98bb-80e38723953d"}, "type": "ToolEvents", "id": "60c06f34-6825-4f4a-98bb-80e38723953d"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "9f98163a-3e68-41fd-aa95-4a83d8657eab"}, "tags": [], "doc": null, "selection_glyph": null, "id": "44c6e53c-6ebb-4159-ba92-1d9cc97e438b", "glyph": {"type": "Rect", "id": "1c18903a-491d-4923-8052-51500578d3d4"}}, "type": "GlyphRenderer", "id": "44c6e53c-6ebb-4159-ba92-1d9cc97e438b"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "54acb8e7-6a10-4b40-a359-8c39918d1bc2"}, "type": "Rect", "id": "54acb8e7-6a10-4b40-a359-8c39918d1bc2"}, {"attributes": {"doc": null, "id": "c29f68b2-22e0-4869-ac6f-0acce6f2ff9e", "tags": []}, "type": "CategoricalTicker", "id": "c29f68b2-22e0-4869-ac6f-0acce6f2ff9e"}, {"attributes": {"end": 35.2, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "ff320627-e9bd-4c56-8f6f-2d0adac483c3"}, "type": "Range1d", "id": "ff320627-e9bd-4c56-8f6f-2d0adac483c3"}, {"attributes": {"end": 35.2, "callback": null, "doc": null, "tags": [], "start": 0, "id": "33be2a62-651d-4374-b46c-afa2efe21526"}, "type": "Range1d", "id": "33be2a62-651d-4374-b46c-afa2efe21526"}, {"attributes": {"end": 69.30000000000001, "callback": null, "doc": null, "tags": [], "start": 0, "id": "937fc9c8-0ff1-499e-8bfe-1f16ec25b4de"}, "type": "Range1d", "id": "937fc9c8-0ff1-499e-8bfe-1f16ec25b4de"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "1 = least impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "17c6db97-b3f4-41bc-99f9-720efc9d6ac7"}, "type": "FactorRange", "id": "17c6db97-b3f4-41bc-99f9-720efc9d6ac7"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "f36211ad-7644-4302-88a4-ae6e74612306"}, "orientation": "top_left", "tags": [], "doc": null, "id": "9f089213-54a9-41db-bdae-fda112a9c243", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "0410ae3f-9346-4ded-99bd-309697772335"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "6f399c04-5800-4742-b3b0-ad52f43bf857"}]]]}, "type": "Legend", "id": "9f089213-54a9-41db-bdae-fda112a9c243"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "50ecb65e-3768-41ab-a622-d337feef6678"}, "type": "Rect", "id": "50ecb65e-3768-41ab-a622-d337feef6678"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "4f533d56-af56-4041-94ed-b6bd6ddd1d76"}, "type": "Rect", "id": "4f533d56-af56-4041-94ed-b6bd6ddd1d76"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [2.0, 18.5, 13.5, 8.0, 6.0], "Platform": [4, 37, 27, 16, 12], "catFx-Team": ["All Other Responses:0.666666666667", "No impact / Not applicable:0.666666666667", "A little impact:0.666666666667", "Moderate impact:0.666666666667", "Significant impact:0.666666666667"], "cat": ["All Other Responses", "No impact / Not applicable", "A little impact", "Moderate impact", "Significant impact"], "midPlatform": [2.0, 18.5, 13.5, 8.0, 6.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [9.0, 80.0, 51.0, 29.0, 20.0], "catPlatform": ["All Other Responses:0.333333333333", "No impact / Not applicable:0.333333333333", "A little impact:0.333333333333", "Moderate impact:0.333333333333", "Significant impact:0.333333333333"], "stackedFx-Team": [6.5, 58.5, 39.0, 22.5, 16.0], "midFx-Team": [2.5, 21.5, 12.0, 6.5, 4.0], "Fx-Team": [5, 43, 24, 13, 8]}, "id": "e2331646-7b27-4d8b-8604-4fadcd1a8ce8"}, "type": "ColumnDataSource", "id": "e2331646-7b27-4d8b-8604-4fadcd1a8ce8"}, {"attributes": {"callback": null, "factors": ["1 - no impact", "2 - little impact", "3 - a fair amount of impact", "4 - a significant amount of impact", "5 - an extremely frustrating amount of impact"], "doc": null, "tags": [], "id": "3d9ecdce-f81c-43b3-8142-0d7d2e352e9f"}, "type": "FactorRange", "id": "3d9ecdce-f81c-43b3-8142-0d7d2e352e9f"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "33fbe32c-12b9-45f7-9586-64e64afe3f30"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "45c4abc2-3fab-4538-bf30-d738079d7051"}, "id": "45f2ffbe-7249-4f99-b0cf-bfd191678970"}, "type": "Grid", "id": "45f2ffbe-7249-4f99-b0cf-bfd191678970"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "717a6a3d-1c3f-44f3-939b-4ad87f690fea"}, "tags": [], "doc": null, "selection_glyph": null, "id": "0fc6aeda-4b80-4b8e-bd8c-4de4a61ae54c", "glyph": {"type": "Rect", "id": "6aad5b84-2f80-49b0-af9f-896d41ab07ce"}}, "type": "GlyphRenderer", "id": "0fc6aeda-4b80-4b8e-bd8c-4de4a61ae54c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "809016c3-2f8e-4771-aa32-f933297dcf2e"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "6ca28ab8-8f54-4285-a6cf-ef5cd517b91f"}, "ticker": {"type": "BasicTicker", "id": "6babb469-8d32-40bc-a028-d2a14066db7c"}, "id": "b13b7768-9f23-411f-b094-668d8584b533"}, "type": "LinearAxis", "id": "b13b7768-9f23-411f-b094-668d8584b533"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "06c4ac21-160b-4179-9af8-a880c4ddfd3d"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "0fd30557-bcc8-4dd0-94c6-c140071ba717"}, "ticker": {"type": "CategoricalTicker", "id": "55c5ca16-0d53-464d-9714-d5c256c335e4"}, "id": "e0b7f644-c799-42c7-90b3-ed2d16fa40d7"}, "type": "CategoricalAxis", "id": "e0b7f644-c799-42c7-90b3-ed2d16fa40d7"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "11962b53-b5c3-4990-b68e-237cf2876b1d"}, "tags": [], "doc": null, "selection_glyph": null, "id": "4e1c85ab-85d9-4b41-a09a-bfa0cd157f9a", "glyph": {"type": "Rect", "id": "3681bcec-fba3-47f6-baec-0b787cd24672"}}, "type": "GlyphRenderer", "id": "4e1c85ab-85d9-4b41-a09a-bfa0cd157f9a"}, {"attributes": {"doc": null, "id": "fc65d54b-1c96-40da-bf61-a943e03bc4eb", "tags": []}, "type": "CategoricalTicker", "id": "fc65d54b-1c96-40da-bf61-a943e03bc4eb"}, {"attributes": {"doc": null, "id": "348d836c-b86c-4c9a-ab5e-942ae11ebaee", "tags": []}, "type": "CategoricalTicker", "id": "348d836c-b86c-4c9a-ab5e-942ae11ebaee"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "2e99b6d6-35a7-47da-a2b9-7a0aa5d75a21"}, "type": "ToolEvents", "id": "2e99b6d6-35a7-47da-a2b9-7a0aa5d75a21"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "3087717d-09a2-45a8-9427-88230aa142b8"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "40169974-6fb7-4be6-880f-996bc54b0c11"}, "ticker": {"type": "CategoricalTicker", "id": "ec8644c7-579b-4fc4-a556-7489fc1035c5"}, "id": "58e6448d-4136-433b-8fb4-3cf3da46cc25"}, "type": "CategoricalAxis", "id": "58e6448d-4136-433b-8fb4-3cf3da46cc25"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "1167e2db-ba7b-48c1-a22f-ecbb227219a3"}, "type": "BasicTicker", "id": "1167e2db-ba7b-48c1-a22f-ecbb227219a3"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "05e13dc5-3cc3-4267-86b7-d78b4aa9d073"}, "type": "ToolEvents", "id": "05e13dc5-3cc3-4267-86b7-d78b4aa9d073"}, {"subtype": "Chart", "type": "Plot", "id": "33fbe32c-12b9-45f7-9586-64e64afe3f30", "attributes": {"x_range": {"type": "FactorRange", "id": "d731da9b-d106-4dc6-8009-b67a79474c6d"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "f043756e-9fca-4573-ac5b-3448030d7d3b"}, "title": "Thinking of the entire development process, from checking out code to landing a patch, please rank the following categories according to how much they impact your own productivity. [Try jobs take too long]", "renderers": [{"type": "CategoricalAxis", "id": "4e75d087-8d7f-47f4-883a-426139c65c42"}, {"type": "LinearAxis", "id": "672b8ab9-e389-478a-9b38-25375efb601c"}, {"type": "Grid", "id": "45f2ffbe-7249-4f99-b0cf-bfd191678970"}, {"type": "GlyphRenderer", "id": "3bff5d22-f81f-4075-9b79-5c8b2302ccd7"}, {"type": "GlyphRenderer", "id": "4e1c85ab-85d9-4b41-a09a-bfa0cd157f9a"}, {"type": "Legend", "id": "53504ea4-6887-4059-bec5-193f14b1064d"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "12deaee2-31ba-4c37-817f-610f928b23b8"}, "plot_height": 560, "doc": null, "id": "33fbe32c-12b9-45f7-9586-64e64afe3f30", "tools": [], "below": [{"type": "CategoricalAxis", "id": "4e75d087-8d7f-47f4-883a-426139c65c42"}], "left": [{"type": "LinearAxis", "id": "672b8ab9-e389-478a-9b38-25375efb601c"}]}}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "b2392387-88d1-4763-b858-fec87e036077"}, "tags": [], "doc": null, "selection_glyph": null, "id": "902577d9-5a74-4b20-ac4b-0762ac79a88d", "glyph": {"type": "Rect", "id": "e63893db-7b85-4e6e-9a32-56a15685003c"}}, "type": "GlyphRenderer", "id": "902577d9-5a74-4b20-ac4b-0762ac79a88d"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fe4dde56-d69e-4fb0-aaf6-aaa62faafa93"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "8ac202a2-0188-4d21-9175-e9ed9a805880"}, "ticker": {"type": "CategoricalTicker", "id": "90a132cb-b254-4a2a-a509-aa6057083624"}, "id": "8240a598-fc1e-42e2-ba2e-98b7cf71229f"}, "type": "CategoricalAxis", "id": "8240a598-fc1e-42e2-ba2e-98b7cf71229f"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "6d3456b4-4bd0-47b6-8b3c-7cfa6e72141d"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "8fa942d9-ab14-4b8c-8e08-fac4e6c19247"}, "ticker": {"type": "CategoricalTicker", "id": "c41a3db1-d4e4-4171-aa33-907f44d75076"}, "id": "da9f13c8-7daf-4f01-bfef-721714a01706"}, "type": "CategoricalAxis", "id": "da9f13c8-7daf-4f01-bfef-721714a01706"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "a480e705-ea04-416f-804c-f47d647e7a41"}, "type": "BasicTicker", "id": "a480e705-ea04-416f-804c-f47d647e7a41"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "e4c06cfb-dde1-40a0-9b68-2da7d8f33ecb"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "7e615519-3bd2-4636-8e22-358b0be7ff01"}, "ticker": {"type": "BasicTicker", "id": "858d445d-0a9d-423f-ad65-616ba8e32512"}, "id": "07f5861e-12fc-460e-addd-650f19074556"}, "type": "LinearAxis", "id": "07f5861e-12fc-460e-addd-650f19074556"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "069d8f48-8db1-4213-83e6-a0762d73c8b2"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "7ec4a083-33f0-4d06-bbaa-53ded1426322"}, "ticker": {"type": "BasicTicker", "id": "c7094733-3f19-4113-9ff2-9d995763906a"}, "id": "a8fd255f-cf58-4fbf-a214-4105f4e9e078"}, "type": "LinearAxis", "id": "a8fd255f-cf58-4fbf-a214-4105f4e9e078"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "db643a7e-b50b-4937-9fb0-d05a83980787"}, "tags": [], "doc": null, "selection_glyph": null, "id": "bf6e6044-f58c-4bc1-b6a2-5ec1b414e3bc", "glyph": {"type": "Rect", "id": "b3fa53bc-2eac-4867-9aef-178fceb117dd"}}, "type": "GlyphRenderer", "id": "bf6e6044-f58c-4bc1-b6a2-5ec1b414e3bc"}, {"attributes": {"end": 68.2, "callback": null, "doc": null, "tags": [], "start": 0, "id": "ad5af6ad-4c26-40b7-9c8e-a2de998e9ff1"}, "type": "Range1d", "id": "ad5af6ad-4c26-40b7-9c8e-a2de998e9ff1"}, {"attributes": {"doc": null, "id": "f99ad5c6-8d5f-4aa8-bb81-f9d7235935aa", "tags": []}, "type": "CategoricalTickFormatter", "id": "f99ad5c6-8d5f-4aa8-bb81-f9d7235935aa"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "6404456d-d0b6-4cb5-91bf-a98c72a94846"}, "type": "Rect", "id": "6404456d-d0b6-4cb5-91bf-a98c72a94846"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "36a856e6-7f3b-484b-8b96-13789f247c30"}, "type": "ToolEvents", "id": "36a856e6-7f3b-484b-8b96-13789f247c30"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "181f467e-8df8-4c5c-a416-21b1cfe03a81"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "399ddb6a-03d7-4381-b962-0feb2c16f4f4"}, "ticker": {"type": "CategoricalTicker", "id": "47f6d7a2-5b0e-4dc1-a70b-4f94f2068562"}, "id": "f5c82d61-621e-4c8c-8046-04c10b4728e6"}, "type": "CategoricalAxis", "id": "f5c82d61-621e-4c8c-8046-04c10b4728e6"}, {"attributes": {"doc": null, "id": "efdeaa56-7f31-47d7-950c-b39af877feb0", "tags": []}, "type": "BasicTickFormatter", "id": "efdeaa56-7f31-47d7-950c-b39af877feb0"}, {"attributes": {"doc": null, "id": "44ad4a96-e496-4f03-a2b6-bba9130d54ee", "tags": []}, "type": "CategoricalTicker", "id": "44ad4a96-e496-4f03-a2b6-bba9130d54ee"}, {"attributes": {"doc": null, "id": "ed1095d4-2aa0-4f4a-a316-bc1e15abe6da", "tags": []}, "type": "CategoricalTicker", "id": "ed1095d4-2aa0-4f4a-a316-bc1e15abe6da"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "fcb384b7-a97f-4f4c-8ca8-f2de79459ea7"}, "tags": [], "doc": null, "selection_glyph": null, "id": "48348c94-a5e3-46a1-8def-7574c40844b5", "glyph": {"type": "Rect", "id": "c97819ca-173e-40a9-807d-aa4ec9dd6bb7"}}, "type": "GlyphRenderer", "id": "48348c94-a5e3-46a1-8def-7574c40844b5"}, {"attributes": {"doc": null, "id": "0f08f715-e6c0-4fdc-8ee5-ae13c8671d26", "tags": []}, "type": "BasicTickFormatter", "id": "0f08f715-e6c0-4fdc-8ee5-ae13c8671d26"}, {"attributes": {"doc": null, "id": "a0c11663-7275-4db1-b25d-2cb340499e2d", "tags": []}, "type": "CategoricalTicker", "id": "a0c11663-7275-4db1-b25d-2cb340499e2d"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "8965c659-b8e8-40ce-859d-0b93f506e741"}, "type": "ToolEvents", "id": "8965c659-b8e8-40ce-859d-0b93f506e741"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "f9d9c87d-33e1-4883-abfd-c30220ce710d"}, "type": "BasicTicker", "id": "f9d9c87d-33e1-4883-abfd-c30220ce710d"}, {"attributes": {"callback": null, "factors": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "c1c9c96b-50fb-4a7d-aa63-1b8f12f61d19"}, "type": "FactorRange", "id": "c1c9c96b-50fb-4a7d-aa63-1b8f12f61d19"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "954a76aa-3c85-4a4e-8ac9-d3dafb8a5825"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "2a10c784-db85-418d-a15b-ca704db98b30"}, "ticker": {"type": "CategoricalTicker", "id": "33401662-4490-4fc5-a7db-574407f20428"}, "id": "5cfd7410-8c61-4b47-aa8b-9aca0aa26094"}, "type": "CategoricalAxis", "id": "5cfd7410-8c61-4b47-aa8b-9aca0aa26094"}, {"attributes": {"end": 44.0, "callback": null, "doc": null, "tags": [], "start": 0, "id": "82b3cb09-54ff-4193-9a49-c797c269c43c"}, "type": "Range1d", "id": "82b3cb09-54ff-4193-9a49-c797c269c43c"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "0b9053cc-95e2-4fc9-8e4a-cc41e192e621"}, "type": "Rect", "id": "0b9053cc-95e2-4fc9-8e4a-cc41e192e621"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "f657426c-9686-4d5c-99b6-69122fd65e71"}, "tags": [], "doc": null, "selection_glyph": null, "id": "5fd01adc-f2c4-435c-a107-82a812aa88cd", "glyph": {"type": "Rect", "id": "2fe75739-e5d8-48b2-8d57-1baac515d546"}}, "type": "GlyphRenderer", "id": "5fd01adc-f2c4-435c-a107-82a812aa88cd"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "44ec5b6f-e02e-4717-b4dd-0863160dd813"}, "type": "Rect", "id": "44ec5b6f-e02e-4717-b4dd-0863160dd813"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "83c80902-8e88-423c-a67b-be9b3a10b149"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "cafe5933-9215-4ad6-b5f7-f1988df1b738"}, "ticker": {"type": "CategoricalTicker", "id": "d9bb9f3c-a253-4ce9-94c6-836b141faa86"}, "id": "c5607591-cc62-4ea7-a29a-ed79264c12ce"}, "type": "CategoricalAxis", "id": "c5607591-cc62-4ea7-a29a-ed79264c12ce"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a99a4117-a109-4400-8546-282b15a9edc2"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "18d8ffca-50c8-4368-bf4c-16d4e5183017"}, "ticker": {"type": "BasicTicker", "id": "ef9ace33-d4b8-4f47-a384-53b9b2b4f5f6"}, "id": "9e191cee-b450-4321-964d-eaa797527ab6"}, "type": "LinearAxis", "id": "9e191cee-b450-4321-964d-eaa797527ab6"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "1a067b38-b6bf-434b-ab7d-6fae10a208a0"}, "type": "Rect", "id": "1a067b38-b6bf-434b-ab7d-6fae10a208a0"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "1 = least impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "f65c3507-a188-4f75-aa59-3f287bf73152"}, "type": "FactorRange", "id": "f65c3507-a188-4f75-aa59-3f287bf73152"}, {"attributes": {"doc": null, "id": "8fa942d9-ab14-4b8c-8e08-fac4e6c19247", "tags": []}, "type": "CategoricalTickFormatter", "id": "8fa942d9-ab14-4b8c-8e08-fac4e6c19247"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "2336062a-f291-4997-8c28-27480a3c327c"}, "tags": [], "doc": null, "selection_glyph": null, "id": "b54db0f7-d374-45f2-85ee-92b38f655d4c", "glyph": {"type": "Rect", "id": "c58f9862-d1ae-4cd3-a2df-88771b98c168"}}, "type": "GlyphRenderer", "id": "b54db0f7-d374-45f2-85ee-92b38f655d4c"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "0c50c9a6-39eb-4ef9-b981-a0caee80037e"}, "type": "Rect", "id": "0c50c9a6-39eb-4ef9-b981-a0caee80037e"}, {"attributes": {"doc": null, "id": "68398b85-8a60-4197-8063-6b6ff6fc07ba", "tags": []}, "type": "BasicTickFormatter", "id": "68398b85-8a60-4197-8063-6b6ff6fc07ba"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "b3957176-ca40-47fe-a90f-cfb668cc9a38"}, "tags": [], "doc": null, "selection_glyph": null, "id": "bbd1d6e5-3711-4152-bfe0-74324b9d6223", "glyph": {"type": "Rect", "id": "6fc0d36b-9b55-482f-9e67-ac75665bd57e"}}, "type": "GlyphRenderer", "id": "bbd1d6e5-3711-4152-bfe0-74324b9d6223"}, {"attributes": {"doc": null, "id": "913b619e-bc51-44bb-8341-678f5e5f126a", "tags": []}, "type": "BasicTickFormatter", "id": "913b619e-bc51-44bb-8341-678f5e5f126a"}, {"attributes": {"callback": null, "factors": ["3.1", "3.2", "3.3", "3.4", "3.5", "All Other Responses"], "doc": null, "tags": [], "id": "ba8b9f9d-a2ed-45cf-bb17-a38c47b5f213"}, "type": "FactorRange", "id": "ba8b9f9d-a2ed-45cf-bb17-a38c47b5f213"}, {"attributes": {"doc": null, "id": "1664be4b-bf6c-4438-b161-608fc96bb8cf", "tags": []}, "type": "BasicTickFormatter", "id": "1664be4b-bf6c-4438-b161-608fc96bb8cf"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "e0d97aa9-0cfb-4cc7-b568-44448053872b"}, "tags": [], "doc": null, "selection_glyph": null, "id": "f7832ead-a6a0-4ae8-a89c-1e5feb6619fa", "glyph": {"type": "Rect", "id": "e399ad8d-a677-413e-b2f1-e506fdd38748"}}, "type": "GlyphRenderer", "id": "f7832ead-a6a0-4ae8-a89c-1e5feb6619fa"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "06862054-0d5b-490a-8c11-d262b7e9ff86"}, "tags": [], "doc": null, "selection_glyph": null, "id": "be9fe1ee-09c8-4f40-8c30-ea6187975cf1", "glyph": {"type": "Rect", "id": "fd514b15-1926-4ae0-86ea-ac2275f5f011"}}, "type": "GlyphRenderer", "id": "be9fe1ee-09c8-4f40-8c30-ea6187975cf1"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "79e5a479-8c1f-409d-8c83-8a91176fb5ab"}, "tags": [], "doc": null, "selection_glyph": null, "id": "8c8abfcc-a198-4dec-8ac4-7be4a58656b7", "glyph": {"type": "Rect", "id": "f8ed4e08-9656-4a0d-963b-60e262081fc2"}}, "type": "GlyphRenderer", "id": "8c8abfcc-a198-4dec-8ac4-7be4a58656b7"}, {"subtype": "Chart", "type": "Plot", "id": "10544a4e-d09a-4d33-b9db-dad1dffdd8b4", "attributes": {"x_range": {"type": "FactorRange", "id": "54810c7c-79a9-40f7-9055-a2131df06fe0"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "1d3b72ad-54a5-4a0e-a1ce-f41af00a9f8d"}, "title": "How much should Mozilla invest in the following Mercurial related items? [Local Mozilla-specific extensions]", "renderers": [{"type": "CategoricalAxis", "id": "01eb0234-4b63-49fa-b03b-45b014276171"}, {"type": "LinearAxis", "id": "207bee3f-779b-4db5-9804-2a1a510d72d5"}, {"type": "Grid", "id": "a5e520a8-47bc-4017-90c1-db868caf0fbe"}, {"type": "GlyphRenderer", "id": "66d3e3aa-3ab9-43ab-96ff-9b56cecd5318"}, {"type": "GlyphRenderer", "id": "6a42f71a-4032-4301-a00a-fa06052ead67"}, {"type": "Legend", "id": "5f15c47e-b37f-4564-a540-6a9f84e6ffe0"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "e303924c-d613-47f7-8770-933fc9ee8041"}, "plot_height": 560, "doc": null, "id": "10544a4e-d09a-4d33-b9db-dad1dffdd8b4", "tools": [], "below": [{"type": "CategoricalAxis", "id": "01eb0234-4b63-49fa-b03b-45b014276171"}], "left": [{"type": "LinearAxis", "id": "207bee3f-779b-4db5-9804-2a1a510d72d5"}]}}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "8d9963c6-9c28-48e5-a9b2-2f925d0e896c"}, "type": "Rect", "id": "8d9963c6-9c28-48e5-a9b2-2f925d0e896c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "08d112df-cc2f-434b-bc72-4b270fe5903f"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "00553207-b19e-40ae-994a-81f47d3e4a9b"}, "ticker": {"type": "BasicTicker", "id": "31d695fd-dcdd-47bc-ab7e-19bb3f158fb4"}, "id": "caa75ad9-83e7-442b-ae8a-bab7b544574d"}, "type": "LinearAxis", "id": "caa75ad9-83e7-442b-ae8a-bab7b544574d"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "0e178837-e55a-4d99-a3f8-4597a95121f0"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "845da5ac-4fc8-42d3-be12-553545a3a05e"}, "ticker": {"type": "BasicTicker", "id": "15379473-9f8e-46e5-baec-dcf5aa99c642"}, "id": "2170ac0e-2d52-40b5-8f66-426f4b3bdff7"}, "type": "LinearAxis", "id": "2170ac0e-2d52-40b5-8f66-426f4b3bdff7"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "e9721e15-f2f5-492e-b043-3b24b96e2d91"}, "type": "ToolEvents", "id": "e9721e15-f2f5-492e-b043-3b24b96e2d91"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "57e25b97-a78e-437c-bde0-2ade5ef5a920"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "015e8cdd-b799-47eb-8948-11a8631fade8"}, "ticker": {"type": "BasicTicker", "id": "8169780e-90e6-4d0e-a83c-c8aae3bbe2b8"}, "id": "6c07ea11-3d84-45b1-9a58-1d191e94bfb3"}, "type": "LinearAxis", "id": "6c07ea11-3d84-45b1-9a58-1d191e94bfb3"}, {"attributes": {"end": 44.0, "callback": null, "doc": null, "tags": [], "start": 0, "id": "de517f23-fa32-4250-9479-a2c3e07772be"}, "type": "Range1d", "id": "de517f23-fa32-4250-9479-a2c3e07772be"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2], "stackedPlatform": [27.5, 22.0], "Platform": [55, 44], "catFx-Team": ["No:0.666666666667", "Yes:0.666666666667"], "cat": ["No", "Yes"], "midPlatform": [27.5, 22.0], "width": [0.8, 0.8], "zero": [114.0, 84.0], "catPlatform": ["No:0.333333333333", "Yes:0.333333333333"], "stackedFx-Team": [84.5, 64.0], "midFx-Team": [29.5, 20.0], "Fx-Team": [59, 40]}, "id": "11c289b7-f3c8-4348-b5e1-ca7a3660ad4f"}, "type": "ColumnDataSource", "id": "11c289b7-f3c8-4348-b5e1-ca7a3660ad4f"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "30e1995e-2980-41e3-9dcb-e803035f87d2"}, "type": "BasicTicker", "id": "30e1995e-2980-41e3-9dcb-e803035f87d2"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "7a2de75e-53e8-48d5-881a-cb4a772dd731"}, "type": "Rect", "id": "7a2de75e-53e8-48d5-881a-cb4a772dd731"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "61b3ce83-437a-4225-b654-7d82477958f7"}, "tags": [], "doc": null, "selection_glyph": null, "id": "3f2eb5fd-4473-4133-b9a2-36792c72e4fc", "glyph": {"type": "Rect", "id": "465ef067-3cba-4c89-b981-416c8ba66a4d"}}, "type": "GlyphRenderer", "id": "3f2eb5fd-4473-4133-b9a2-36792c72e4fc"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "490a807f-dfed-464f-bc7a-59571a1b4794"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "efdeaa56-7f31-47d7-950c-b39af877feb0"}, "ticker": {"type": "BasicTicker", "id": "296d47bd-2769-4e9e-be00-a3f0f76022f5"}, "id": "ec6a42a8-9eb3-458b-a9bf-f1741938c012"}, "type": "LinearAxis", "id": "ec6a42a8-9eb3-458b-a9bf-f1741938c012"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "ad531066-f7ee-45ba-94a7-31f5d0316229"}, "type": "BasicTicker", "id": "ad531066-f7ee-45ba-94a7-31f5d0316229"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "2257ebae-6f61-4056-a247-054880696f3d"}, "type": "BasicTicker", "id": "2257ebae-6f61-4056-a247-054880696f3d"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a99a4117-a109-4400-8546-282b15a9edc2"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "7397645a-b538-4a7e-872d-e5b3f98274eb"}, "ticker": {"type": "CategoricalTicker", "id": "906b4c94-67e2-444a-9cc6-1347faf873b7"}, "id": "67993de7-63bd-404d-a151-01eb458cf567"}, "type": "CategoricalAxis", "id": "67993de7-63bd-404d-a151-01eb458cf567"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [2.5, 4.5, 6.0, 5.0, 4.5, 15.5, 11.0], "Platform": [5, 9, 12, 10, 9, 31, 22], "catFx-Team": ["All Other Responses:0.666666666667", "N/A or I'm not sure:0.666666666667", "It's not horrible, but it's still pretty bad:0.666666666667", "It sucks a little:0.666666666667", "It's neither bad nor good:0.666666666667", "It's OK, I guess:0.666666666667", "It's pretty good:0.666666666667"], "cat": ["All Other Responses", "N/A or I'm not sure", "It's not horrible, but it's still pretty bad", "It sucks a little", "It's neither bad nor good", "It's OK, I guess", "It's pretty good"], "midPlatform": [2.5, 4.5, 6.0, 5.0, 4.5, 15.5, 11.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [10.0, 14.0, 41.0, 20.0, 27.0, 52.0, 30.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A or I'm not sure:0.333333333333", "It's not horrible, but it's still pretty bad:0.333333333333", "It sucks a little:0.333333333333", "It's neither bad nor good:0.333333333333", "It's OK, I guess:0.333333333333", "It's pretty good:0.333333333333"], "stackedFx-Team": [7.5, 11.5, 26.5, 15.0, 18.0, 41.5, 26.0], "midFx-Team": [2.5, 2.5, 14.5, 5.0, 9.0, 10.5, 4.0], "Fx-Team": [5, 5, 29, 10, 18, 21, 8]}, "id": "56178a0e-ffa8-49dc-a9b6-ec24a8fd797f"}, "type": "ColumnDataSource", "id": "56178a0e-ffa8-49dc-a9b6-ec24a8fd797f"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "c7d5001f-8c51-4c5c-9a10-50df2eb19081"}, "type": "BasicTicker", "id": "c7d5001f-8c51-4c5c-9a10-50df2eb19081"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [11.0, 27.0, 4.5, 2.5, 4.5], "Platform": [22, 54, 9, 5, 9], "catFx-Team": ["N/A:0.666666666667", "1 = least impactful:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impactful:0.666666666667"], "cat": ["N/A", "1 = least impactful", "2", "3", "4 = most impactful"], "midPlatform": [11.0, 27.0, 4.5, 2.5, 4.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [30.0, 78.0, 25.0, 15.0, 49.0], "catPlatform": ["N/A:0.333333333333", "1 = least impactful:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impactful:0.333333333333"], "stackedFx-Team": [26.0, 66.0, 17.0, 10.0, 29.0], "midFx-Team": [4.0, 12.0, 8.0, 5.0, 20.0], "Fx-Team": [8, 24, 16, 10, 40]}, "id": "af3b6a95-735b-47af-8df3-fc5a8136c2da"}, "type": "ColumnDataSource", "id": "af3b6a95-735b-47af-8df3-fc5a8136c2da"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fb35fd90-f4e1-4990-9a8e-8a7fe92f8c1d"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "6deed7f0-8bab-4a42-9f4c-6e9cd4c592b1"}, "ticker": {"type": "CategoricalTicker", "id": "907cdbe5-ef8a-466e-9719-d302130ae4f4"}, "id": "fba6fd91-aafd-4bed-8192-a23678977f09"}, "type": "CategoricalAxis", "id": "fba6fd91-aafd-4bed-8192-a23678977f09"}, {"attributes": {"end": 59.400000000000006, "callback": null, "doc": null, "tags": [], "start": 0, "id": "db6f6105-b2b5-4024-8ec5-fe3d967ca974"}, "type": "Range1d", "id": "db6f6105-b2b5-4024-8ec5-fe3d967ca974"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "5469849f-877c-4ea4-81ec-eec6402d4391"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "c8bfd8f9-c1cf-40e3-a611-c05141af19d0"}, "ticker": {"type": "BasicTicker", "id": "e0b5760b-c83a-46dd-99d9-6cbcdd523c2c"}, "id": "c3a762ab-2ddc-45f4-98a5-5bb19688d907"}, "type": "LinearAxis", "id": "c3a762ab-2ddc-45f4-98a5-5bb19688d907"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "b525a360-6de7-4f87-94cc-76057f7af2f6"}, "type": "Rect", "id": "b525a360-6de7-4f87-94cc-76057f7af2f6"}, {"attributes": {"end": 33.0, "callback": null, "doc": null, "tags": [], "start": 0, "id": "1268dbf4-6052-4284-a8e5-c08b9435210c"}, "type": "Range1d", "id": "1268dbf4-6052-4284-a8e5-c08b9435210c"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "1775a9f6-377c-435c-a295-279bb488885b"}, "tags": [], "doc": null, "selection_glyph": null, "id": "dd9774c3-d2f5-495d-854e-69160056fa99", "glyph": {"type": "Rect", "id": "a48e0136-c551-480c-9d35-6595bd544dcd"}}, "type": "GlyphRenderer", "id": "dd9774c3-d2f5-495d-854e-69160056fa99"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [1.0, 5.5, 14.5, 18.0, 6.5], "Platform": [2, 11, 29, 36, 13], "catFx-Team": ["All Other Responses:0.666666666667", "Below average:0.666666666667", "Average:0.666666666667", "Above average:0.666666666667", "It's awesome!:0.666666666667"], "cat": ["All Other Responses", "Below average", "Average", "Above average", "It's awesome!"], "midPlatform": [1.0, 5.5, 14.5, 18.0, 6.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [4.0, 27.0, 56.0, 60.0, 29.0], "catPlatform": ["All Other Responses:0.333333333333", "Below average:0.333333333333", "Average:0.333333333333", "Above average:0.333333333333", "It's awesome!:0.333333333333"], "stackedFx-Team": [3.0, 19.0, 42.5, 48.0, 21.0], "midFx-Team": [1.0, 8.0, 13.5, 12.0, 8.0], "Fx-Team": [2, 16, 27, 24, 16]}, "id": "74162ac3-65b8-4334-b03e-d75018411f0e"}, "type": "ColumnDataSource", "id": "74162ac3-65b8-4334-b03e-d75018411f0e"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fd2801db-f7d9-4e81-a693-dd7db4bdc260"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "e88a3c63-31e9-495c-9751-c7f522c12e30"}, "ticker": {"type": "BasicTicker", "id": "96cc484c-8b00-4952-812c-ee8d020551a4"}, "id": "6fae8bf6-0095-47dd-b90b-fbc06444ecff"}, "type": "LinearAxis", "id": "6fae8bf6-0095-47dd-b90b-fbc06444ecff"}, {"attributes": {"doc": null, "id": "82183112-5207-4b8e-8691-1cf742c4726c", "tags": []}, "type": "CategoricalTickFormatter", "id": "82183112-5207-4b8e-8691-1cf742c4726c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "31e55b47-64c6-443d-8756-b526a0311feb"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "c85070d3-e44e-4e9a-98b1-c71fc940f22b"}, "ticker": {"type": "CategoricalTicker", "id": "ef8b87cf-2ea8-455e-b0cd-119524bcbcc7"}, "id": "3c79d247-51cf-463c-ba93-97f643bfe6ef"}, "type": "CategoricalAxis", "id": "3c79d247-51cf-463c-ba93-97f643bfe6ef"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "31f820dd-e577-4d1c-970a-390b8d9ed532"}, "tags": [], "doc": null, "selection_glyph": null, "id": "6d0fc755-4ec0-4338-86a2-7f81847d2a70", "glyph": {"type": "Rect", "id": "57259fdb-e568-44cd-b8bf-bcf307c4669a"}}, "type": "GlyphRenderer", "id": "6d0fc755-4ec0-4338-86a2-7f81847d2a70"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "069d8f48-8db1-4213-83e6-a0762d73c8b2"}, "orientation": "top_left", "tags": [], "doc": null, "id": "b37dd1f0-78d7-4b08-b60c-717c2221a7d6", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "5b04be13-9e40-47d1-9f05-9fc25331a4b4"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "b68f5646-c2d2-41c4-8f02-e7cfc3381884"}]]]}, "type": "Legend", "id": "b37dd1f0-78d7-4b08-b60c-717c2221a7d6"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "35c94ce8-b8eb-4f3c-97f4-957c3cc3e63e"}, "orientation": "top_left", "tags": [], "doc": null, "id": "10df27f6-f9c3-4b98-aa47-0f96767f5ab5", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "4510c06a-9ed5-4327-874c-f4f09641519c"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "6cbf22bb-ab94-4dc5-9156-ec1fba253c87"}]]]}, "type": "Legend", "id": "10df27f6-f9c3-4b98-aa47-0f96767f5ab5"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "5aedd408-c433-4660-b457-3bb5acb7465a"}, "tags": [], "doc": null, "selection_glyph": null, "id": "c7c1979f-a8a3-4f16-97ff-26c6d3309977", "glyph": {"type": "Rect", "id": "f68bab10-c099-46c3-ae05-e49045c0875e"}}, "type": "GlyphRenderer", "id": "c7c1979f-a8a3-4f16-97ff-26c6d3309977"}, {"subtype": "Chart", "type": "Plot", "id": "f6d974db-f600-4ea9-89cc-a37c7017de7f", "attributes": {"x_range": {"type": "FactorRange", "id": "d76cc231-43b3-4614-a57d-3582e64f13c5"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "8a113d02-c49c-4eb7-8eda-9394bb71ff8e"}, "title": "Thinking of the entire development process, from checking out code to landing a patch, please rank the following categories according to how much they impact your own productivity. [Unexpected surprises during development]", "renderers": [{"type": "CategoricalAxis", "id": "d12dcd14-5052-437e-9ede-48eefa129d99"}, {"type": "LinearAxis", "id": "b44a4b98-8a40-4896-b996-bddadb83eae4"}, {"type": "Grid", "id": "94ac73e2-4d84-4ff4-b5d3-47d6ca8f1d7d"}, {"type": "GlyphRenderer", "id": "66a1122d-0d3b-437a-a291-a4ccfafc700c"}, {"type": "GlyphRenderer", "id": "38c7f93b-faec-4c13-83f6-c1a02d459586"}, {"type": "Legend", "id": "ad48c348-df9b-4071-9561-a877369a62fa"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "7c6fa153-ac76-45f9-aedf-e8a07bf4e39c"}, "plot_height": 560, "doc": null, "id": "f6d974db-f600-4ea9-89cc-a37c7017de7f", "tools": [], "below": [{"type": "CategoricalAxis", "id": "d12dcd14-5052-437e-9ede-48eefa129d99"}], "left": [{"type": "LinearAxis", "id": "b44a4b98-8a40-4896-b996-bddadb83eae4"}]}}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "c5a4ead9-a8be-4660-ac88-41399056d6f6"}, "type": "BasicTicker", "id": "c5a4ead9-a8be-4660-ac88-41399056d6f6"}, {"attributes": {"doc": null, "id": "fd65e847-3a85-40bb-bb3e-a73ac3af713c", "tags": []}, "type": "CategoricalTicker", "id": "fd65e847-3a85-40bb-bb3e-a73ac3af713c"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "84278270-36f0-4b61-b641-a2874e26fe94"}, "type": "ToolEvents", "id": "84278270-36f0-4b61-b641-a2874e26fe94"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A or I'm not sure", "Not at all satisfied", "It's not horrible, but it's still pretty bad", "It sucks a little", "It's neither bad nor good", "It's OK, I guess", "It's pretty good"], "doc": null, "tags": [], "id": "79ae9144-580a-4dac-9187-0c9778724bb8"}, "type": "FactorRange", "id": "79ae9144-580a-4dac-9187-0c9778724bb8"}, {"attributes": {"end": 56.1, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "3a963c7e-9376-4b33-98ac-077aab4681d7"}, "type": "Range1d", "id": "3a963c7e-9376-4b33-98ac-077aab4681d7"}, {"subtype": "Chart", "type": "Plot", "id": "758b2f65-117f-48db-a194-b2391e90cc8f", "attributes": {"x_range": {"type": "FactorRange", "id": "e3678d9a-6f79-4e91-a623-68acc500fa55"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "22d515d1-4788-4c7d-9988-64df52a12fc0"}, "title": "How should Mozilla invest in the following Git related items? [git.mozilla.org]", "renderers": [{"type": "CategoricalAxis", "id": "4363d6c4-ed14-456d-8680-03856dbc8316"}, {"type": "LinearAxis", "id": "0789551d-5c59-4140-980b-83a85067c8ca"}, {"type": "Grid", "id": "fa25c1e2-a9e2-45be-a8fc-54aeea34d10f"}, {"type": "GlyphRenderer", "id": "0555bc73-fe20-4fc6-8f64-906d760f6ba6"}, {"type": "GlyphRenderer", "id": "04da16ea-1962-4427-92cf-10779f379d3c"}, {"type": "Legend", "id": "5cb549ad-9623-46a4-a79c-899cf0da6bb9"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "f841f0ea-e1d4-48b8-9052-33cac62132a3"}, "plot_height": 560, "doc": null, "id": "758b2f65-117f-48db-a194-b2391e90cc8f", "tools": [], "below": [{"type": "CategoricalAxis", "id": "4363d6c4-ed14-456d-8680-03856dbc8316"}], "left": [{"type": "LinearAxis", "id": "0789551d-5c59-4140-980b-83a85067c8ca"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "0c767648-5c71-4487-8915-b4b03bf0395b"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "96244837-3a81-463d-8505-4efbd965f94b"}, "ticker": {"type": "CategoricalTicker", "id": "05ed8d55-98c1-46a8-bfb0-74762a0a17ce"}, "id": "1a75a7a6-c3aa-482c-bbb6-ce8b35a7bcd8"}, "type": "CategoricalAxis", "id": "1a75a7a6-c3aa-482c-bbb6-ce8b35a7bcd8"}, {"attributes": {"end": 35.2, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "c5504649-9e4c-484a-9e10-681804589bbb"}, "type": "Range1d", "id": "c5504649-9e4c-484a-9e10-681804589bbb"}, {"attributes": {"doc": null, "id": "f8f51916-2348-4322-b15e-03915b10d9ec", "tags": []}, "type": "CategoricalTickFormatter", "id": "f8f51916-2348-4322-b15e-03915b10d9ec"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "db73f777-88ee-42eb-b726-a708cc334ac9"}, "orientation": "top_left", "tags": [], "doc": null, "id": "5c73a3f0-aff0-4159-aacc-31cf80d96f9d", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "4b26fcb8-4f27-4cae-bb77-472a7bacc918"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "61de7685-9d72-4627-a272-b0e23cda8d2f"}]]]}, "type": "Legend", "id": "5c73a3f0-aff0-4159-aacc-31cf80d96f9d"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [0.5, 19.0, 2.5, 5.5, 6.0, 3.5], "Platform": [1, 38, 5, 11, 12, 7], "catFx-Team": ["All Other Responses:0.666666666667", "N/A:0.666666666667", "Cut all investment:0.666666666667", "Keep about the same:0.666666666667", "Increase investment:0.666666666667", "Drastically increase investment:0.666666666667"], "cat": ["All Other Responses", "N/A", "Cut all investment", "Keep about the same", "Increase investment", "Drastically increase investment"], "midPlatform": [0.5, 19.0, 2.5, 5.5, 6.0, 3.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [3.0, 92.0, 7.0, 11.0, 20.0, 12.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A:0.333333333333", "Cut all investment:0.333333333333", "Keep about the same:0.333333333333", "Increase investment:0.333333333333", "Drastically increase investment:0.333333333333"], "stackedFx-Team": [2.0, 65.0, 6.0, 11.0, 16.0, 9.5], "midFx-Team": [1.0, 27.0, 1.0, 0.0, 4.0, 2.5], "Fx-Team": [2, 54, 2, 0, 8, 5]}, "id": "252f9e83-9873-424e-8c67-2821935d9d1c"}, "type": "ColumnDataSource", "id": "252f9e83-9873-424e-8c67-2821935d9d1c"}, {"attributes": {"doc": null, "id": "a49cddf8-5eeb-49fd-875e-e4707a0559eb", "tags": []}, "type": "CategoricalTicker", "id": "a49cddf8-5eeb-49fd-875e-e4707a0559eb"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "ebd208cd-6052-441f-ab6b-242322f1f4ab"}, "tags": [], "doc": null, "selection_glyph": null, "id": "85fadf39-9f89-4d35-9f34-cfa5575541af", "glyph": {"type": "Rect", "id": "b525a360-6de7-4f87-94cc-76057f7af2f6"}}, "type": "GlyphRenderer", "id": "85fadf39-9f89-4d35-9f34-cfa5575541af"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "99384585-1096-4d8d-8a63-62ecbe4b315b"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "f1226cac-8c1c-4423-915a-c40b99685462"}, "id": "0747db1b-ed46-46f7-9929-8136e9411c90"}, "type": "Grid", "id": "0747db1b-ed46-46f7-9929-8136e9411c90"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "10544a4e-d09a-4d33-b9db-dad1dffdd8b4"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "f99ad5c6-8d5f-4aa8-bb81-f9d7235935aa"}, "ticker": {"type": "CategoricalTicker", "id": "a96cd5b6-fcc8-47ac-a5e2-6f4409cfdf79"}, "id": "01eb0234-4b63-49fa-b03b-45b014276171"}, "type": "CategoricalAxis", "id": "01eb0234-4b63-49fa-b03b-45b014276171"}, {"attributes": {"doc": null, "id": "58e1063a-9727-4237-844d-57ae79940c81", "tags": []}, "type": "CategoricalTicker", "id": "58e1063a-9727-4237-844d-57ae79940c81"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "f6d974db-f600-4ea9-89cc-a37c7017de7f"}, "orientation": "top_left", "tags": [], "doc": null, "id": "ad48c348-df9b-4071-9561-a877369a62fa", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "66a1122d-0d3b-437a-a291-a4ccfafc700c"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "38c7f93b-faec-4c13-83f6-c1a02d459586"}]]]}, "type": "Legend", "id": "ad48c348-df9b-4071-9561-a877369a62fa"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [11.0, 3.5, 8.0, 17.5, 7.5], "Platform": [22, 7, 16, 35, 15], "catFx-Team": ["No impact / Not applicable:0.666666666667", "A little impact:0.666666666667", "Moderate impact:0.666666666667", "Significant impact:0.666666666667", "Tons of impact / Implement this ASAP:0.666666666667"], "cat": ["No impact / Not applicable", "A little impact", "Moderate impact", "Significant impact", "Tons of impact / Implement this ASAP"], "midPlatform": [11.0, 3.5, 8.0, 17.5, 7.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [43.0, 20.0, 37.0, 59.0, 28.0], "catPlatform": ["No impact / Not applicable:0.333333333333", "A little impact:0.333333333333", "Moderate impact:0.333333333333", "Significant impact:0.333333333333", "Tons of impact / Implement this ASAP:0.333333333333"], "stackedFx-Team": [32.5, 13.5, 26.5, 47.0, 21.5], "midFx-Team": [10.5, 6.5, 10.5, 12.0, 6.5], "Fx-Team": [21, 13, 21, 24, 13]}, "id": "90be15a4-fcab-49b5-b4bc-9c3cec3018fe"}, "type": "ColumnDataSource", "id": "90be15a4-fcab-49b5-b4bc-9c3cec3018fe"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "f1226cac-8c1c-4423-915a-c40b99685462"}, "type": "BasicTicker", "id": "f1226cac-8c1c-4423-915a-c40b99685462"}, {"attributes": {"end": 52.800000000000004, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "8a113d02-c49c-4eb7-8eda-9394bb71ff8e"}, "type": "Range1d", "id": "8a113d02-c49c-4eb7-8eda-9394bb71ff8e"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "b8fc0587-42e8-4658-9314-5926a5529de4"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "7903d1a5-ded7-49be-9d81-b5340509e493"}, "ticker": {"type": "CategoricalTicker", "id": "fa8682d0-ab20-4995-b214-66879059c7bd"}, "id": "3a468976-3344-4830-aeab-8dd39ab512b1"}, "type": "CategoricalAxis", "id": "3a468976-3344-4830-aeab-8dd39ab512b1"}, {"attributes": {"doc": null, "id": "a69a05e2-56e7-4524-b402-26f70272a971", "tags": []}, "type": "CategoricalTicker", "id": "a69a05e2-56e7-4524-b402-26f70272a971"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "f6d974db-f600-4ea9-89cc-a37c7017de7f"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "cbbd5d1d-78c7-40e6-a7ea-24d5e4838d6f"}, "ticker": {"type": "BasicTicker", "id": "b2f0ea7e-96b8-47b2-bd31-9d95ebad3eb9"}, "id": "b44a4b98-8a40-4896-b996-bddadb83eae4"}, "type": "LinearAxis", "id": "b44a4b98-8a40-4896-b996-bddadb83eae4"}, {"attributes": {"end": 38.5, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "bc894309-5765-4b29-a334-c4634c398784"}, "type": "Range1d", "id": "bc894309-5765-4b29-a334-c4634c398784"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A", "Extremely dissatisfied", "Below average", "Average", "Above average"], "doc": null, "tags": [], "id": "2504a724-46d5-4292-a2d0-d4d0b544107f"}, "type": "FactorRange", "id": "2504a724-46d5-4292-a2d0-d4d0b544107f"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [9.0, 22.0, 6.5, 6.5, 5.0], "Platform": [18, 44, 13, 13, 10], "catFx-Team": ["N/A:0.666666666667", "1 = least impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "midPlatform": [9.0, 22.0, 6.5, 6.5, 5.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [31.0, 81.0, 29.0, 23.0, 26.0], "catPlatform": ["N/A:0.333333333333", "1 = least impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [24.5, 62.5, 21.0, 18.0, 18.0], "midFx-Team": [6.5, 18.5, 8.0, 5.0, 8.0], "Fx-Team": [13, 37, 16, 10, 16]}, "id": "1fd31781-1d3c-44ea-be46-d526092b14ca"}, "type": "ColumnDataSource", "id": "1fd31781-1d3c-44ea-be46-d526092b14ca"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "4fc27441-449c-40b7-aff7-f89531114a07"}, "type": "Rect", "id": "4fc27441-449c-40b7-aff7-f89531114a07"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "583eece9-fdd4-487b-8c56-17327fb094e7"}, "tags": [], "doc": null, "selection_glyph": null, "id": "495ecdc6-29cb-40fa-b9f4-546f549bca2d", "glyph": {"type": "Rect", "id": "7fa3a5ae-fe29-4ec2-9236-b161e87b0ad7"}}, "type": "GlyphRenderer", "id": "495ecdc6-29cb-40fa-b9f4-546f549bca2d"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "87db831b-1421-40e6-b999-3c9621a3a263"}, "type": "BasicTicker", "id": "87db831b-1421-40e6-b999-3c9621a3a263"}, {"subtype": "Chart", "type": "Plot", "id": "a12de8f6-e000-4e8f-831d-b9d9fc2fc2a3", "attributes": {"x_range": {"type": "FactorRange", "id": "b6ccc4cf-5966-49fe-9bdd-8b00500a7b5e"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "a654b375-e8a1-4b97-ae9a-276c5db7a432"}, "title": "How impactful would the following potential MozReview features have on your productivity? [Partially landed series (land first N commits and continue tracking \"open\" review requests)]", "renderers": [{"type": "CategoricalAxis", "id": "5930ba63-5757-4622-a2b0-cc47d2ba9738"}, {"type": "LinearAxis", "id": "3bfcb115-9eae-44c3-9df8-4bf53add0ccd"}, {"type": "Grid", "id": "ba590b3c-3c60-4cd8-afbf-60052df39860"}, {"type": "GlyphRenderer", "id": "268014a1-5e51-476e-a11a-303778e13ae5"}, {"type": "GlyphRenderer", "id": "87bb3bca-de48-4261-abc8-77d5befc2d83"}, {"type": "Legend", "id": "d9cf3048-8f03-4560-a795-07e8d12f2271"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "067cddb2-3083-4294-a30e-e4b0c6973f22"}, "plot_height": 560, "doc": null, "id": "a12de8f6-e000-4e8f-831d-b9d9fc2fc2a3", "tools": [], "below": [{"type": "CategoricalAxis", "id": "5930ba63-5757-4622-a2b0-cc47d2ba9738"}], "left": [{"type": "LinearAxis", "id": "3bfcb115-9eae-44c3-9df8-4bf53add0ccd"}]}}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "c90e9143-8063-4fc1-874f-53fa9d190d40"}, "type": "ToolEvents", "id": "c90e9143-8063-4fc1-874f-53fa9d190d40"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [1.0, 13.5, 6.0, 8.5, 15.0, 5.0], "Platform": [2, 27, 12, 17, 30, 10], "catFx-Team": ["All Other Responses:0.666666666667", "N/A:0.666666666667", "Extremely dissatisfied:0.666666666667", "Below average:0.666666666667", "Average:0.666666666667", "Above average:0.666666666667"], "cat": ["All Other Responses", "N/A", "Extremely dissatisfied", "Below average", "Average", "Above average"], "midPlatform": [1.0, 13.5, 6.0, 8.5, 15.0, 5.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [2.0, 54.0, 28.0, 33.0, 57.0, 23.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A:0.333333333333", "Extremely dissatisfied:0.333333333333", "Below average:0.333333333333", "Average:0.333333333333", "Above average:0.333333333333"], "stackedFx-Team": [2.0, 40.5, 20.0, 25.0, 43.5, 16.5], "midFx-Team": [0.0, 13.5, 8.0, 8.0, 13.5, 6.5], "Fx-Team": [0, 27, 16, 16, 27, 13]}, "id": "cac92ec6-141a-4319-b715-3da4813b8b26"}, "type": "ColumnDataSource", "id": "cac92ec6-141a-4319-b715-3da4813b8b26"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "38f970fb-87dc-410f-89a3-a0002cda629b"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "4bb3ba8f-1412-44b7-8132-9d514a298533"}, "ticker": {"type": "BasicTicker", "id": "f9d9c87d-33e1-4883-abfd-c30220ce710d"}, "id": "396920a0-56dc-46fc-ab0e-fb57eb83caaa"}, "type": "LinearAxis", "id": "396920a0-56dc-46fc-ab0e-fb57eb83caaa"}, {"attributes": {"doc": null, "id": "df2496b7-d278-4852-983d-68f7b480d83d", "tags": []}, "type": "BasicTickFormatter", "id": "df2496b7-d278-4852-983d-68f7b480d83d"}, {"attributes": {"end": 44.0, "callback": null, "doc": null, "tags": [], "start": 0, "id": "99695843-2f5c-460a-868b-e969d7830f41"}, "type": "Range1d", "id": "99695843-2f5c-460a-868b-e969d7830f41"}, {"attributes": {"end": 35.2, "callback": null, "doc": null, "tags": [], "start": 0, "id": "f043756e-9fca-4573-ac5b-3448030d7d3b"}, "type": "Range1d", "id": "f043756e-9fca-4573-ac5b-3448030d7d3b"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "74162ac3-65b8-4334-b03e-d75018411f0e"}, "tags": [], "doc": null, "selection_glyph": null, "id": "051bc62e-109f-48af-b3f8-550cf574581d", "glyph": {"type": "Rect", "id": "26f31889-4207-4e41-827a-2e0b693a7197"}}, "type": "GlyphRenderer", "id": "051bc62e-109f-48af-b3f8-550cf574581d"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "93cb118e-de65-4261-98cb-55999acecf08"}, "type": "Rect", "id": "93cb118e-de65-4261-98cb-55999acecf08"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "2f91d1e6-555b-438f-80b6-960a6bdb5cca"}, "type": "BasicTicker", "id": "2f91d1e6-555b-438f-80b6-960a6bdb5cca"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [2.0, 3.5, 9.0, 14.5, 19.5], "Platform": [4, 7, 18, 29, 39], "catFx-Team": ["All Other Responses:0.666666666667", "1 = least impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["All Other Responses", "1 = least impact", "2", "3", "4 = most impact"], "midPlatform": [2.0, 3.5, 9.0, 14.5, 19.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [6.0, 12.0, 36.0, 61.0, 79.0], "catPlatform": ["All Other Responses:0.333333333333", "1 = least impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [5.0, 9.5, 27.0, 45.0, 59.0], "midFx-Team": [1.0, 2.5, 9.0, 16.0, 20.0], "Fx-Team": [2, 5, 18, 32, 40]}, "id": "ee0b9af4-7e7d-4d04-b0e7-e9063cbd93b3"}, "type": "ColumnDataSource", "id": "ee0b9af4-7e7d-4d04-b0e7-e9063cbd93b3"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "2e360e70-2620-4dd1-8a1d-5f2c9b4ff91f"}, "tags": [], "doc": null, "selection_glyph": null, "id": "4d253215-dde0-4c12-b14c-d28452c96297", "glyph": {"type": "Rect", "id": "76c11175-2e90-4a01-93fc-0ff266c6f182"}}, "type": "GlyphRenderer", "id": "4d253215-dde0-4c12-b14c-d28452c96297"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "add6fa57-a92a-45e7-b63a-7e9ee8f8821f"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "ebb32c35-cd4c-43d9-b4ef-9d1975ff9f08"}, "ticker": {"type": "CategoricalTicker", "id": "70b5a422-5bf6-4a98-8660-967b24976e42"}, "id": "58a520cd-d2ee-4a1b-9d3f-0e027b0fff21"}, "type": "CategoricalAxis", "id": "58a520cd-d2ee-4a1b-9d3f-0e027b0fff21"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "02776478-701b-4368-9060-e7b70bed0081"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "9128559a-758c-465e-a383-6606ff5982d3"}, "ticker": {"type": "CategoricalTicker", "id": "eccf33ca-8fa5-443a-be42-c87e1b1ff89f"}, "id": "9ace989e-d272-4b0b-b498-697029443873"}, "type": "CategoricalAxis", "id": "9ace989e-d272-4b0b-b498-697029443873"}, {"attributes": {"doc": null, "id": "986e49e6-c29a-48e6-969e-f93b100ac822", "tags": []}, "type": "BasicTickFormatter", "id": "986e49e6-c29a-48e6-969e-f93b100ac822"}, {"attributes": {"doc": null, "id": "c9c543ca-0d74-4c54-8b32-6a6128a28a6a", "tags": []}, "type": "CategoricalTickFormatter", "id": "c9c543ca-0d74-4c54-8b32-6a6128a28a6a"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ff29212c-b360-400d-9981-08847427a774"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "0f08f715-e6c0-4fdc-8ee5-ae13c8671d26"}, "ticker": {"type": "BasicTicker", "id": "c69ac7ab-796a-4415-827a-0a573db04698"}, "id": "b70879c0-7a2c-46f9-98ab-d57554390748"}, "type": "LinearAxis", "id": "b70879c0-7a2c-46f9-98ab-d57554390748"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2], "stackedPlatform": [2.0, 40.5, 5.5], "Platform": [4, 81, 11], "catFx-Team": ["All Other Responses:0.666666666667", "Attempt to reproduce and debug locally until you figure it out:0.666666666667", "Push to try and context switch to something else while you wait for results:0.666666666667"], "cat": ["All Other Responses", "Attempt to reproduce and debug locally until you figure it out", "Push to try and context switch to something else while you wait for results"], "midPlatform": [2.0, 40.5, 5.5], "width": [0.8, 0.8, 0.8], "zero": [12.0, 164.0, 19.0], "catPlatform": ["All Other Responses:0.333333333333", "Attempt to reproduce and debug locally until you figure it out:0.333333333333", "Push to try and context switch to something else while you wait for results:0.333333333333"], "stackedFx-Team": [8.0, 122.5, 15.0], "midFx-Team": [4.0, 41.5, 4.0], "Fx-Team": [8, 83, 8]}, "id": "ebd208cd-6052-441f-ab6b-242322f1f4ab"}, "type": "ColumnDataSource", "id": "ebd208cd-6052-441f-ab6b-242322f1f4ab"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "1f86723f-f8e2-456b-ae4b-4e2f52bafd70"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "4d77cf1b-3760-4bbf-ac96-83dbdace8e13"}, "id": "7e0f4451-03cc-4b35-a85c-fe07395b8780"}, "type": "Grid", "id": "7e0f4451-03cc-4b35-a85c-fe07395b8780"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "7704e2a2-aab2-481b-89b4-44eec5d34f24"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "d87e4222-c26c-4bed-b2d1-3ec4713ea770"}, "ticker": {"type": "CategoricalTicker", "id": "e839e33f-9117-4a1b-8b4a-c3442faaa56c"}, "id": "49aeea40-e94e-4afd-9421-d25611db5e3d"}, "type": "CategoricalAxis", "id": "49aeea40-e94e-4afd-9421-d25611db5e3d"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "f5a44604-65aa-4728-9027-f4e342060930"}, "type": "ToolEvents", "id": "f5a44604-65aa-4728-9027-f4e342060930"}, {"attributes": {"callback": null, "factors": ["N/A", "1 = least impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "ea2f91fb-8a17-4241-bd92-4a72a8ad3f7d"}, "type": "FactorRange", "id": "ea2f91fb-8a17-4241-bd92-4a72a8ad3f7d"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "5422fb06-7f37-4c17-ac59-2289b71a9ac9"}, "type": "Rect", "id": "5422fb06-7f37-4c17-ac59-2289b71a9ac9"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "c0211ed4-da00-466c-ac3c-358831743026"}, "orientation": "top_left", "tags": [], "doc": null, "id": "a082bed3-e96b-48fb-a4bb-f43dc5134d33", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "f6f26af8-e31d-4d48-8af0-e4555d7e75c1"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "76e9e23b-9d1c-4a33-8f09-1da03107e3aa"}]]]}, "type": "Legend", "id": "a082bed3-e96b-48fb-a4bb-f43dc5134d33"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A (not relevant to me)", "Cut all investment", "Cut some investment", "Keep about the same", "Increase investment"], "doc": null, "tags": [], "id": "54810c7c-79a9-40f7-9055-a2131df06fe0"}, "type": "FactorRange", "id": "54810c7c-79a9-40f7-9055-a2131df06fe0"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "6fc0d36b-9b55-482f-9e67-ac75665bd57e"}, "type": "Rect", "id": "6fc0d36b-9b55-482f-9e67-ac75665bd57e"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "3432e41f-544f-4fcb-baef-dcba2831cf48"}, "type": "Rect", "id": "3432e41f-544f-4fcb-baef-dcba2831cf48"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "be81a016-552d-4985-8962-fd8ff8b85545"}, "type": "ToolEvents", "id": "be81a016-552d-4985-8962-fd8ff8b85545"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "fc6bcfc7-6e28-44c4-9061-e8f4c91b80af"}, "tags": [], "doc": null, "selection_glyph": null, "id": "5c8b1bc2-9cbd-4eac-88c1-aa49549404a3", "glyph": {"type": "Rect", "id": "3a726073-0131-400c-9d44-0c3562504a75"}}, "type": "GlyphRenderer", "id": "5c8b1bc2-9cbd-4eac-88c1-aa49549404a3"}, {"subtype": "Chart", "type": "Plot", "id": "64b0da1f-57d1-40f5-af8c-fd8591794d87", "attributes": {"x_range": {"type": "FactorRange", "id": "e2092c0f-64df-4e30-9f9e-0f1dedde7e3a"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "2927a3a2-6ee3-4d5c-b60c-a2bff037b19c"}, "title": "Do you use Git at all?", "renderers": [{"type": "CategoricalAxis", "id": "82f91704-4424-4307-949f-416ba85686ed"}, {"type": "LinearAxis", "id": "018b92c6-4f42-4422-8cfc-87b26b02a81b"}, {"type": "Grid", "id": "eea12ce9-76df-4d91-adb6-708b6a850d2e"}, {"type": "GlyphRenderer", "id": "40bd5839-cb3b-4fc0-831a-c047b9ce79f1"}, {"type": "GlyphRenderer", "id": "55692a77-0b4e-45b0-80f7-85c83b76503c"}, {"type": "Legend", "id": "c6c8acdf-78cf-4190-aa07-936d1f68dd40"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "2eb84e92-2eae-4d8e-9ec5-3cc9d1103709"}, "plot_height": 560, "doc": null, "id": "64b0da1f-57d1-40f5-af8c-fd8591794d87", "tools": [], "below": [{"type": "CategoricalAxis", "id": "82f91704-4424-4307-949f-416ba85686ed"}], "left": [{"type": "LinearAxis", "id": "018b92c6-4f42-4422-8cfc-87b26b02a81b"}]}}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "3a8acf20-959a-4bc8-bbf7-33f242fd3616"}, "tags": [], "doc": null, "selection_glyph": null, "id": "70af4438-959d-44ba-900c-e739e501fb99", "glyph": {"type": "Rect", "id": "91fcc06a-c30b-465e-894b-6b0ec01384c2"}}, "type": "GlyphRenderer", "id": "70af4438-959d-44ba-900c-e739e501fb99"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "cb147da0-1422-425b-a102-b7e22fddc842"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "8a3be582-9b74-4101-b7ec-b4cd03637178"}, "id": "570a4eee-947b-41de-b16e-e492a1bd5162"}, "type": "Grid", "id": "570a4eee-947b-41de-b16e-e492a1bd5162"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "84f10ece-a784-42fb-8c97-b85b37fdddb6"}, "type": "BasicTicker", "id": "84f10ece-a784-42fb-8c97-b85b37fdddb6"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2], "stackedPlatform": [1.5, 14.0, 4.5, 29.5], "Platform": [3, 28, 9, 59], "catFx-Team": ["All Other Responses:0.666666666667", "N/A:0.666666666667", "About the same:0.666666666667", "Gotten better:0.666666666667"], "cat": ["All Other Responses", "N/A", "About the same", "Gotten better"], "midPlatform": [1.5, 14.0, 4.5, 29.5], "width": [0.8, 0.8, 0.8, 0.8], "zero": [3.0, 57.0, 27.0, 110.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A:0.333333333333", "About the same:0.333333333333", "Gotten better:0.333333333333"], "stackedFx-Team": [3.0, 42.5, 18.0, 84.5], "midFx-Team": [0.0, 14.5, 9.0, 25.5], "Fx-Team": [0, 29, 18, 51]}, "id": "37e35a00-2833-4f9d-9d49-03afc5c1b318"}, "type": "ColumnDataSource", "id": "37e35a00-2833-4f9d-9d49-03afc5c1b318"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "ef63f7be-a589-4f99-afa3-7323fd88b495"}, "type": "BasicTicker", "id": "ef63f7be-a589-4f99-afa3-7323fd88b495"}, {"subtype": "Chart", "type": "Plot", "id": "a99a4117-a109-4400-8546-282b15a9edc2", "attributes": {"x_range": {"type": "FactorRange", "id": "bd0e1180-6603-4959-af2b-a5818b90cc47"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "661f17f3-3e60-4c4b-a580-0eeab8becd39"}, "title": "Do you get stuff done at Mozilla faster or slower than at your previous job(s)?", "renderers": [{"type": "CategoricalAxis", "id": "67993de7-63bd-404d-a151-01eb458cf567"}, {"type": "LinearAxis", "id": "9e191cee-b450-4321-964d-eaa797527ab6"}, {"type": "Grid", "id": "70c081ff-7881-477c-a213-c00d94512d0d"}, {"type": "GlyphRenderer", "id": "5c8b1bc2-9cbd-4eac-88c1-aa49549404a3"}, {"type": "GlyphRenderer", "id": "626a987b-e946-498a-934c-f670f4ec318d"}, {"type": "Legend", "id": "b6006f77-be46-4ce2-9ba2-228af0b033f6"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "e87cac07-7157-4a9b-8ba8-c6312e3f11ad"}, "plot_height": 560, "doc": null, "id": "a99a4117-a109-4400-8546-282b15a9edc2", "tools": [], "below": [{"type": "CategoricalAxis", "id": "67993de7-63bd-404d-a151-01eb458cf567"}], "left": [{"type": "LinearAxis", "id": "9e191cee-b450-4321-964d-eaa797527ab6"}]}}, {"attributes": {"end": 23.1, "callback": null, "doc": null, "tags": [], "start": 0, "id": "aa69630d-c2a8-458e-be2b-373c85150064"}, "type": "Range1d", "id": "aa69630d-c2a8-458e-be2b-373c85150064"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "7d986d53-ed95-4cfc-a8d2-df18e2915763"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "f78fb760-200e-4fb5-8c8d-4263022cefbd"}, "ticker": {"type": "BasicTicker", "id": "aac2a500-803f-413a-8aba-7aebeaeedbe6"}, "id": "d88f75fc-0927-4341-a6bc-56847b97fc93"}, "type": "LinearAxis", "id": "d88f75fc-0927-4341-a6bc-56847b97fc93"}, {"attributes": {"doc": null, "id": "3fe3590c-3041-4f84-9f23-3ee51fc30b01", "tags": []}, "type": "CategoricalTickFormatter", "id": "3fe3590c-3041-4f84-9f23-3ee51fc30b01"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "ef80c114-5cbf-42f5-9b3e-220a564369b4"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "f01fbe93-2bb4-4532-b71c-816df42230e8"}, "id": "4c34381a-670c-4a34-845a-b6a16fc2642c"}, "type": "Grid", "id": "4c34381a-670c-4a34-845a-b6a16fc2642c"}, {"attributes": {"doc": null, "id": "4ca90d45-13f4-4004-8de1-eccf0ac3c6ab", "tags": []}, "type": "CategoricalTickFormatter", "id": "4ca90d45-13f4-4004-8de1-eccf0ac3c6ab"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "62944075-58c8-42a5-a355-808516772de9"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "a063802b-1f1b-4fad-9f84-300856d48059"}, "ticker": {"type": "BasicTicker", "id": "dfd6b33d-2558-4e2e-81c2-1e36a8e73f13"}, "id": "58c8a576-8ff8-4aab-9f76-f2d2ab3bd259"}, "type": "LinearAxis", "id": "58c8a576-8ff8-4aab-9f76-f2d2ab3bd259"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [10.5, 5.5, 4.0, 13.0, 7.0, 3.5], "Platform": [21, 11, 8, 26, 14, 7], "catFx-Team": ["N/A (not relevant to me):0.666666666667", "Cut all investment:0.666666666667", "Cut some investment:0.666666666667", "Keep about the same:0.666666666667", "Increase investment:0.666666666667", "Drastically increase investment:0.666666666667"], "cat": ["N/A (not relevant to me)", "Cut all investment", "Cut some investment", "Keep about the same", "Increase investment", "Drastically increase investment"], "midPlatform": [10.5, 5.5, 4.0, 13.0, 7.0, 3.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [42.0, 21.0, 13.0, 47.0, 30.0, 15.0], "catPlatform": ["N/A (not relevant to me):0.333333333333", "Cut all investment:0.333333333333", "Cut some investment:0.333333333333", "Keep about the same:0.333333333333", "Increase investment:0.333333333333", "Drastically increase investment:0.333333333333"], "stackedFx-Team": [31.5, 16.0, 10.5, 36.5, 22.0, 11.0], "midFx-Team": [10.5, 5.0, 2.5, 10.5, 8.0, 4.0], "Fx-Team": [21, 10, 5, 21, 16, 8]}, "id": "7ba8e871-2e68-45d1-a5e3-9698d3843372"}, "type": "ColumnDataSource", "id": "7ba8e871-2e68-45d1-a5e3-9698d3843372"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "Average", "Above average"], "doc": null, "tags": [], "id": "3217fc96-547a-43b2-b140-5157b8663c33"}, "type": "FactorRange", "id": "3217fc96-547a-43b2-b140-5157b8663c33"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a12de8f6-e000-4e8f-831d-b9d9fc2fc2a3"}, "orientation": "top_left", "tags": [], "doc": null, "id": "d9cf3048-8f03-4560-a795-07e8d12f2271", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "268014a1-5e51-476e-a11a-303778e13ae5"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "87bb3bca-de48-4261-abc8-77d5befc2d83"}]]]}, "type": "Legend", "id": "d9cf3048-8f03-4560-a795-07e8d12f2271"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [2.0, 9.5, 14.0, 7.5, 6.5, 1.5, 15.0, 16.0], "Platform": [4, 19, 28, 15, 13, 3, 30, 32], "catFx-Team": ["All Other Responses:0.666666666667", "Better workflows:0.666666666667", "Easier to use / Git is too hard:0.666666666667", "I don't know Git:0.666666666667", "More customizeable:0.666666666667", "More features:0.666666666667", "Mozilla-specific added functionality (MozReview, firefoxtree, mozext, bzexport, etc):0.666666666667", "Working with the canonical tool for mozilla-central seems easiest/best:0.666666666667"], "cat": ["All Other Responses", "Better workflows", "Easier to use / Git is too hard", "I don't know Git", "More customizeable", "More features", "Mozilla-specific added functionality (MozReview, firefoxtree, mozext, bzexport, etc)", "Working with the canonical tool for mozilla-central seems easiest/best"], "midPlatform": [2.0, 9.5, 14.0, 7.5, 6.5, 1.5, 15.0, 16.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [4.0, 29.0, 55.0, 23.0, 26.0, 21.0, 48.0, 59.0], "catPlatform": ["All Other Responses:0.333333333333", "Better workflows:0.333333333333", "Easier to use / Git is too hard:0.333333333333", "I don't know Git:0.333333333333", "More customizeable:0.333333333333", "More features:0.333333333333", "Mozilla-specific added functionality (MozReview, firefoxtree, mozext, bzexport, etc):0.333333333333", "Working with the canonical tool for mozilla-central seems easiest/best:0.333333333333"], "stackedFx-Team": [4.0, 24.0, 41.5, 19.0, 19.5, 12.0, 39.0, 45.5], "midFx-Team": [0.0, 5.0, 13.5, 4.0, 6.5, 9.0, 9.0, 13.5], "Fx-Team": [0, 10, 27, 8, 13, 18, 18, 27]}, "id": "ecdd17b2-7739-423e-b7e2-edf49cd39d93"}, "type": "ColumnDataSource", "id": "ecdd17b2-7739-423e-b7e2-edf49cd39d93"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "b8fc0587-42e8-4658-9314-5926a5529de4"}, "orientation": "top_left", "tags": [], "doc": null, "id": "b25bc6e7-1c41-46e6-b821-4b01f7835dac", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "2205b274-0519-4045-93e6-0c6213aa30be"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "976271c4-971a-40d4-899c-2975f5ee857c"}]]]}, "type": "Legend", "id": "b25bc6e7-1c41-46e6-b821-4b01f7835dac"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "b3957176-ca40-47fe-a90f-cfb668cc9a38"}, "tags": [], "doc": null, "selection_glyph": null, "id": "e0ffab6e-e60f-49e6-9cfc-d9055207546a", "glyph": {"type": "Rect", "id": "b8f0993b-8df4-4a1c-8aa4-4dc016baa0ed"}}, "type": "GlyphRenderer", "id": "e0ffab6e-e60f-49e6-9cfc-d9055207546a"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "e329563d-7487-4cc9-a7a1-1d0665bf4881"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "90266451-e64b-44bc-814b-bda9512b9014"}, "ticker": {"type": "CategoricalTicker", "id": "287e08ce-329b-4579-b7e2-146eeedbea5b"}, "id": "7b1be884-c0a8-4f61-abec-06de2de6c96e"}, "type": "CategoricalAxis", "id": "7b1be884-c0a8-4f61-abec-06de2de6c96e"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "5c4bbcf7-2176-4cbe-8036-1486def97d63"}, "orientation": "top_left", "tags": [], "doc": null, "id": "b2649822-b194-4e71-919c-c90e4825c27a", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "52be267a-5201-4a4d-9c74-c421cc3bf742"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "7066ccae-adb3-48ec-a610-b8044b517190"}]]]}, "type": "Legend", "id": "b2649822-b194-4e71-919c-c90e4825c27a"}, {"attributes": {"end": 23.1, "callback": null, "doc": null, "tags": [], "start": 0, "id": "bda5ca8b-a895-4798-98b8-7a38c95634e1"}, "type": "Range1d", "id": "bda5ca8b-a895-4798-98b8-7a38c95634e1"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "10eaf7bf-d428-4114-b040-2a63835d1942"}, "tags": [], "doc": null, "selection_glyph": null, "id": "dcc14581-d34e-4206-931f-d2ca1845a32e", "glyph": {"type": "Rect", "id": "cf261a56-8e23-44e2-b5cf-587e24ae8017"}}, "type": "GlyphRenderer", "id": "dcc14581-d34e-4206-931f-d2ca1845a32e"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "ed30ef7c-10b1-4814-b1d7-45ac3084d149"}, "type": "BasicTicker", "id": "ed30ef7c-10b1-4814-b1d7-45ac3084d149"}, {"attributes": {"doc": null, "id": "5d3eca8e-2c7d-4bf3-aa24-74c6b88301cd", "tags": []}, "type": "BasicTickFormatter", "id": "5d3eca8e-2c7d-4bf3-aa24-74c6b88301cd"}, {"attributes": {"doc": null, "id": "40aee55e-dbb1-45fc-87c9-03c4e2934a79", "tags": []}, "type": "CategoricalTickFormatter", "id": "40aee55e-dbb1-45fc-87c9-03c4e2934a79"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "7cbc46a2-abdb-489d-96ee-2fce123eeee1"}, "tags": [], "doc": null, "selection_glyph": null, "id": "97f6427a-250e-4e4b-bdeb-6548bcf47908", "glyph": {"type": "Rect", "id": "91b1ec06-50d6-44ad-bbad-51fef038ea2a"}}, "type": "GlyphRenderer", "id": "97f6427a-250e-4e4b-bdeb-6548bcf47908"}, {"attributes": {"doc": null, "id": "d8257861-8da1-4356-90a0-af673249e92c", "tags": []}, "type": "BasicTickFormatter", "id": "d8257861-8da1-4356-90a0-af673249e92c"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "759bc4c3-3f29-4f74-aefd-aa8ce4beee7b"}, "type": "BasicTicker", "id": "759bc4c3-3f29-4f74-aefd-aa8ce4beee7b"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "Not at all satisfied", "It's not horrible, but it's still pretty bad", "It sucks a little", "It's neither bad nor good", "It's OK, I guess", "It's pretty good"], "doc": null, "tags": [], "id": "f47eb812-5574-4884-aae0-8a321665b620"}, "type": "FactorRange", "id": "f47eb812-5574-4884-aae0-8a321665b620"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "ebe94da2-7196-4c49-8836-e75f6338c0a6"}, "type": "ToolEvents", "id": "ebe94da2-7196-4c49-8836-e75f6338c0a6"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "181f2ab6-0b37-4fcd-a366-054a17addea7"}, "type": "Rect", "id": "181f2ab6-0b37-4fcd-a366-054a17addea7"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "4717f3a3-3e9a-4b14-9c4d-974142bbcd5a"}, "type": "BasicTicker", "id": "4717f3a3-3e9a-4b14-9c4d-974142bbcd5a"}, {"attributes": {"doc": null, "id": "2be52a83-813c-4e4d-a613-fb6af667d635", "tags": []}, "type": "CategoricalTickFormatter", "id": "2be52a83-813c-4e4d-a613-fb6af667d635"}, {"attributes": {"doc": null, "id": "1d23478b-e8b5-4449-969a-f3ca2a7709a2", "tags": []}, "type": "BasicTickFormatter", "id": "1d23478b-e8b5-4449-969a-f3ca2a7709a2"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "a58b9b9e-6cbd-4c91-86be-fba9d10cecb3"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "c82ae66b-acf3-4376-abc4-a3453614ed5c"}, "ticker": {"type": "BasicTicker", "id": "c1ec0b42-abc4-4036-aaf6-1739ff962fb0"}, "id": "dc2de477-e692-4b86-a877-bde5256f2a7c"}, "type": "LinearAxis", "id": "dc2de477-e692-4b86-a877-bde5256f2a7c"}, {"subtype": "Chart", "type": "Plot", "id": "169b8b79-dac0-437c-8b81-9f6098e73ff1", "attributes": {"x_range": {"type": "FactorRange", "id": "c205ba4b-8ab6-48e1-9086-0192cfd4032e"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "e7775398-0993-46b1-95c1-49968ce24c9f"}, "title": "Do you use Treeherder?", "renderers": [{"type": "CategoricalAxis", "id": "7906f6d1-db29-42a5-a838-65454d40820f"}, {"type": "LinearAxis", "id": "0a03e7df-9bc7-4ed8-ac37-af5fd2cd5e61"}, {"type": "Grid", "id": "663cf8f7-c9c7-49fc-90b4-7ca306968e38"}, {"type": "GlyphRenderer", "id": "9fc5fb8f-a18f-49e0-b972-b911baeeff8b"}, {"type": "GlyphRenderer", "id": "2b1c0e21-6ec6-4dea-b690-0604779d5444"}, {"type": "Legend", "id": "39fcd32d-7ca1-4743-98bb-f6abd8499960"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "3b160d35-a6fc-4b41-a368-502aebea0a2a"}, "plot_height": 560, "doc": null, "id": "169b8b79-dac0-437c-8b81-9f6098e73ff1", "tools": [], "below": [{"type": "CategoricalAxis", "id": "7906f6d1-db29-42a5-a838-65454d40820f"}], "left": [{"type": "LinearAxis", "id": "0a03e7df-9bc7-4ed8-ac37-af5fd2cd5e61"}]}}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "c8ef8fbe-55dd-4985-a66c-a2e8314425f3"}, "type": "Rect", "id": "c8ef8fbe-55dd-4985-a66c-a2e8314425f3"}, {"attributes": {"doc": null, "id": "90266451-e64b-44bc-814b-bda9512b9014", "tags": []}, "type": "CategoricalTickFormatter", "id": "90266451-e64b-44bc-814b-bda9512b9014"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "af3b6a95-735b-47af-8df3-fc5a8136c2da"}, "tags": [], "doc": null, "selection_glyph": null, "id": "4a7d09af-35a8-476a-8007-ff4ec089b002", "glyph": {"type": "Rect", "id": "3de9ed7d-f910-4599-9dd9-bdc1e89a3023"}}, "type": "GlyphRenderer", "id": "4a7d09af-35a8-476a-8007-ff4ec089b002"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "36e4e267-2fc2-456c-baf3-f5dfb64ce2bb"}, "orientation": "top_left", "tags": [], "doc": null, "id": "ac01a528-cad2-441d-8e3c-fabfc781728b", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "bf6e6044-f58c-4bc1-b6a2-5ec1b414e3bc"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "72a04f59-6d17-4247-86fa-a4f6325ac458"}]]]}, "type": "Legend", "id": "ac01a528-cad2-441d-8e3c-fabfc781728b"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "b2392387-88d1-4763-b858-fec87e036077"}, "tags": [], "doc": null, "selection_glyph": null, "id": "2a689a0e-6457-4ff5-98fb-89d2f56b7812", "glyph": {"type": "Rect", "id": "fe0ce7a5-c96f-46a6-ae0d-83ee6cb96dbd"}}, "type": "GlyphRenderer", "id": "2a689a0e-6457-4ff5-98fb-89d2f56b7812"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "7dcebdb6-615b-4277-82d4-d72c573011a1"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "dacfeebe-7f64-42d2-a9c7-ba9b77f0872b"}, "id": "9342bb48-3d2d-4241-a117-8ef14e04e953"}, "type": "Grid", "id": "9342bb48-3d2d-4241-a117-8ef14e04e953"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "1 = little impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "4075fd8a-8cba-43d4-9ed4-5f9d6c11c243"}, "type": "FactorRange", "id": "4075fd8a-8cba-43d4-9ed4-5f9d6c11c243"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "03813c9d-f7c2-448c-83da-a990dc513852"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "e0c56f73-0e70-4c70-87ea-13ad42d7ad1d"}, "id": "4322613c-0fd9-47a1-b8ef-2cabb0faa4e3"}, "type": "Grid", "id": "4322613c-0fd9-47a1-b8ef-2cabb0faa4e3"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2], "stackedPlatform": [5.5, 25.0, 15.5], "Platform": [11, 50, 31], "catFx-Team": ["All Other Responses:0.666666666667", "Average:0.666666666667", "Above average:0.666666666667"], "cat": ["All Other Responses", "Average", "Above average"], "midPlatform": [5.5, 25.0, 15.5], "width": [0.8, 0.8, 0.8], "zero": [27.0, 101.0, 49.0], "catPlatform": ["All Other Responses:0.333333333333", "Average:0.333333333333", "Above average:0.333333333333"], "stackedFx-Team": [19.0, 75.5, 40.0], "midFx-Team": [8.0, 25.5, 9.0], "Fx-Team": [16, 51, 18]}, "id": "0438e339-face-4074-9019-77d01fae3a6e"}, "type": "ColumnDataSource", "id": "0438e339-face-4074-9019-77d01fae3a6e"}, {"attributes": {"doc": null, "id": "6deed7f0-8bab-4a42-9f4c-6e9cd4c592b1", "tags": []}, "type": "CategoricalTickFormatter", "id": "6deed7f0-8bab-4a42-9f4c-6e9cd4c592b1"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "3b1c2ec7-dc57-431e-a39d-e80659cff3ba"}, "type": "BasicTicker", "id": "3b1c2ec7-dc57-431e-a39d-e80659cff3ba"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "c149876c-784c-45c1-b687-92d4d7658f5f"}, "tags": [], "doc": null, "selection_glyph": null, "id": "b04678e8-c72f-4522-81eb-b3679059a088", "glyph": {"type": "Rect", "id": "707f6039-a9ee-455c-be0d-7e96ac37443a"}}, "type": "GlyphRenderer", "id": "b04678e8-c72f-4522-81eb-b3679059a088"}, {"attributes": {"doc": null, "id": "b0fd2362-6b49-47dc-b8ca-d68619bf134f", "tags": []}, "type": "CategoricalTickFormatter", "id": "b0fd2362-6b49-47dc-b8ca-d68619bf134f"}, {"attributes": {"doc": null, "id": "b0af54c3-8e37-4f08-9526-bb57626e582b", "tags": []}, "type": "CategoricalTicker", "id": "b0af54c3-8e37-4f08-9526-bb57626e582b"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "68bf4f73-1acf-410e-a69f-8003d8a9b3b9"}, "orientation": "top_left", "tags": [], "doc": null, "id": "f4b46045-f1c8-4dbb-a965-5e9ca1513526", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "2a689a0e-6457-4ff5-98fb-89d2f56b7812"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "902577d9-5a74-4b20-ac4b-0762ac79a88d"}]]]}, "type": "Legend", "id": "f4b46045-f1c8-4dbb-a965-5e9ca1513526"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "40f555e7-ccbf-479c-9c23-75177a31e162"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "b93d67e5-f52a-439c-80c5-83d6d8deae5c"}, "ticker": {"type": "BasicTicker", "id": "6dc8eb46-29b9-4bcc-9866-142310dea838"}, "id": "df25009b-b30f-4693-8baf-bdcf4889b3bd"}, "type": "LinearAxis", "id": "df25009b-b30f-4693-8baf-bdcf4889b3bd"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "52077e32-8dba-451d-8bf5-8c6b9d004552"}, "tags": [], "doc": null, "selection_glyph": null, "id": "04da16ea-1962-4427-92cf-10779f379d3c", "glyph": {"type": "Rect", "id": "1e24ed1f-d104-4300-a707-d7eeeb254cf3"}}, "type": "GlyphRenderer", "id": "04da16ea-1962-4427-92cf-10779f379d3c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "059cd9ac-98c3-44b6-83db-cc05b1f959ec"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "fe730f5a-6b89-4d90-967e-80ad76ac4957"}, "ticker": {"type": "CategoricalTicker", "id": "2b4efcb4-c849-449b-b2eb-d7afb30140dc"}, "id": "45aa1793-2abe-4a76-99d7-159262cf3b12"}, "type": "CategoricalAxis", "id": "45aa1793-2abe-4a76-99d7-159262cf3b12"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "1509d362-db1c-4e63-a6db-1d80287161d6"}, "tags": [], "doc": null, "selection_glyph": null, "id": "87bb3bca-de48-4261-abc8-77d5befc2d83", "glyph": {"type": "Rect", "id": "a4e670fb-f11b-4ceb-a104-4333bad80652"}}, "type": "GlyphRenderer", "id": "87bb3bca-de48-4261-abc8-77d5befc2d83"}, {"subtype": "Chart", "type": "Plot", "id": "1f86723f-f8e2-456b-ae4b-4e2f52bafd70", "attributes": {"x_range": {"type": "FactorRange", "id": "b1e0bf99-6853-4e51-95fc-f1b146d74257"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "57c6f56b-2240-46f6-b436-ba2691530ad9"}, "title": "Thinking of the patch review and landing process, please rank the following potential improvements in terms of their impact on your productivity. [Implement an automated landing system that pushes commits for me and intelligently lands things after they have passed test automation]", "renderers": [{"type": "CategoricalAxis", "id": "90282a7c-53f0-4a5e-8653-6d1e88734baf"}, {"type": "LinearAxis", "id": "4bd8bcfc-0d1d-459c-aa4c-94e4d8d1a7ed"}, {"type": "Grid", "id": "7e0f4451-03cc-4b35-a85c-fe07395b8780"}, {"type": "GlyphRenderer", "id": "a46b875b-7f94-446b-a871-fca40de1c217"}, {"type": "GlyphRenderer", "id": "6d0fc755-4ec0-4338-86a2-7f81847d2a70"}, {"type": "Legend", "id": "4b1ed0bb-ab11-4a2a-a056-e8e07d84efea"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "b3e1eb35-7ff2-473b-9737-9478c49eb62d"}, "plot_height": 560, "doc": null, "id": "1f86723f-f8e2-456b-ae4b-4e2f52bafd70", "tools": [], "below": [{"type": "CategoricalAxis", "id": "90282a7c-53f0-4a5e-8653-6d1e88734baf"}], "left": [{"type": "LinearAxis", "id": "4bd8bcfc-0d1d-459c-aa4c-94e4d8d1a7ed"}]}}, {"attributes": {"doc": null, "id": "7819bd81-dff2-4207-83cc-efc5afe2e1b0", "tags": []}, "type": "CategoricalTicker", "id": "7819bd81-dff2-4207-83cc-efc5afe2e1b0"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "b7df0c17-543b-43a7-8b3a-eb117e975f98"}, "type": "BasicTicker", "id": "b7df0c17-543b-43a7-8b3a-eb117e975f98"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "74ffa22b-24db-4aad-bbc8-b8b1cb5424ca"}, "type": "ToolEvents", "id": "74ffa22b-24db-4aad-bbc8-b8b1cb5424ca"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "4269594a-2479-4191-9396-178d5bc6b893"}, "type": "Rect", "id": "4269594a-2479-4191-9396-178d5bc6b893"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "84cb5802-6b8a-4467-9fbb-2e6b47c12c3f"}, "tags": [], "doc": null, "selection_glyph": null, "id": "9fc5fb8f-a18f-49e0-b972-b911baeeff8b", "glyph": {"type": "Rect", "id": "8de5a563-c0c3-4353-b637-7f1e99ead304"}}, "type": "GlyphRenderer", "id": "9fc5fb8f-a18f-49e0-b972-b911baeeff8b"}, {"subtype": "Chart", "type": "Plot", "id": "ce0e6eca-a674-4977-99cb-6652b2d7fe92", "attributes": {"x_range": {"type": "FactorRange", "id": "2bd985c5-ce2f-4b92-b2d1-305bceeacd18"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "e1e9bc73-207b-47eb-8c9a-90b2cbd8c42d"}, "title": "How satisfied are you with the following aspects of MozReview? [Interface for leaving comments / reviews]", "renderers": [{"type": "CategoricalAxis", "id": "67151e0c-a258-4516-be83-a78f1c50c5a3"}, {"type": "LinearAxis", "id": "7cd26243-6a4e-4f94-a392-cdf5d4d2d530"}, {"type": "Grid", "id": "8ae77ad2-c317-48d5-98ac-56f2a207515d"}, {"type": "GlyphRenderer", "id": "925f50a1-f7f1-4237-8672-39e892556e60"}, {"type": "GlyphRenderer", "id": "186980c8-a155-403b-9532-3cd651b2caad"}, {"type": "Legend", "id": "5faa2c99-0073-44ef-b14d-a7588b7ac05b"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "d251b8f6-edb9-4a44-b45d-158a16ff19a5"}, "plot_height": 560, "doc": null, "id": "ce0e6eca-a674-4977-99cb-6652b2d7fe92", "tools": [], "below": [{"type": "CategoricalAxis", "id": "67151e0c-a258-4516-be83-a78f1c50c5a3"}], "left": [{"type": "LinearAxis", "id": "7cd26243-6a4e-4f94-a392-cdf5d4d2d530"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "e82dd297-79b0-46eb-8c2c-c792cec26748"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "d80b4936-63b2-4311-b027-54c39cb00530"}, "ticker": {"type": "CategoricalTicker", "id": "49240545-244d-4ede-bac6-56ac43e886c7"}, "id": "1135d6ef-b803-49c6-99b1-972962800bb9"}, "type": "CategoricalAxis", "id": "1135d6ef-b803-49c6-99b1-972962800bb9"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "eada517f-02bb-43c7-895f-d5093b9cf974"}, "type": "ToolEvents", "id": "eada517f-02bb-43c7-895f-d5093b9cf974"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "dacfeebe-7f64-42d2-a9c7-ba9b77f0872b"}, "type": "BasicTicker", "id": "dacfeebe-7f64-42d2-a9c7-ba9b77f0872b"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "f40e4638-6026-4020-a8a1-b0c4a670ed15"}, "type": "Rect", "id": "f40e4638-6026-4020-a8a1-b0c4a670ed15"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "571bb8bf-e9ce-462c-9c6f-656ff9ab7159"}, "type": "Rect", "id": "571bb8bf-e9ce-462c-9c6f-656ff9ab7159"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2], "stackedPlatform": [2.0, 20.0, 3.5, 23.5], "Platform": [4, 40, 7, 47], "catFx-Team": ["All Other Responses:0.666666666667", "N/A:0.666666666667", "About the same:0.666666666667", "Gotten better:0.666666666667"], "cat": ["All Other Responses", "N/A", "About the same", "Gotten better"], "midPlatform": [2.0, 20.0, 3.5, 23.5], "width": [0.8, 0.8, 0.8, 0.8], "zero": [4.0, 72.0, 23.0, 98.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A:0.333333333333", "About the same:0.333333333333", "Gotten better:0.333333333333"], "stackedFx-Team": [4.0, 56.0, 15.0, 72.5], "midFx-Team": [0.0, 16.0, 8.0, 25.5], "Fx-Team": [0, 32, 16, 51]}, "id": "658f20e7-2ee8-4885-9ad8-3038d8512366"}, "type": "ColumnDataSource", "id": "658f20e7-2ee8-4885-9ad8-3038d8512366"}, {"attributes": {"doc": null, "id": "fba77db0-9c43-4685-9136-09cfa3deef17", "tags": []}, "type": "CategoricalTicker", "id": "fba77db0-9c43-4685-9136-09cfa3deef17"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "e82dd297-79b0-46eb-8c2c-c792cec26748"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "6ef6438d-bc28-4177-8d64-660ee3e09163"}, "ticker": {"type": "BasicTicker", "id": "d0154d52-5c7b-43fa-a91e-8258c68b5f85"}, "id": "a3638a99-73f3-4589-9db0-fb8b56435927"}, "type": "LinearAxis", "id": "a3638a99-73f3-4589-9db0-fb8b56435927"}, {"attributes": {"doc": null, "id": "e36a06f5-5f79-46b2-991a-e197e501c28c", "tags": []}, "type": "CategoricalTickFormatter", "id": "e36a06f5-5f79-46b2-991a-e197e501c28c"}, {"attributes": {"end": 35.2, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "7744a65a-a061-4c6b-aeb3-2724e39839d0"}, "type": "Range1d", "id": "7744a65a-a061-4c6b-aeb3-2724e39839d0"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fd0867ed-5ca0-4e0f-a6af-aab4fb0da736"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "194b2e02-60e1-4e66-b423-12e4931af471"}, "ticker": {"type": "BasicTicker", "id": "257ffc7f-2a71-4712-845e-cc2c6371693e"}, "id": "51d011a2-fa0d-4985-b4d2-7b88095335dc"}, "type": "LinearAxis", "id": "51d011a2-fa0d-4985-b4d2-7b88095335dc"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "b59c15be-8372-48d3-b8e1-5e3b6afdcc0e"}, "type": "BasicTicker", "id": "b59c15be-8372-48d3-b8e1-5e3b6afdcc0e"}, {"attributes": {"end": 71.5, "callback": null, "doc": null, "tags": [], "start": 0, "id": "870399d7-ee09-4484-93db-b3ff90c3f315"}, "type": "Range1d", "id": "870399d7-ee09-4484-93db-b3ff90c3f315"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "c9aba8b6-2afe-4a4b-9485-72b7019c79b5"}, "orientation": "top_left", "tags": [], "doc": null, "id": "be7ff2aa-58c2-43d9-84f6-116f52560712", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "a2a8880c-9d00-437b-b855-c42156c36734"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "dd9c2c34-577e-4ad4-b207-2789553500f6"}]]]}, "type": "Legend", "id": "be7ff2aa-58c2-43d9-84f6-116f52560712"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "d0433305-56be-4e09-b9d4-66d916c2e5c8"}, "tags": [], "doc": null, "selection_glyph": null, "id": "7242abcf-45cc-47e5-a63b-164f5c5bfc5e", "glyph": {"type": "Rect", "id": "5422fb06-7f37-4c17-ac59-2289b71a9ac9"}}, "type": "GlyphRenderer", "id": "7242abcf-45cc-47e5-a63b-164f5c5bfc5e"}, {"attributes": {"doc": null, "id": "5db009c0-c5ac-41e1-afb2-30ea1590bfa6", "tags": []}, "type": "BasicTickFormatter", "id": "5db009c0-c5ac-41e1-afb2-30ea1590bfa6"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "622aa022-2fce-44fd-bdb6-55dc16000e27"}, "tags": [], "doc": null, "selection_glyph": null, "id": "bab979b5-5c08-4f54-afde-e67a5d6cd724", "glyph": {"type": "Rect", "id": "0d5a265e-923f-4426-93b7-ad35470e8c80"}}, "type": "GlyphRenderer", "id": "bab979b5-5c08-4f54-afde-e67a5d6cd724"}, {"attributes": {"doc": null, "id": "eccf33ca-8fa5-443a-be42-c87e1b1ff89f", "tags": []}, "type": "CategoricalTicker", "id": "eccf33ca-8fa5-443a-be42-c87e1b1ff89f"}, {"attributes": {"doc": null, "id": "cf57ce6f-28d5-43e3-8aa8-204d3450220c", "tags": []}, "type": "CategoricalTickFormatter", "id": "cf57ce6f-28d5-43e3-8aa8-204d3450220c"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "07199e6a-f16d-4717-ab6d-6cab21bb0e99"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "8192c498-f6a8-437d-8f5a-627794045bf7"}, "id": "5d6fefd5-99cf-435e-afff-a2f6e4a3b9fa"}, "type": "Grid", "id": "5d6fefd5-99cf-435e-afff-a2f6e4a3b9fa"}, {"attributes": {"doc": null, "id": "713f926e-b8c4-4d33-a3ae-284ea5dbe397", "tags": []}, "type": "BasicTickFormatter", "id": "713f926e-b8c4-4d33-a3ae-284ea5dbe397"}, {"subtype": "Chart", "type": "Plot", "id": "fdce97de-63d3-4989-b605-146792ec8c17", "attributes": {"x_range": {"type": "FactorRange", "id": "78edc435-e00b-4123-9303-83b374bf1fd0"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "62ca6b90-8c03-4adc-91c5-dc28f3e59ba8"}, "title": "How long have you worked at Mozilla?", "renderers": [{"type": "CategoricalAxis", "id": "2e938853-0133-40fb-a2fc-3fa368145b80"}, {"type": "LinearAxis", "id": "b7215238-b8b9-40be-bed3-c8bc331a8638"}, {"type": "Grid", "id": "5e5c01c1-b509-43ee-ba0d-446b7c1f83dd"}, {"type": "GlyphRenderer", "id": "ff130f7c-e7d9-43d1-9f8b-765163f04d33"}, {"type": "GlyphRenderer", "id": "b4bf40fb-b3a1-4def-b05f-5f531ba48f20"}, {"type": "Legend", "id": "300095f6-92e0-4fd1-8540-c4c5132818cc"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "64cb9ce0-a727-4336-9e2a-219ac73ee461"}, "plot_height": 560, "doc": null, "id": "fdce97de-63d3-4989-b605-146792ec8c17", "tools": [], "below": [{"type": "CategoricalAxis", "id": "2e938853-0133-40fb-a2fc-3fa368145b80"}], "left": [{"type": "LinearAxis", "id": "b7215238-b8b9-40be-bed3-c8bc331a8638"}]}}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "bdcd7035-05f6-487f-ae98-b7bf894b20a7"}, "tags": [], "doc": null, "selection_glyph": null, "id": "7e689d8d-93ac-4ebd-a28a-dbc0f21b08c1", "glyph": {"type": "Rect", "id": "ec2937d0-3736-48d7-9fe0-7c42aa9346ba"}}, "type": "GlyphRenderer", "id": "7e689d8d-93ac-4ebd-a28a-dbc0f21b08c1"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "29d6beea-5b7b-4e2d-90e6-36ba9601f965"}, "type": "BasicTicker", "id": "29d6beea-5b7b-4e2d-90e6-36ba9601f965"}, {"attributes": {"doc": null, "id": "87db72e3-f2d4-4f9c-ae8d-9e535a539076", "tags": []}, "type": "CategoricalTicker", "id": "87db72e3-f2d4-4f9c-ae8d-9e535a539076"}, {"attributes": {"end": 73.7, "callback": null, "doc": null, "tags": [], "start": 0, "id": "511c8633-a0a1-43e9-8014-301baf70577d"}, "type": "Range1d", "id": "511c8633-a0a1-43e9-8014-301baf70577d"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "428e5f98-2f83-4b91-b36b-414ece060d10"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "06cd2c2d-3fc7-45de-8ac0-c7d868f35ce7"}, "ticker": {"type": "BasicTicker", "id": "f48a2fba-a132-4113-9594-5160f229c393"}, "id": "3549d312-69cc-4102-a426-4e030db8a28e"}, "type": "LinearAxis", "id": "3549d312-69cc-4102-a426-4e030db8a28e"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "77d1169c-0b2a-4a20-9899-1d963b34c3b9"}, "orientation": "top_left", "tags": [], "doc": null, "id": "5b827168-827e-4b9a-b3aa-9bf1acbc9486", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "c99de7ed-41a7-425b-b4aa-86d18737ceb8"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "a4ac14d1-a65f-4c00-a16f-f68500516e65"}]]]}, "type": "Legend", "id": "5b827168-827e-4b9a-b3aa-9bf1acbc9486"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [5.5, 15.5, 15.5, 9.0, 3.5], "Platform": [11, 31, 31, 18, 7], "catFx-Team": ["1 - no impact:0.666666666667", "2 - little impact:0.666666666667", "3 - a fair amount of impact:0.666666666667", "4 - a significant amount of impact:0.666666666667", "5 - an extremely frustrating amount of impact:0.666666666667"], "cat": ["1 - no impact", "2 - little impact", "3 - a fair amount of impact", "4 - a significant amount of impact", "5 - an extremely frustrating amount of impact"], "midPlatform": [5.5, 15.5, 15.5, 9.0, 3.5], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [16.0, 82.0, 55.0, 28.0, 15.0], "catPlatform": ["1 - no impact:0.333333333333", "2 - little impact:0.333333333333", "3 - a fair amount of impact:0.333333333333", "4 - a significant amount of impact:0.333333333333", "5 - an extremely frustrating amount of impact:0.333333333333"], "stackedFx-Team": [13.5, 56.5, 43.0, 23.0, 11.0], "midFx-Team": [2.5, 25.5, 12.0, 5.0, 4.0], "Fx-Team": [5, 51, 24, 10, 8]}, "id": "c1b6d97c-b795-4308-9a69-c61c7865ae6b"}, "type": "ColumnDataSource", "id": "c1b6d97c-b795-4308-9a69-c61c7865ae6b"}, {"attributes": {"doc": null, "id": "42c230be-df07-404a-a5b6-dba03af104a1", "tags": []}, "type": "BasicTickFormatter", "id": "42c230be-df07-404a-a5b6-dba03af104a1"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "916ef1e7-3d90-4048-81d0-9ec15f8ea660"}, "tags": [], "doc": null, "selection_glyph": null, "id": "ff040e58-d18a-44cc-b8f0-2768d03b2ebe", "glyph": {"type": "Rect", "id": "dbc32cfa-298c-497a-a216-5c36cd76e942"}}, "type": "GlyphRenderer", "id": "ff040e58-d18a-44cc-b8f0-2768d03b2ebe"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "8d37317e-ec95-478c-9eb4-36688e87a471"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "cf57ce6f-28d5-43e3-8aa8-204d3450220c"}, "ticker": {"type": "CategoricalTicker", "id": "a8f30599-97e5-421d-81fe-ab6b0d79da56"}, "id": "65262506-ee03-40dc-a623-b84a26442884"}, "type": "CategoricalAxis", "id": "65262506-ee03-40dc-a623-b84a26442884"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "f36211ad-7644-4302-88a4-ae6e74612306"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "6821067b-4ff0-4add-aefb-d3cd67b00ace"}, "ticker": {"type": "CategoricalTicker", "id": "6ee41b3b-da7f-4e65-8891-f5f6b9d17ea5"}, "id": "cb8308e8-846e-4f40-a953-dae0a095b073"}, "type": "CategoricalAxis", "id": "cb8308e8-846e-4f40-a953-dae0a095b073"}, {"attributes": {"doc": null, "id": "8d5555f1-203c-45ea-92c0-8c90f6c3d014", "tags": []}, "type": "BasicTickFormatter", "id": "8d5555f1-203c-45ea-92c0-8c90f6c3d014"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "721c3dc0-2d48-4839-95d3-71a4009420ee"}, "tags": [], "doc": null, "selection_glyph": null, "id": "7538d581-6ae0-4bea-8918-ccf2beeed05d", "glyph": {"type": "Rect", "id": "6ed0bb60-9e76-4b23-aab0-74029cc127cb"}}, "type": "GlyphRenderer", "id": "7538d581-6ae0-4bea-8918-ccf2beeed05d"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "38a278a8-d074-402e-82ee-3d3b111612b9"}, "type": "Rect", "id": "38a278a8-d074-402e-82ee-3d3b111612b9"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "b576d1a0-61b4-4617-b798-6e12969f4a51"}, "orientation": "top_left", "tags": [], "doc": null, "id": "156c7e1f-ee65-4adb-9c50-aa1086e8f969", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "e1113e67-01f6-48c0-b598-34be37ec3190"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "eed8c028-2782-4918-a330-f67ecc3175ab"}]]]}, "type": "Legend", "id": "156c7e1f-ee65-4adb-9c50-aa1086e8f969"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "f55cb560-4c4a-4804-95ee-17bfa510fc96"}, "type": "Rect", "id": "f55cb560-4c4a-4804-95ee-17bfa510fc96"}, {"attributes": {"end": 33.0, "callback": null, "doc": null, "tags": [], "start": 0, "id": "2c558910-f5ec-408b-bdde-f11c072f3bd5"}, "type": "Range1d", "id": "2c558910-f5ec-408b-bdde-f11c072f3bd5"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [1.0, 14.5, 8.5, 18.5, 50.0, 6.0], "Platform": [2, 29, 17, 37, 100, 12], "catFx-Team": ["All Other Responses:0.666666666667", "Firefox OS:0.666666666667", "Firefox for Android:0.666666666667", "Firefox for Desktop:0.666666666667", "Gecko / Platform:0.666666666667", "Product Support (automation, tools, infrastructure, etc):0.666666666667"], "cat": ["All Other Responses", "Firefox OS", "Firefox for Android", "Firefox for Desktop", "Gecko / Platform", "Product Support (automation, tools, infrastructure, etc)"], "midPlatform": [1.0, 14.5, 8.5, 18.5, 50.0, 6.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [7.0, 42.0, 35.0, 137.0, 143.0, 30.0], "catPlatform": ["All Other Responses:0.333333333333", "Firefox OS:0.333333333333", "Firefox for Android:0.333333333333", "Firefox for Desktop:0.333333333333", "Gecko / Platform:0.333333333333", "Product Support (automation, tools, infrastructure, etc):0.333333333333"], "stackedFx-Team": [4.5, 35.5, 26.0, 87.0, 121.5, 21.0], "midFx-Team": [2.5, 6.5, 9.0, 50.0, 21.5, 9.0], "Fx-Team": [5, 13, 18, 100, 43, 18]}, "id": "9f98163a-3e68-41fd-aa95-4a83d8657eab"}, "type": "ColumnDataSource", "id": "9f98163a-3e68-41fd-aa95-4a83d8657eab"}, {"attributes": {"doc": null, "id": "7b1a830a-296d-42a1-ad22-eb3a8d32d91b", "tags": []}, "type": "BasicTickFormatter", "id": "7b1a830a-296d-42a1-ad22-eb3a8d32d91b"}, {"attributes": {"doc": null, "id": "db9d1eca-30a7-47cf-8ffb-84f3b83833e6", "tags": []}, "type": "BasicTickFormatter", "id": "db9d1eca-30a7-47cf-8ffb-84f3b83833e6"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "7339739b-c389-4006-a28d-dc58685aeec5"}, "type": "Rect", "id": "7339739b-c389-4006-a28d-dc58685aeec5"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [0.5, 7.0, 3.0, 4.0, 23.0, 7.0], "Platform": [1, 14, 6, 8, 46, 14], "catFx-Team": ["All Other Responses:0.666666666667", "N/A (not relevant to me):0.666666666667", "Cut all investment:0.666666666667", "Cut some investment:0.666666666667", "Keep about the same:0.666666666667", "Increase investment:0.666666666667"], "cat": ["All Other Responses", "N/A (not relevant to me)", "Cut all investment", "Cut some investment", "Keep about the same", "Increase investment"], "midPlatform": [0.5, 7.0, 3.0, 4.0, 23.0, 7.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8, 0.8], "zero": [1.0, 27.0, 8.0, 13.0, 86.0, 38.0], "catPlatform": ["All Other Responses:0.333333333333", "N/A (not relevant to me):0.333333333333", "Cut all investment:0.333333333333", "Cut some investment:0.333333333333", "Keep about the same:0.333333333333", "Increase investment:0.333333333333"], "stackedFx-Team": [1.0, 20.5, 7.0, 10.5, 66.0, 26.0], "midFx-Team": [0.0, 6.5, 1.0, 2.5, 20.0, 12.0], "Fx-Team": [0, 13, 2, 5, 40, 24]}, "id": "e06e49ff-2093-4742-b1ff-f098e54fd6d2"}, "type": "ColumnDataSource", "id": "e06e49ff-2093-4742-b1ff-f098e54fd6d2"}, {"attributes": {"doc": null, "id": "cafe5933-9215-4ad6-b5f7-f1988df1b738", "tags": []}, "type": "CategoricalTickFormatter", "id": "cafe5933-9215-4ad6-b5f7-f1988df1b738"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "f657426c-9686-4d5c-99b6-69122fd65e71"}, "tags": [], "doc": null, "selection_glyph": null, "id": "be6a00c2-b158-481c-8a35-0fe693a82974", "glyph": {"type": "Rect", "id": "8a34b013-1181-4e36-b614-fc8ed4ea0b47"}}, "type": "GlyphRenderer", "id": "be6a00c2-b158-481c-8a35-0fe693a82974"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fd0867ed-5ca0-4e0f-a6af-aab4fb0da736"}, "orientation": "top_left", "tags": [], "doc": null, "id": "4e549380-5a15-4927-b1b1-4e97dd1ae288", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "c54dd88f-ceff-4098-9638-cbd1488acc07"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "be86c689-0b32-4b15-9f9e-723b159e6d49"}]]]}, "type": "Legend", "id": "4e549380-5a15-4927-b1b1-4e97dd1ae288"}, {"subtype": "Chart", "type": "Plot", "id": "68bf4f73-1acf-410e-a69f-8003d8a9b3b9", "attributes": {"x_range": {"type": "FactorRange", "id": "10fb83dd-3463-4e26-9caf-5bc55c5261fb"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "a0016c48-3a09-4f71-b0f1-c0bf764c140d"}, "title": "Thinking of the entire development process, from checking out code to landing a patch, please rank the following categories according to how much they impact your own productivity. [Tests take too long to run locally]", "renderers": [{"type": "CategoricalAxis", "id": "7335eb5a-f442-423e-a325-cd138d5439c6"}, {"type": "LinearAxis", "id": "ecf3d36b-d6a4-48c0-9800-bf6906ed114f"}, {"type": "Grid", "id": "75ebefa9-6466-4352-b986-3b13e3a03e91"}, {"type": "GlyphRenderer", "id": "2a689a0e-6457-4ff5-98fb-89d2f56b7812"}, {"type": "GlyphRenderer", "id": "902577d9-5a74-4b20-ac4b-0762ac79a88d"}, {"type": "Legend", "id": "f4b46045-f1c8-4dbb-a965-5e9ca1513526"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "9b8217d0-71b3-4961-81f8-b84864306ddf"}, "plot_height": 560, "doc": null, "id": "68bf4f73-1acf-410e-a69f-8003d8a9b3b9", "tools": [], "below": [{"type": "CategoricalAxis", "id": "7335eb5a-f442-423e-a325-cd138d5439c6"}], "left": [{"type": "LinearAxis", "id": "ecf3d36b-d6a4-48c0-9800-bf6906ed114f"}]}}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "21d7a08e-d36c-41bd-8f68-62576540bd6d"}, "type": "ToolEvents", "id": "21d7a08e-d36c-41bd-8f68-62576540bd6d"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "94615ab0-26ac-4cbf-b83c-62287a6bf695"}, "tags": [], "doc": null, "selection_glyph": null, "id": "720e40ff-5a56-4a39-8180-f8a07028bfd6", "glyph": {"type": "Rect", "id": "4fc27441-449c-40b7-aff7-f89531114a07"}}, "type": "GlyphRenderer", "id": "720e40ff-5a56-4a39-8180-f8a07028bfd6"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "95bc9af8-5b23-4884-8450-1173fb51603e"}, "type": "ToolEvents", "id": "95bc9af8-5b23-4884-8450-1173fb51603e"}, {"attributes": {"doc": null, "id": "3c9623e9-d5de-43ee-acf7-ed875fc265e8", "tags": []}, "type": "CategoricalTickFormatter", "id": "3c9623e9-d5de-43ee-acf7-ed875fc265e8"}, {"attributes": {"doc": null, "id": "108d2c32-8832-4591-ba56-8624308b22dc", "tags": []}, "type": "BasicTickFormatter", "id": "108d2c32-8832-4591-ba56-8624308b22dc"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A", "Below average", "Average", "Above average", "It's awesome!"], "doc": null, "tags": [], "id": "46922755-461a-4d6b-9443-dde5aea98bf9"}, "type": "FactorRange", "id": "46922755-461a-4d6b-9443-dde5aea98bf9"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "d746cc77-179c-49ea-8467-4d6c173d388c"}, "type": "Rect", "id": "d746cc77-179c-49ea-8467-4d6c173d388c"}, {"attributes": {"doc": null, "id": "30cd756d-9ef8-44ff-867a-716257a652d4", "tags": []}, "type": "CategoricalTicker", "id": "30cd756d-9ef8-44ff-867a-716257a652d4"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "3f6451bd-a783-4e0d-8fb3-5b59fc7ace06"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "9f798019-bd28-420d-9c1b-a57cb25181d2"}, "id": "55a48457-e383-49e1-b117-2186c6ec5925"}, "type": "Grid", "id": "55a48457-e383-49e1-b117-2186c6ec5925"}, {"attributes": {"end": 64.9, "callback": null, "doc": null, "tags": [], "start": 0, "id": "af4853ed-84f1-4dc5-8a12-f575b4f16d36"}, "type": "Range1d", "id": "af4853ed-84f1-4dc5-8a12-f575b4f16d36"}, {"attributes": {"doc": null, "id": "0aeadd16-c12c-4f4a-a1d2-569261163c2e", "tags": []}, "type": "BasicTickFormatter", "id": "0aeadd16-c12c-4f4a-a1d2-569261163c2e"}, {"attributes": {"doc": null, "id": "02ffd5b3-35a4-4515-8da0-97ae56514f6e", "tags": []}, "type": "CategoricalTickFormatter", "id": "02ffd5b3-35a4-4515-8da0-97ae56514f6e"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "fac52d34-7da0-498e-9368-548b85e2919b"}, "orientation": "top_left", "tags": [], "doc": null, "id": "a554e729-8c8b-44b2-8521-bb4ccf92c8a6", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "85fadf39-9f89-4d35-9f34-cfa5575541af"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "aea2b6c0-8d3a-4691-abd9-dda951718b97"}]]]}, "type": "Legend", "id": "a554e729-8c8b-44b2-8521-bb4ccf92c8a6"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "f098136f-4cbd-4d90-861d-4c65bbda336c"}, "type": "ToolEvents", "id": "f098136f-4cbd-4d90-861d-4c65bbda336c"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "1 = least impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "dbf05ac9-0e7f-4d92-8ea5-3c56b94fd144"}, "type": "FactorRange", "id": "dbf05ac9-0e7f-4d92-8ea5-3c56b94fd144"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "7b6c5882-2edc-498e-8acd-6403a12e18e0"}, "type": "BasicTicker", "id": "7b6c5882-2edc-498e-8acd-6403a12e18e0"}, {"attributes": {"end": 50.6, "callback": null, "doc": null, "tags": [], "start": 0.0, "id": "bd3f4f82-5718-4355-b754-8093ac0bb7c4"}, "type": "Range1d", "id": "bd3f4f82-5718-4355-b754-8093ac0bb7c4"}, {"attributes": {"doc": null, "id": "7e615519-3bd2-4636-8e22-358b0be7ff01", "tags": []}, "type": "BasicTickFormatter", "id": "7e615519-3bd2-4636-8e22-358b0be7ff01"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "5996b5fc-3363-4dd6-9191-77e80d6bb7d7"}, "type": "Rect", "id": "5996b5fc-3363-4dd6-9191-77e80d6bb7d7"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "c7bd5301-e792-472a-8757-49beb4af8c27"}, "tags": [], "doc": null, "selection_glyph": null, "id": "f0929213-6d18-4c1b-98f0-716e2b85972f", "glyph": {"type": "Rect", "id": "7a2de75e-53e8-48d5-881a-cb4a772dd731"}}, "type": "GlyphRenderer", "id": "f0929213-6d18-4c1b-98f0-716e2b85972f"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A", "Extremely dissatisfied", "Below average", "Average", "Above average"], "doc": null, "tags": [], "id": "66a49990-5500-4a6b-98b7-98b8364e7c97"}, "type": "FactorRange", "id": "66a49990-5500-4a6b-98b7-98b8364e7c97"}, {"attributes": {"doc": null, "id": "4f5c2845-1e9c-4bdc-99d0-62e465f9f42d", "tags": []}, "type": "CategoricalTickFormatter", "id": "4f5c2845-1e9c-4bdc-99d0-62e465f9f42d"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "f6c66e85-08d4-4c17-bc1a-5396f2b6dec0"}, "type": "Rect", "id": "f6c66e85-08d4-4c17-bc1a-5396f2b6dec0"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "1bae94c3-cb4f-4af0-aaea-500571dfbcbb"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "7a819832-39d7-4b3b-8bf9-90d7ead159ad"}, "ticker": {"type": "CategoricalTicker", "id": "6cf6a5dc-1c90-4805-a220-8b41897e78c1"}, "id": "831a5ce1-54df-4331-b389-b2d113c4c47c"}, "type": "CategoricalAxis", "id": "831a5ce1-54df-4331-b389-b2d113c4c47c"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "a54c6507-50ba-4de8-9510-2733b712c32e"}, "tags": [], "doc": null, "selection_glyph": null, "id": "679cd2d7-8768-4597-a35b-f617d4ced447", "glyph": {"type": "Rect", "id": "664ea45c-53c5-49de-9cf4-5744f88f5264"}}, "type": "GlyphRenderer", "id": "679cd2d7-8768-4597-a35b-f617d4ced447"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "d03d4b37-32eb-483f-8e73-053978c018c8"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "c7ce2fef-4f06-4cbd-81ca-c9ff9355614b"}, "ticker": {"type": "BasicTicker", "id": "d3af0e6f-bb09-4aab-b40a-52941c03c585"}, "id": "695fed1a-48b7-444d-afd3-46a4fddcf3a6"}, "type": "LinearAxis", "id": "695fed1a-48b7-444d-afd3-46a4fddcf3a6"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A or I'm not sure", "It's not horrible, but it's still pretty bad", "It sucks a little", "It's neither bad nor good", "It's OK, I guess", "It's pretty good"], "doc": null, "tags": [], "id": "99cbbbb2-7de3-499b-b791-5a97de541d10"}, "type": "FactorRange", "id": "99cbbbb2-7de3-499b-b791-5a97de541d10"}, {"attributes": {"callback": null, "factors": ["No", "Yes"], "doc": null, "tags": [], "id": "199e3759-87c6-43ca-84ab-76d5641c48f8"}, "type": "FactorRange", "id": "199e3759-87c6-43ca-84ab-76d5641c48f8"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "5ff56d4d-7ada-4a25-85c4-64a4cbe6ec1b"}, "tags": [], "doc": null, "selection_glyph": null, "id": "b8a03831-0f59-46ae-9f2a-f8a23b0f87f7", "glyph": {"type": "Rect", "id": "0c1e716d-8160-4f8e-a9e7-c60a5210a389"}}, "type": "GlyphRenderer", "id": "b8a03831-0f59-46ae-9f2a-f8a23b0f87f7"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "34f5a33c-9db3-4e6f-b3ea-8fc6fe943e9b"}, "type": "Rect", "id": "34f5a33c-9db3-4e6f-b3ea-8fc6fe943e9b"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "24f666f3-f470-40ff-8bb8-85b9637f665e"}, "tags": [], "doc": null, "selection_glyph": null, "id": "bf7d6b02-6806-4a9c-98f7-0b1022bd0d43", "glyph": {"type": "Rect", "id": "b7a28fbc-61e9-4379-8717-587c78d01747"}}, "type": "GlyphRenderer", "id": "bf7d6b02-6806-4a9c-98f7-0b1022bd0d43"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "bffc98a4-9ca4-4c1c-8353-850c31349dab"}, "type": "Rect", "id": "bffc98a4-9ca4-4c1c-8353-850c31349dab"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "6a8d816e-bf31-46d7-8228-b12670e6d753"}, "type": "ToolEvents", "id": "6a8d816e-bf31-46d7-8228-b12670e6d753"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A", "Average", "Above average", "It's awesome!"], "doc": null, "tags": [], "id": "6ea1acd1-033e-4ef3-96d1-7b6e67aed433"}, "type": "FactorRange", "id": "6ea1acd1-033e-4ef3-96d1-7b6e67aed433"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "fcfdb9df-1839-4a3d-a8cc-b3727a1717f1"}, "type": "ToolEvents", "id": "fcfdb9df-1839-4a3d-a8cc-b3727a1717f1"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "ab99d4e0-4ef6-43ff-b08e-da3111bcb602"}, "type": "BasicTicker", "id": "ab99d4e0-4ef6-43ff-b08e-da3111bcb602"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "ab4c75c9-6bca-4e60-baeb-eb2192e5dfbb"}, "type": "Rect", "id": "ab4c75c9-6bca-4e60-baeb-eb2192e5dfbb"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "40f555e7-ccbf-479c-9c23-75177a31e162"}, "orientation": "top_left", "tags": [], "doc": null, "id": "254622ce-283e-434a-a552-0720a10b5d5d", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "a0ed31f1-bfa2-43e1-8add-4b1340290707"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "ad1ab6ab-a1b4-4715-b52e-f0740606d352"}]]]}, "type": "Legend", "id": "254622ce-283e-434a-a552-0720a10b5d5d"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "216e75b5-aa2b-43ac-9e72-6bf13e161525"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "9105cf5d-2c52-48b1-a981-242b8b3c87d2"}, "ticker": {"type": "CategoricalTicker", "id": "6dda476e-e628-4e66-89be-53d66cf101e8"}, "id": "e2e8f142-cdd6-4daf-a34e-3bb549522d49"}, "type": "CategoricalAxis", "id": "e2e8f142-cdd6-4daf-a34e-3bb549522d49"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "edaeb88f-0958-4473-afa5-ff0add9378d1"}, "type": "BasicTicker", "id": "edaeb88f-0958-4473-afa5-ff0add9378d1"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "181f467e-8df8-4c5c-a416-21b1cfe03a81"}, "orientation": "top_left", "tags": [], "doc": null, "id": "c62b54a1-8249-43ba-939e-021a1ac407ad", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "a6d0294e-9c15-4fd8-893e-1363d9fa6d49"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "cf8016fe-5f42-4bcd-bb6a-4c0942ce478f"}]]]}, "type": "Legend", "id": "c62b54a1-8249-43ba-939e-021a1ac407ad"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "e1347dd9-b64b-4743-a550-5ebe7d618b04"}, "type": "ToolEvents", "id": "e1347dd9-b64b-4743-a550-5ebe7d618b04"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "0d9def83-c962-4f3d-968d-e85943dbaf6b"}, "tags": [], "doc": null, "selection_glyph": null, "id": "b68f5646-c2d2-41c4-8f02-e7cfc3381884", "glyph": {"type": "Rect", "id": "c373eb8a-f16a-46cb-950c-4c1581d5b64c"}}, "type": "GlyphRenderer", "id": "b68f5646-c2d2-41c4-8f02-e7cfc3381884"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "a1a58e83-b9b6-4415-8825-10b1534def6d"}, "type": "Rect", "id": "a1a58e83-b9b6-4415-8825-10b1534def6d"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "fcb384b7-a97f-4f4c-8ca8-f2de79459ea7"}, "tags": [], "doc": null, "selection_glyph": null, "id": "c544ec61-9824-4f20-be06-2b4a2b24db49", "glyph": {"type": "Rect", "id": "8d8358ec-870a-48d2-a2ed-414af127eba4"}}, "type": "GlyphRenderer", "id": "c544ec61-9824-4f20-be06-2b4a2b24db49"}, {"subtype": "Chart", "type": "Plot", "id": "bc085a35-b314-41e9-a57d-565def0bbdc6", "attributes": {"x_range": {"type": "FactorRange", "id": "81b8b647-5a4e-4691-88f9-eb15a0892474"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "2933e61a-6091-4a35-b814-eac7431ed6ed"}, "title": "Thinking of the mozilla-central/Firefox build system, rank the following potential improvements in terms of their impact to your productivity. [Make incremental builds that touch a small amount of C++ code much faster]", "renderers": [{"type": "CategoricalAxis", "id": "9363ab4f-577a-4cb9-bbc3-dd58a9998f5b"}, {"type": "LinearAxis", "id": "32bb3068-c40b-414a-af2f-8b8fe77ab62d"}, {"type": "Grid", "id": "77d5379c-ef35-411c-a848-cb873ed41b9c"}, {"type": "GlyphRenderer", "id": "dcc14581-d34e-4206-931f-d2ca1845a32e"}, {"type": "GlyphRenderer", "id": "43499ae2-8d08-4d54-b264-7756fd0efd06"}, {"type": "Legend", "id": "2c9090e0-d311-4cf5-a724-e430eb712991"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "718dead2-5755-4edf-837a-42d0de0d282a"}, "plot_height": 560, "doc": null, "id": "bc085a35-b314-41e9-a57d-565def0bbdc6", "tools": [], "below": [{"type": "CategoricalAxis", "id": "9363ab4f-577a-4cb9-bbc3-dd58a9998f5b"}], "left": [{"type": "LinearAxis", "id": "32bb3068-c40b-414a-af2f-8b8fe77ab62d"}]}}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 10], "id": "83516706-0294-4188-93cb-0a19c102b42f"}, "type": "BasicTicker", "id": "83516706-0294-4188-93cb-0a19c102b42f"}, {"attributes": {"doc": null, "id": "ec8644c7-579b-4fc4-a556-7489fc1035c5", "tags": []}, "type": "CategoricalTicker", "id": "ec8644c7-579b-4fc4-a556-7489fc1035c5"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [12.0, 8.0, 10.0, 12.5, 5.0], "Platform": [24, 16, 20, 25, 10], "catFx-Team": ["No impact / Not applicable:0.666666666667", "A little impact:0.666666666667", "Moderate impact:0.666666666667", "Significant impact:0.666666666667", "Tons of impact / Implement this ASAP:0.666666666667"], "cat": ["No impact / Not applicable", "A little impact", "Moderate impact", "Significant impact", "Tons of impact / Implement this ASAP"], "midPlatform": [12.0, 8.0, 10.0, 12.5, 5.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [53.0, 37.0, 41.0, 46.0, 12.0], "catPlatform": ["No impact / Not applicable:0.333333333333", "A little impact:0.333333333333", "Moderate impact:0.333333333333", "Significant impact:0.333333333333", "Tons of impact / Implement this ASAP:0.333333333333"], "stackedFx-Team": [38.5, 26.5, 30.5, 35.5, 11.0], "midFx-Team": [14.5, 10.5, 10.5, 10.5, 1.0], "Fx-Team": [29, 21, 21, 21, 2]}, "id": "035267cb-b46f-4fa5-bdb6-d2f0f2bbf50d"}, "type": "ColumnDataSource", "id": "035267cb-b46f-4fa5-bdb6-d2f0f2bbf50d"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A or I'm not sure", "It sucks a little", "It's OK, I guess", "It's pretty good", "It's awesome!"], "doc": null, "tags": [], "id": "54ea3b1a-5b84-4207-9408-a6dd20eede29"}, "type": "FactorRange", "id": "54ea3b1a-5b84-4207-9408-a6dd20eede29"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "d0d308b0-25e7-44c6-a48c-2a7590f5993a"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "5db009c0-c5ac-41e1-afb2-30ea1590bfa6"}, "ticker": {"type": "BasicTicker", "id": "4db9cbae-51dd-47e3-bc83-32350c027258"}, "id": "e66f02d3-f6a6-4c1a-bbff-0fa5796e71f8"}, "type": "LinearAxis", "id": "e66f02d3-f6a6-4c1a-bbff-0fa5796e71f8"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "f8c144d7-1a9e-4cc4-8de0-33ead1cae93a"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "01a07410-3464-400b-8af5-6fb78a761365"}, "ticker": {"type": "CategoricalTicker", "id": "278dc381-c4d4-4e9c-9c74-d9f58aedf03a"}, "id": "f2e8f0fa-b547-4415-b78f-6646ab14c03a"}, "type": "CategoricalAxis", "id": "f2e8f0fa-b547-4415-b78f-6646ab14c03a"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "68bf4f73-1acf-410e-a69f-8003d8a9b3b9"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "78f58015-6f6e-419c-b775-255d52f6e4e5"}, "id": "75ebefa9-6466-4352-b986-3b13e3a03e91"}, "type": "Grid", "id": "75ebefa9-6466-4352-b986-3b13e3a03e91"}, {"attributes": {"doc": null, "id": "94a59465-fabc-4d89-95c0-13072c1b46fa", "tags": []}, "type": "CategoricalTickFormatter", "id": "94a59465-fabc-4d89-95c0-13072c1b46fa"}, {"subtype": "Chart", "type": "Plot", "id": "211b7754-cfad-42d7-a3d3-7695ef9b9713", "attributes": {"x_range": {"type": "FactorRange", "id": "70b2071f-495d-4010-8a01-356a1c2f8478"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "bda5ca8b-a895-4798-98b8-7a38c95634e1"}, "title": "How should Mozilla invest in the following Git related items? [GitHub pull request integration]", "renderers": [{"type": "CategoricalAxis", "id": "60700002-3714-4e5d-8452-2154b0c69d19"}, {"type": "LinearAxis", "id": "622e9e14-8d68-48db-afbf-d096c57b1fc4"}, {"type": "Grid", "id": "db147f7b-d9b2-4c0c-a43a-50f7099a4a00"}, {"type": "GlyphRenderer", "id": "a1929c93-a96d-4f32-9334-81a3c283c992"}, {"type": "GlyphRenderer", "id": "c95a385b-ad7f-4818-a531-1b59530b31db"}, {"type": "Legend", "id": "609cb685-9355-427b-b814-f27420486a46"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "6c537958-bcc3-442d-a2f7-2d9593d56919"}, "plot_height": 560, "doc": null, "id": "211b7754-cfad-42d7-a3d3-7695ef9b9713", "tools": [], "below": [{"type": "CategoricalAxis", "id": "60700002-3714-4e5d-8452-2154b0c69d19"}], "left": [{"type": "LinearAxis", "id": "622e9e14-8d68-48db-afbf-d096c57b1fc4"}]}}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "cccb8cde-44f7-42d9-bf3a-8b3471ee8986"}, "type": "Rect", "id": "cccb8cde-44f7-42d9-bf3a-8b3471ee8986"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "8e533061-3f2b-4d96-9f27-29645c502bae"}, "orientation": "top_left", "tags": [], "doc": null, "id": "59f513e1-0fa1-418c-ad0d-8cce93283dd4", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "e69c0f54-5921-4900-8e5d-0793d19c943f"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "7eb72593-862a-4254-84c2-7d61eb572f68"}]]]}, "type": "Legend", "id": "59f513e1-0fa1-418c-ad0d-8cce93283dd4"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "bdd8b704-d549-4ed7-8292-b7000d0f0d4c"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "5e2e8784-26d5-4afd-8683-99336b5bbc87"}, "ticker": {"type": "BasicTicker", "id": "f019de16-1599-476f-8dbc-d13249918fe0"}, "id": "03e02524-1f2b-40de-b4ea-ee59aafc16fe"}, "type": "LinearAxis", "id": "03e02524-1f2b-40de-b4ea-ee59aafc16fe"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "7808946e-3b7d-4351-9671-294b782a031e"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "b7f29607-719c-4db7-9501-29826f130ade"}, "ticker": {"type": "CategoricalTicker", "id": "72d94218-b64c-470d-9759-629d651d8cf7"}, "id": "352d594a-f77d-4624-b0f2-fb55fecab8e7"}, "type": "CategoricalAxis", "id": "352d594a-f77d-4624-b0f2-fb55fecab8e7"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "2fe75739-e5d8-48b2-8d57-1baac515d546"}, "type": "Rect", "id": "2fe75739-e5d8-48b2-8d57-1baac515d546"}, {"attributes": {"column_names": ["width_cat", "stackedPlatform", "Platform", "catFx-Team", "cat", "midPlatform", "width", "zero", "catPlatform", "stackedFx-Team", "midFx-Team", "Fx-Team"], "tags": [], "doc": null, "selected": {"2d": {"indices": []}, "1d": {"indices": []}, "0d": {"indices": [], "flag": false}}, "callback": null, "data": {"width_cat": [0.2, 0.2, 0.2, 0.2, 0.2], "stackedPlatform": [4.0, 13.5, 16.0, 10.5, 5.0], "Platform": [8, 27, 32, 21, 10], "catFx-Team": ["N/A:0.666666666667", "1 = little impact:0.666666666667", "2:0.666666666667", "3:0.666666666667", "4 = most impact:0.666666666667"], "cat": ["N/A", "1 = little impact", "2", "3", "4 = most impact"], "midPlatform": [4.0, 13.5, 16.0, 10.5, 5.0], "width": [0.8, 0.8, 0.8, 0.8, 0.8], "zero": [18.0, 54.0, 53.0, 37.0, 34.0], "catPlatform": ["N/A:0.333333333333", "1 = little impact:0.333333333333", "2:0.333333333333", "3:0.333333333333", "4 = most impact:0.333333333333"], "stackedFx-Team": [13.0, 40.5, 42.5, 29.0, 22.0], "midFx-Team": [5.0, 13.5, 10.5, 8.0, 12.0], "Fx-Team": [10, 27, 21, 16, 24]}, "id": "7cbc46a2-abdb-489d-96ee-2fce123eeee1"}, "type": "ColumnDataSource", "id": "7cbc46a2-abdb-489d-96ee-2fce123eeee1"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "N/A", "Below average", "Average", "Above average"], "doc": null, "tags": [], "id": "a56fce25-9b44-46f5-a3d8-49f66179357c"}, "type": "FactorRange", "id": "a56fce25-9b44-46f5-a3d8-49f66179357c"}, {"subtype": "Chart", "type": "Plot", "id": "02776478-701b-4368-9060-e7b70bed0081", "attributes": {"x_range": {"type": "FactorRange", "id": "18efa164-a1c8-4c15-97ba-d7240f3dc446"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "f9fdb9e7-e12b-4d2b-8977-7f17f80e81f7"}, "title": "Thinking of the entire development process, from checking out code to landing a patch, please rank the following categories according to how much they impact your own productivity. [Documentation is inadequate]", "renderers": [{"type": "CategoricalAxis", "id": "9ace989e-d272-4b0b-b498-697029443873"}, {"type": "LinearAxis", "id": "536de077-1dd5-4f5d-9f2e-481a574b761a"}, {"type": "Grid", "id": "9ddba53a-ffea-4c64-9e71-d13572b82997"}, {"type": "GlyphRenderer", "id": "e9f6f871-5422-4b9e-ad23-950f95cc56a1"}, {"type": "GlyphRenderer", "id": "c501575f-2f06-4901-b5a8-1f74b586b072"}, {"type": "Legend", "id": "4e6da67b-b715-45da-9557-5298722acb43"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "d4ee0cbe-a3a2-4e87-8545-e8a8c25c97b8"}, "plot_height": 560, "doc": null, "id": "02776478-701b-4368-9060-e7b70bed0081", "tools": [], "below": [{"type": "CategoricalAxis", "id": "9ace989e-d272-4b0b-b498-697029443873"}], "left": [{"type": "LinearAxis", "id": "536de077-1dd5-4f5d-9f2e-481a574b761a"}]}}, {"attributes": {"doc": null, "id": "845da5ac-4fc8-42d3-be12-553545a3a05e", "tags": []}, "type": "BasicTickFormatter", "id": "845da5ac-4fc8-42d3-be12-553545a3a05e"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#5ab738"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Fx-Team"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midFx-Team"}, "x": {"field": "catFx-Team"}, "id": "dfb267b5-3c27-40cd-9276-6ee007f47fed"}, "type": "Rect", "id": "dfb267b5-3c27-40cd-9276-6ee007f47fed"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "067cddb2-3083-4294-a30e-e4b0c6973f22"}, "type": "ToolEvents", "id": "067cddb2-3083-4294-a30e-e4b0c6973f22"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "f8c144d7-1a9e-4cc4-8de0-33ead1cae93a"}, "orientation": "top_left", "tags": [], "doc": null, "id": "ed1b83c3-d20d-4313-9f21-9e7a0e50ec99", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "a40e44bc-6c84-44dc-b68d-62727418b20b"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "7b990480-5125-445e-bc6c-d037d1a50148"}]]]}, "type": "Legend", "id": "ed1b83c3-d20d-4313-9f21-9e7a0e50ec99"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "28e2bd13-2203-49d4-805d-072c62d09a7a"}, "type": "Rect", "id": "28e2bd13-2203-49d4-805d-072c62d09a7a"}, {"subtype": "Chart", "type": "Plot", "id": "c9aba8b6-2afe-4a4b-9485-72b7019c79b5", "attributes": {"x_range": {"type": "FactorRange", "id": "45b3905b-7026-42bc-838b-d77e7c786b27"}, "right": [], "title_text_font_size": {"value": "13px"}, "above": [], "tags": [], "y_range": {"type": "Range1d", "id": "d010be91-99b5-4d92-9f49-38a5ce8f7e62"}, "title": "How impactful would the following potential MozReview features have on your productivity? [Ability to track which files have been reviewed]", "renderers": [{"type": "CategoricalAxis", "id": "1f31b3db-2d2b-4cc9-bdc7-06edae255d61"}, {"type": "LinearAxis", "id": "90804614-f3ab-4cd2-8ca0-3e8d54d7432c"}, {"type": "Grid", "id": "a1ae2bba-3c34-4f4a-95aa-47e9f3a5a361"}, {"type": "GlyphRenderer", "id": "a2a8880c-9d00-437b-b855-c42156c36734"}, {"type": "GlyphRenderer", "id": "dd9c2c34-577e-4ad4-b207-2789553500f6"}, {"type": "Legend", "id": "be7ff2aa-58c2-43d9-84f6-116f52560712"}], "plot_width": 1280, "extra_y_ranges": {}, "extra_x_ranges": {}, "tool_events": {"type": "ToolEvents", "id": "87be2ac5-7800-4794-aa2e-0518b40682ae"}, "plot_height": 560, "doc": null, "id": "c9aba8b6-2afe-4a4b-9485-72b7019c79b5", "tools": [], "below": [{"type": "CategoricalAxis", "id": "1f31b3db-2d2b-4cc9-bdc7-06edae255d61"}], "left": [{"type": "LinearAxis", "id": "90804614-f3ab-4cd2-8ca0-3e8d54d7432c"}]}}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "0a5b11ba-b147-4933-a11e-ed712a008782"}, "tags": [], "doc": null, "axis_label": "Percentage", "formatter": {"type": "BasicTickFormatter", "id": "b8aa75d9-e45d-4ee8-8cc5-cf0971fd8d4a"}, "ticker": {"type": "BasicTicker", "id": "ef63f7be-a589-4f99-afa3-7323fd88b495"}, "id": "e2de2520-4d29-4bf1-abb1-07aa9cac8495"}, "type": "LinearAxis", "id": "e2de2520-4d29-4bf1-abb1-07aa9cac8495"}, {"attributes": {"doc": null, "id": "3f27d64b-630c-4cd0-9a80-7457ff7ca69e", "tags": []}, "type": "CategoricalTicker", "id": "3f27d64b-630c-4cd0-9a80-7457ff7ca69e"}, {"attributes": {"doc": null, "id": "7b3081a6-b806-4983-9ab2-2c072efb6319", "tags": []}, "type": "BasicTickFormatter", "id": "7b3081a6-b806-4983-9ab2-2c072efb6319"}, {"attributes": {"doc": null, "id": "d832f7e1-f15a-468b-ac9d-56634a98f764", "tags": []}, "type": "CategoricalTicker", "id": "d832f7e1-f15a-468b-ac9d-56634a98f764"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "1 = little impact", "2", "3", "4 = most impact"], "doc": null, "tags": [], "id": "c14a20d3-0b0c-4507-bab9-1461fc47c196"}, "type": "FactorRange", "id": "c14a20d3-0b0c-4507-bab9-1461fc47c196"}, {"attributes": {"doc": null, "id": "7a819832-39d7-4b3b-8bf9-90d7ead159ad", "tags": []}, "type": "CategoricalTickFormatter", "id": "7a819832-39d7-4b3b-8bf9-90d7ead159ad"}, {"attributes": {"doc": null, "id": "069d910c-6f6f-496b-89ef-f9033fd89003", "tags": []}, "type": "BasicTickFormatter", "id": "069d910c-6f6f-496b-89ef-f9033fd89003"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "0438e339-face-4074-9019-77d01fae3a6e"}, "tags": [], "doc": null, "selection_glyph": null, "id": "7b990480-5125-445e-bc6c-d037d1a50148", "glyph": {"type": "Rect", "id": "896ec6ca-9bb2-4af8-932a-caa446cf89ee"}}, "type": "GlyphRenderer", "id": "7b990480-5125-445e-bc6c-d037d1a50148"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "e4c06cfb-dde1-40a0-9b68-2da7d8f33ecb"}, "orientation": "top_left", "tags": [], "doc": null, "id": "cb412aca-6be8-47c3-94cf-09a0f9e574e1", "legends": [["Platform", [{"type": "GlyphRenderer", "id": "e455aafd-53bb-490d-a5bf-d2e9a62ad97c"}]], ["Fx-Team", [{"type": "GlyphRenderer", "id": "2423cd58-3bf4-47a8-a5bf-b665c167bb4d"}]]]}, "type": "Legend", "id": "cb412aca-6be8-47c3-94cf-09a0f9e574e1"}, {"attributes": {"doc": null, "id": "043ce065-5084-4b8c-8670-114686fa9b18", "tags": []}, "type": "BasicTickFormatter", "id": "043ce065-5084-4b8c-8670-114686fa9b18"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "360e03bf-1d1e-4d95-b3ca-6fdcaee060c3"}, "type": "Rect", "id": "360e03bf-1d1e-4d95-b3ca-6fdcaee060c3"}, {"attributes": {"geometries": [], "tags": [], "doc": null, "id": "ffc75ed9-1dbc-4197-a146-27801476f9b5"}, "type": "ToolEvents", "id": "ffc75ed9-1dbc-4197-a146-27801476f9b5"}, {"attributes": {"callback": null, "factors": ["All Other Responses", "I know enough to do just the basics", "Fairly competent (I still get stuck from time to time)", "Highly competent"], "doc": null, "tags": [], "id": "c50a958b-470b-43f8-9792-7787dcf66368"}, "type": "FactorRange", "id": "c50a958b-470b-43f8-9792-7787dcf66368"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "10544a4e-d09a-4d33-b9db-dad1dffdd8b4"}, "tags": [], "doc": null, "dimension": 1, "ticker": {"type": "BasicTicker", "id": "ae6e6448-e846-4d01-85be-eb643faab9a2"}, "id": "a5e520a8-47bc-4017-90c1-db868caf0fbe"}, "type": "Grid", "id": "a5e520a8-47bc-4017-90c1-db868caf0fbe"}, {"attributes": {"line_color": {"value": "white"}, "fill_color": {"value": "#f22c40"}, "tags": [], "doc": null, "fill_alpha": {"value": 0.7}, "height": {"units": "data", "field": "Platform"}, "width": {"units": "data", "field": "width_cat"}, "y": {"field": "midPlatform"}, "x": {"field": "catPlatform"}, "id": "91782891-3785-4abd-ae54-52f3bd5ef6cc"}, "type": "Rect", "id": "91782891-3785-4abd-ae54-52f3bd5ef6cc"}, {"attributes": {"plot": {"subtype": "Chart", "type": "Plot", "id": "eb4a49ef-b5ae-4439-b773-7a4053bef2e3"}, "tags": [], "doc": null, "major_label_orientation": 0.7853981633974483, "axis_label": null, "formatter": {"type": "CategoricalTickFormatter", "id": "ff740b75-7f79-41bf-9753-8ca4bdb4255f"}, "ticker": {"type": "CategoricalTicker", "id": "360793dc-0242-40e2-b703-4afdaee4dd0f"}, "id": "f1cc5563-e1f3-4513-af5c-7c7e47f2a46d"}, "type": "CategoricalAxis", "id": "f1cc5563-e1f3-4513-af5c-7c7e47f2a46d"}, {"attributes": {"end": 79.2, "callback": null, "doc": null, "tags": [], "start": 0, "id": "f700d021-c3d1-4d37-b4dc-60a8c5d0a86f"}, "type": "Range1d", "id": "f700d021-c3d1-4d37-b4dc-60a8c5d0a86f"}, {"attributes": {"nonselection_glyph": null, "data_source": {"type": "ColumnDataSource", "id": "225a3807-8f5e-4fcd-bc37-3a4316b1e9d8"}, "tags": [], "doc": null, "selection_glyph": null, "id": "ae262bee-ad02-4466-81f4-73094c6513f0", "glyph": {"type": "Rect", "id": "b893cefb-ebda-4a84-8b61-4bc82ff401a6"}}, "type": "GlyphRenderer", "id": "ae262bee-ad02-4466-81f4-73094c6513f0"}, {"attributes": {"doc": null, "id": "fb44a947-3faf-4157-b01c-f55632820d98", "tags": []}, "type": "CategoricalTickFormatter", "id": "fb44a947-3faf-4157-b01c-f55632820d98"}, {"attributes": {"tags": [], "doc": null, "mantissas": [2, 5, 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment