Skip to content

Instantly share code, notes, and snippets.

@sxywu
Last active May 24, 2017 06:09
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 sxywu/f47e58f210d0ada02f8f4fca8f5ee917 to your computer and use it in GitHub Desktop.
Save sxywu/f47e58f210d0ada02f8f4fca8f5ee917 to your computer and use it in GitHub Desktop.
DS April, Code 2
license: mit
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.4/lodash.min.js'></script>
<script type="text/javascript" src="https://cdn.rawgit.com/gka/chroma.js/master/chroma.min.js"></script>
<style>
</style>
</head>
<body>
<svg />
<script>
var width = 800;
var centerSize = 100;
var answerHeight = 200;
var radius = 2;
var margin = {left: 20, top: 20};
var svg = d3.select('svg')
.attr('width', width)
.attr('height', answerHeight * 3);
// scales
var experienceScale = d3.scaleLinear();
var xScale = d3.scaleLinear()
.range([0, (width - centerSize) / 2]);
var colorScale = chroma
.scale(['#e68fc3', '#7386e8', '#53c3ac']);
// force simulation
var simulation = d3.forceSimulation()
// .force('x', d3.forceX().x(d => d.focusX))
.force('charge', d3.forceManyBody().strength(30))
.force('collide', d3.forceCollide().radius(radius))
// .force('center', d3.forceCenter().y(0))
.stop();
// question
var frustration = 'What is your biggest frustration with doing data visualization in your job?';
var experience = 'How many years have you been doing data visualization?';
var intended = 'Did you set out to work in data visualization or did you fall into it?';
var question = 'What focus is data visualization in your work?';
var answerMap = {
'Data visualization is the focus of my job': '1. primary',
'Data visualization is an important secondary part of my job but not the focus': '2. secondary',
'Data visualization is one of several other things I do in my job but not a primary or secondary part of my role': '3. not focus'
};
// load data
d3.csv('survey.csv', survey => {
var xDomain = d3.extent(survey, d => ++d[experience]);
experienceScale.domain(xDomain);
// get the data ready
survey = _.map(survey, (d, i) => {
var exp = experienceScale(d[experience]);
return {
frustrated: !!d[frustration],
question: answerMap[d[question]],
x: xScale(exp),
color: colorScale(exp),
data: d,
id: i,
}
});
var data = d3.nest()
.key(d => d.frustrated)
.key(d => d.question)
.entries(survey);
// draw the circles
var frustratedG = svg.selectAll('.frustrated')
.data(data).enter().append('g')
.classed('frustrated', true)
.attr('transform', 'translate(' + [width / 2, 0] + ')');
var questionG = frustratedG.selectAll('.question')
.data(d => d.values, d => d.key).enter().append('g')
.classed('question', true)
.attr('transform', (d, i) =>
'translate(' + [0, (i + 0.5) * answerHeight] + ')');
questionG.selectAll('circle')
.data(d => {
simulation.nodes(d.values);
_.times(1000, () => simulation.tick());
return d.values;
}, d => d.id).enter().append('circle')
.attr('cx', d => d.x)
.attr('cy', d => d.y)
.attr('r', radius)
.attr('fill', d => d.color)
});
</script>
</body>
We can't make this file beautiful and searchable because it's too large.
Timestamp,How many years have you been doing data visualization?,What is your educational background?,How did you learn to create data visualization?,Did you set out to work in data visualization or did you fall into it?,Is this your first job doing data visualization?,What is your official job title?,Is your total compensation in-line with Software Engineers and UX/UI/Designer roles at your level?,What focus is data visualization in your work?,For your current role or the majority of your projects: were you hired to do data visualization only or is data visualization a part of your job/project description?,What's your employment status,How is your organization using data visualization?,Is there a separate group that does data visualizations or are you embedded in another group? (data science UX UI web data engineering IT etc),What level of data visualizations are used at your organization?,Are data visualization specialists represented in the leadership of your organization?,Data visualization roles at your organization are found in what part of the organization?,Percent of your day focused on creating/implementing/productizing data visualizations?,Percent of your day focused on data engineering?,Percent of your day focused on data science?,Percent of your day focused on design?,Percent of your day focused on data prep work?,What technologies do you use to visualize data?,Are you able to choose your own tools or are the choices made for you?,How do you present your data visualizations?,Which of these charts have you used in production in the last 6 months:,Who do you make data visualizations for?,What knowledge level do they have of the data you are visualizing for them?,How often do they consume your data visualizations?,What do they use your data visualizations for?,How would you describe the relationship?,What is your biggest frustration with your job?,What is your biggest frustration with doing data visualization in your job?,If you could change one thing about your job what would it be?,If you could change one thing about your data visualization work what would it be?,What do you think other people in your organization just don’t get about the data visualization work that you do?,What one change would make your job better?,What community support / discussions / advice would you want to see from data visualization thought leaders?,Who do you look to as a thought leader in data visualization?,Do you want to spend more time or less time visualizing data in the future?,Gender,Age,Where do you live?,What’s your ethnicity?,The organization you work for is in which of the following?
2/28/2017 8:09:25,4,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,Performance Expert,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Both,Business Intelligence Tools,No,IT,20,10,5,10,5,Excel;Microstrategy,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Presentations,Line Chart;Bar Chart;Infographics,Analysts;Engineers;Executives,Moderate,Monthly,Analysis;Summarization,Consultative,,Tooling,Tooling,Tooling,The basic rules of Few,Creativity,, ,Much more,male,46 - 55,Europe,white,Public sector
3/1/2017 11:10:49,6,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Instructional Technologist,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools,No,IT,10,1,1,1,5,Excel;Tableau;Plotly;D3;Other Javascript,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Flow Diagram,Analysts;Executives,Moderate,Monthly,Analysis;Summarization,Collaborative,Comp,Messy and poorly documented DB,,Do more of it,The transformative potential,,,538;Upshot;Nathan Yau,Much more,male,26 - 35,USA or Canada,,Not-for-profit
2/27/2017 12:50:28,4,Bachelors,Equal Parts School and Self-Taught,Intended to work in data visualization,Yes,Data Visualization Specialist,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Summary/Overview;Communication;Exploration,Embedded in another team,General charting libraries,No,Research,70,0,0,30,0,Illustrator;Excel;Qlik;D3;Vega,I'm able to choose my own tools.,Static Web Page;Documents,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Dendrogram;Network Diagram;Flow Diagram,General Public,Moderate,Monthly,Summarization;Learning;Research,Consultative,,Gap in high-level and low-level programming and customizaton,More maps!,,I can write- too! ,Easier access to CMS,,Alberto Cairo,Same,,26 - 35,,,Not-for-profit
2/27/2017 14:09:20,10,Bachelors,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Chief Data Scientist,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Hired to do data visualization,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,Yes,Design;Engineering;Marketing;Research;IT,20,40,10,10,20,Illustrator;Excel;Plotly;D3;Leaflet;WebGL;Highcharts;Other Javascript;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Infographics;Network Diagram;Choropleth Map,General Public;Analysts;Engineers;Product Managers;Project Managers;Executives,Moderate;Expert,Daily,Analysis;Summarization;Learning;Research,Collaborative,Getting data into the right format/place to do analysis & vis,Still working out the most efficient way to publish the vis,We'd buy RStudio Connect :-),Make font handling in R better,How important it is to understand the data you're working with to know how best to visualize it.,,Less pontificating and more application to the real world.,Alberto Cairo,Same,male,46 - 55,USA or Canada,white,Private sector
2/27/2017 16:50:47,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Client Insights Manager,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,IT;Business-based BI teams,40,10,5,5,10,Excel;Tableau;Microstrategy;Power BI;Mapbox,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Scrollytelling;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Flow Diagram,Analysts;Product Managers;Executives,Expert,Daily,Analysis;Summarization;Learning,Collaborative,Poor data governance,Executive buy in is spotty,Stronger analysts as user base,,How difficult data prep is because of poor architecture,Data quality,Effective executive level visualization ,Alberto Cairo,Much more,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 18:34:03,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Director Business Intelligence,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,Yes,Business Intelligence (which is not part of IT),25,20,10,5,5,Excel;Tableau;Power BI;ggplot,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Choropleth Map,Analysts;Medical Professionals;Project Managers;Executives,Intro;Moderate;Expert,Daily,Analysis;Summarization;Learning;Business decision-making,Collaborative,Antiquated data architecture,Antiquated data architecture,New data architecture,More of it,The time & effort to make them readily consumable for the organization,New data architecture,Theory & principles,Alberto Cairo,More,male,46 - 55,USA or Canada,white,Not-for-profit
2/27/2017 20:01:48,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Systems Engineer,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Both,Business Intelligence Tools;General charting libraries,No,Design;Research,5,10,10,0,5,D3;Other Python;Looker,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Presentations,Line Chart;Bar Chart,General Public;Engineers;Product Managers;Executives,Moderate,Quarterly,Analysis;Summarization,Consultative,Try to be data driven- but our data efforts aren't consistent,Our data viz efforts are not of uniform quality- don't really have folks focused on maintaining rigor across the board.,More UX/UI effort in our engineering teams.,More time for it- greater organizational support.,General low awareness- literacy in the data viz for systems/infra engineering.,Greater push to make our data visible.,More about effective interactive/dynamic dashboards,Alberto Cairo,More,male,36 - 45,USA or Canada,white,Private sector
2/27/2017 20:49:05,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Journalist Senior Analyst Data Science,Data Visualization Role has higher compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Marketing;Research;data science,5,20,20,5,50,Excel;Tableau;Power BI;Other BI;D3;ggplot;Other R;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Documents;Presentations;Email,Line Chart;Bar Chart;Infographics;Treemap;Dendrogram;Network Diagram;Choropleth Map;Raster Map;Flow Diagram,General Public;Analysts;Scientists;Medical Professionals;Product Managers;Project Managers;Executives,Expert,Daily,Analysis;Summarization;Learning;Research,Subordinate,firewalls preventing the movement of data and marketing professionals with no analytical knowledge,people asking for reports and not regularly utilizing them,more respect,greater use by executive management,the need for clarity and visualization rather than just Excel style tables,better organizational understanding of analytics ,more methodology sharing rather than just the final visualization- i.e. Propublica Nerds page or Data Stories podcast,Alberto Cairo,More,female,26 - 35,USA or Canada,white,Private sector
2/27/2017 21:04:55,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Specialist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Consultant,,,,,,35,10,20,5,30,Excel;Tableau;Microstrategy;Power BI;Qlik;Other BI;D3;ggplot;Other R,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Dendrogram;Network Diagram;Choropleth Map;Raster Map;Flow Diagram,General Public;Analysts;Engineers;Scientists;Project Managers;Executives,Moderate,Daily,Analysis;Summarization;Research,Consultative,,,,,,,,Alberto Cairo,Much more,male,26 - 35,USA or Canada,white,Private sector
2/28/2017 1:14:31,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Editor Graphics service,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Communication,Separate data visualization team,GIS;Excel;Graphics,No,Specific department for news graphics,90,,,,10,Illustrator;Excel,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Static Web Page;Presented online at our website and sometimes posted on our multimedia accounts (Twitter etc).,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Choropleth Map;Often incorporate data into world;or regional maps,General Public,Intro,Daily,Entertainment;Summarization;It's a news product for the general public,Consultative,The lack of time to do original data journalism: lack of proper training and opportunity to expand skills into coding.,waste too much time filling in sports scores and other trivial stuff rather than investing time in exploiting the investigative potential of data journalism.,Get more of the trivial stuff automatized to free up time for more important work.,Training and use of a broader range of dataviz tools.,They don't understand its potential for handling big data. Some bureaux track the data coming into their offices- don't even think to pass on data-rich reports- so we are still picking them up at the last moment instead of having time to prepare the material properly.,More money from the specific skills I bring to the service.,Would like access to training in coding. But generally- there's plenty of great stuff out there -- need time off to expand- improve my skills.,Alberto Cairo,Less,male,46 - 55,Europe,multi,Private sector
2/28/2017 2:38:52,1,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Freelancer,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Consultant,,,,,,50,5,5,10,5,D3;ggplot,I'm able to choose my own tools.,Embedded in a tool;Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Infographics;Network Diagram;Choropleth Map,General Public;Scientists,Expert,Monthly,Summarization;Learning,Consultative,Not enough visibility for the moment.,Not knowing enough about basic graphic design.,I'd work in a team.,,,Work in a team.,How to work together on projects.,Alberto Cairo,Same,male,,Europe,,Mixed
3/1/2017 10:54:05,4,Bachelors,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,News App Developer,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Communication;News,Both,General charting libraries;Completely custom,No,Design;News,50,10,10,25,5,Illustrator;D3;Other Javascript;ggplot;React,I'm able to choose my own tools.,Scrollytelling;Static Web Page,Line Chart;Bar Chart;Choropleth Map,General Public,Intro,Daily,Analysis;Summarization;Learning,Collaborative,Clarity on expectations,Editing from non data-viz experts on the data-viz end,Harder deadlines for projects- more medium-length stories,Less editing on the visuals/design side,How to tell a story with visuals ,Planning ahead ,Better resources to for sharing and tracking our work,Alberto Cairo,Same,female,25 or younger,USA or Canada,white,Private sector
3/1/2017 14:35:52,4,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Data Journalist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Data journalism team,20,5,10,5,20,Illustrator;Excel;D3;Leaflet;Mapbox;Highcharts;ggplot;QGIS,I'm able to choose my own tools.,Scrollytelling;Static Web Page;Interactive web page,Line Chart;Bar Chart;Pie Chart;Network Diagram;Choropleth Map,General Public,Moderate,Hourly,Entertainment;Summarization;Learning,Collaborative,Not enough coding capacity in the team,Working on the deadline. Designing mobile first.,More resources- more specific roles in the team,A company wide style guide,How time consuming it is to get and process the data beforehand,More resource,Share as many learnings as possible,Alberto Cairo,More,male,26 - 35,Europe,white,Private sector
3/5/2017 6:49:32,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Founder,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Other,Analysis;Summary/Overview;Communication;Marketing;Exploration,Separate data visualization team,Completely custom,Yes,1-man shop,90,0,0,20,10,Illustrator;Excel;D3;Leaflet;Mapbox;Other Javascript,I'm able to choose my own tools.,Dashboard;Scrollytelling;Static Web Page;Documents;Presentations;print,Line Chart;Bar Chart;Infographics;Choropleth Map;dot plot;astor plot;custom viz,General Public;Analysts;Engineers;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Monthly,Analysis;Summarization;Learning,Collaborative,,,I wouldn't have to chase money and could just find- analyze and visualize interesting data to make the world a better place.,,,A community of people to turn to for help- support- etc.,,Alberto Cairo,Same,male,46 - 55,USA or Canada,white,Private sector
3/6/2017 8:20:40,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Consulting,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,Design;IT,80,15,0,30,10,Tableau;D3,I'm able to choose my own tools.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram,Analysts;Project Managers;Executives,Moderate;Expert,Daily,Analysis;Summarization;Learning,Consultative,Not enough other data visualization professionals to work with,Few people understand the problems I face- therefore it's a challenge for them to help me out.,More time to study and experiment with new learnings.,I would like to improve my understanding and application of color.,How much thought goes into the unseen.,More viz professionals to work with.,Confident come backs from intense meetings where leadership tried to overturn a wise visualization decision in favor of something worse (ex. a palette that isn't color blind friendly),Alberto Cairo,Much more,male,26 - 35,USA or Canada,white,Private sector
3/6/2017 8:39:17,7,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,VP Digital Strategy and Analytics,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Other,Analysis;Summary/Overview;Communication;Marketing;Exploration,Both,Business Intelligence Tools,No,IT,35,5,5,15,40,Excel;Tableau;Other R,I'm able to choose my own tools.,Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart,Product Managers;Project Managers;Executives,Moderate;Expert,Daily,Summarization;Learning;Research;sales,Subordinate,lack of understanding and lack of interest in gaining it. ,new tools- slow database- lack of data on competitive product. ,add manpower. ,use r and its packages more often. ,how hard it is to do. ,add tableau licenses,more on how to create specific data visualizations in various tools/apps/languages. etl is also a blind area there should be a set group of learnings/skills for etl cwork. ,Alberto Cairo,Much more,male,46 - 55,USA or Canada,white,Private sector
3/6/2017 16:10:35,3,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,Yes,data artist & designer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Communication;Marketing,Separate data visualization team,Completely custom,No,Design;Marketing,40,0,0,100,10,Illustrator;Excel;D3;Leaflet;Mapbox;Other Javascript;QGIS,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Reports pdf,Line Chart;Bar Chart;Infographics;Choropleth Map;Raster Map,General Public,Intro,Yearly,Analysis,Consultative,have to do others things such as emailing or editorial design,Not knowing enough javascript ,doing more data viz,its ui design,it importance to reach the public in order to make desicions,have more time for doing the visualizations,data viz for mobile devices,Alberto Cairo,Much more,female,26 - 35,Latin America,hispanic,Private sector
3/7/2017 7:16:17,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Visualization Consultant,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Consultant,,,,,,20,10,15,10,45,D3;Processing;Leaflet;Mapbox;Other R;ArcGIS,I'm able to choose my own tools.,Dashboard,Line Chart;Bar Chart;Dendrogram;Choropleth Map;Slopegraph,General Public;Analysts,Intro,Weekly,Analysis;Learning;Research,Consultative,The lack- or frequency of- user feedback,The constant feeling that I could have done better,Have more open data projects,Lower the level of effort to reach our visualization goals.,Value,User feedback,Science based statements,Alberto Cairo,Much more,male,46 - 55,Latin America,,Public sector
2/27/2017 12:46:29,9,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Flight Data Analyst,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,IT,10,40,5,15,30,Tableau;Power BI;Mapbox;Other R;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Documents;Presentations;Email,Line Chart;Bar Chart;Infographics,Analysts;Engineers;Executives,Moderate;Expert,Weekly,Analysis;Summarization;Research,Consultative,slow computer- not enough knowledge on my side,time not enough to explore other viz formats- quite often i have to stick to the same set.,I would use more machine learning- use dashboards to better explore the findings ,learn more- try harder,most users are only concerned about what they can read and understand in less than 5min. while there's so much more on display.,Increase data literacy in the company,have them call the stakeholders to commit to use the data as presented and learn more about what it contains,Alberto Cairo;Andy Kirk,More,male,46 - 55,Latin America,white,Private sector
3/7/2017 8:16:43,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Web Developer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Communication;Exploration,Embedded in another team,Business Intelligence Tools;Completely custom,Yes,Design;Research;IT,25,5,5,5,10,Excel;Tableau;D3;Mapbox;Other Javascript,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Choropleth Map,General Public;Analysts;Non-Profit Advocacy Groups,Intro;Moderate,Weekly,Analysis;Learning;Research,Collaborative,not enough time,too many browsers/devices to test adequately,expectations of time required to create an effective visualization,more time to interact with the DV community,visualizing complex subjects takes time & experimentation,more time,"how to counteract the old wives tale that ""figures lie and liars figure""",Alberto Cairo;Andy Kirk,More,female,46 - 55,USA or Canada,white,Not-for-profit
2/27/2017 15:30:17,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Editor Interactive Digital Storytelling,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Both,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Engineering;News / Editorial,15,1,1,1,1,Excel;Tableau;Plotly;D3;Mapbox;Datawrapper;Internal Charting Tool,I'm able to choose my own tools.,Scrollytelling;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Infographics;Choropleth Map,General Public,Intro,Monthly,Entertainment;Analysis;Summarization;Learning;Research,Consultative,Too many demands- difficult to prioritise and focus on key tasks,Need better tools,Clearer vision for our work,Able to spend more time on bespoke visuals,How complex the process is- especially around data preparation,Clearer strategy from my organisation,,Alberto Cairo;Brian Boyer,More,male,36 - 45,Oceania,white,Public sector
3/1/2017 12:19:02,8,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Senior Programmer/Analyst,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Marketing,Embedded in another team,ggplot2/Pandas Charts;Completely custom,No,Design;Marketing;Research,40,,10,40,10,Illustrator;Excel;D3;Pandas;Other Python;QGIS,I'm able to choose my own tools.,Static Web Page,Line Chart;Bar Chart;Choropleth Map;Raster Map,General Public;Analysts;Scientists,Moderate,Daily,Summarization;Learning;Research,Collaborative,Emphasis on tools and technology over methods- design- and effectiveness,Constantly defending sound and settled perceptual science against opinion and personal preference,Work remotely 100 of the time,The ability to dive deeper into long-term projects (I produce work for daily deadlines),"My decisions are based on science and proven best practices- not whim or an ""eye for design."" Good visualization works well because it is based on known principles and is not the result of happenstance or good luck.",,More advocacy for data visualization specialists to be taken seriously among other scientists. Climate scientists- biologists- and engineers are unlikely to listen to data visualizers on design- color- etc. We can bridge that gap to help convey data visualization as an evidence-based discipline.,Alberto Cairo;David McCandless,Same,male,26 - 35,USA or Canada,white,Public sector
3/8/2017 9:33:43,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Database Editor,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Communication;Exploration,Embedded in another team,Business Intelligence Tools;General charting libraries;Completely custom,No,Design;Editorial,20,35,7,3,35,Excel;Tableau;D3;Other Javascript;ArcGIS;QGIS;Other GIS,I'm able to choose my own tools.,Embedded in a tool,Line Chart;Bar Chart;Pie Chart;Choropleth Map;Raster Map,General Public,Intro,Daily,Entertainment;Learning,Consultative,Need more coding assistance,Limits of the tools we know and use,More coding resources,More choices,Complexity- especially given the need for responsive visualizations,,How to accomplish specific tasks,Alberto Cairo;Tufte,Same,male,56+,USA or Canada,white,Media
2/27/2017 12:40:00,6,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Information Designer,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Consultant,,,,,,60,0,5,30,5,Illustrator;Excel;Tableau;InDesign,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Network Diagram;Choropleth Map;Flow Diagram;Slopegraph;Marimekko;parallel coordinates ,General Public;Analysts;Project Managers,Expert,Weekly,Analysis;Summarization;Advocacy ,Collaborative,Clients who design the visualization then ask me to execute it. ,Clients who design the visualization then ask me to execute it. ,Delegate more. ,delegate more. ,I'm self employed but I wish clients understood that it's my job to come up with the visual.,More collaborators. ,,Alberto Cairo;Tufte;Stephen Few;Robert Kosara,Same,male,36 - 45,USA or Canada,white,Private sector
3/5/2017 9:12:14,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Communication;Journalism,Embedded in another team,Business Intelligence Tools;General charting libraries,No,Editorial/newsroom,80,0,10,40,30,Illustrator;Excel;Tableau;Mapbox;QGIS;Datawrapper,I'm able to choose my own tools.,Dashboard;Static Web Page,Line Chart;Bar Chart;Pie Chart;Infographics;Raster Map,General Public,Intro,Weekly,Learning,Subordinate,Not having a data team to work with -- having to figure everything out on my own. ,There's so much to learn I feel like I'll never know enough to be effective. ,Add more data-focused employees,,They don't understand the crazy skill set that's involved. They think I just push a few buttons and the software magically creates something for me. ,,More detailed guides about where to start with data science and visualization -- classes- books- software advice,Alberto Cairo;Enrico Bertini;Moritz Stefaner,Much more,female,46 - 55,USA or Canada,white,Private sector
3/3/2017 16:17:44,7,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Operations Analyst,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,Yes,Design;Engineering;Marketing;Research;IT;Operations,15,10,5,5,25,Excel;Power BI;ggplot,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations;Email,Line Chart;Bar Chart;Treemap;Choropleth Map,Analysts;Engineers;Product Managers;Project Managers;Executives,Intro;Moderate,Weekly,Analysis;Summarization,Subordinate,Not having a mentor to learn data science from.,Not having a uniformed BI strategy across the organization,Have a centralized analytics team,Settle on a single- comprehensive BI solution to work with,How much time is spent cleansing data to make it usable,Having a team of analysts to learn from,Continue embracing R visualizations and data manipulation,Alberto Cairo;Hadley Wickham,Same,male,36 - 45,USA or Canada,white,Not-for-profit
2/27/2017 12:56:04,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Research Associate for Information Synthesis and Dissemination,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries,No,Design;Research,50,0,5,30,15,Illustrator;Excel;Tableau;Highcharts;Other Javascript;ggplot;Other R;After Effects,I'm able to choose my own tools.,Embedded in a tool;Scrollytelling;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Flow Diagram;venn diagram,General Public;Analysts;Executives,Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Collaborative,Keeping up with new tools and learning how to use them (steep learning curves- lack of on-the-job training).,,More on-the-job- hands on trainings on new tools- so I can learn by doing.,,Two things: 1) the amount of time it takes to produce data viz. 2) the breadth of data-viz options available to them. ,More trainings on new tools- especially R/ggplot- D3- Ruby on Rails- and front end web development--javascript in particular.,More in-person workshops/training/meetups for beginners where people of all skill levels could come to talk through ideas and work on projects with help from peers or mentors.,Alberto Cairo;Hans Rosling,More,male,26 - 35,USA or Canada,white,Not-for-profit
3/2/2017 10:52:56,2,Technical School,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Senior Application Developer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Embedded in another team,Business Intelligence Tools;Completely custom,No,Engineering;IT,50,0,0,10,20,D3;Processing;Mapbox,I'm able to choose my own tools.,Dashboard,Bar Chart;Pie Chart;Dendrogram;Network Diagram;Raster Map;Flow Diagram,Analysts;Engineers;Project Managers;Executives,Moderate;Expert,Daily,Analysis;Summarization,Collaborative,Management,Illogical or nonsensical requirements related to dimensions,Work closer with knowledgeable graphic designers,Product Owners need to be a bit more creative or allow creatives to drive the design.,People think it's just bar charts/pie charts and nothing more,"Less time spent on ""process""",Conferences in Ireland,Alberto Cairo;Mike Bostock,Much more,male,36 - 45,Europe,white,Private sector
3/2/2017 12:48:10,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Infografista,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Summary/Overview;Communication;Journalism,Separate data visualization team,Completely custom;ggplot2/Pandas Charts,No,Design;Research;IT,90,15,15,100,0,Illustrator;Tableau;D3;Other R;QGIS,We have a set list of tools we're expected to use for data visualization.,Scrollytelling;Static Web Page,Line Chart;Bar Chart;Infographics;Treemap;Choropleth Map;Raster Map;Flow Diagram,General Public,Intro,Daily,Entertainment;Analysis;Learning;Research,Subordinate,Strict deadlines don't leave much time to develop more sophisticated visualizations,Strict deadlines don't leave much time to develop more sophisticated visualizations,Expanding the dataviz team to make space for more sophisticated viz,Expanding the dataviz team to make space for more sophisticated viz,That it takes time and it isn't being spit out automatically by the computer,Expanding the dataviz team to make space for more sophisticated viz,More entry level tutorials on coding specifically for dataviz would be welcome,Alberto Cairo;Mona Chalabi;Nathan Yau;Eleanor Lutz;Polygraph,More,male,25 or younger,Latin America,hispanic,Private sector
2/28/2017 16:52:53,2,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Graphic Designer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Communication;Journalism,Separate data visualization team,ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;IT,90,0,50,50,30,Illustrator;Tableau;D3;ggplot;Other R;Other Python,I'm able to choose my own tools.,Scrollytelling;Static Web Page,Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map;Flow Diagram,General Public,Intro,Weekly,Entertainment;Learning,Consultative,figuring out a place within the newsroom,no tool is simple enough,better co-workers :D ,I hate responsive design. Designing everything three times. I would love to just design one version. ,I think they get it just fine.,NO RESPONSIVE DESIGN would lead to more creative freedom,more thoughts about what role data vis should play,Alberto Cairo;Moritz Stefaner,Same,female,26 - 35,Europe,white,Public sector
2/27/2017 20:40:48,4,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Market Research Analyst,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Other,Analysis;Summary/Overview;Communication,Embedded in another team,Completely custom,No,Research,25,10,35,15,15,Excel;Tableau,We have a set list of tools we're expected to use for data visualization.,Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics,Analysts;Executives,Moderate;Expert,Quarterly,Analysis;Summarization;Learning,Subordinate,Lack of support for the importance of good data visualization,A lack of understanding by management of the processes for creating data visualization,Getting data that is already formatted the way you want,Having more time to spend on making quality vizzes,When it is done well- it's an iterative and collaborative process,Having formatted and cleaned data easily available for visualizing,More on how to create a design oriented culture,Alberto Cairo;Moritz Stefaner;Jer Thorp,More,female,56+,USA or Canada,white,Private sector
3/4/2017 22:22:19,2,Bachelors,Mostly Self-Taught,Intended to work in data visualization,Yes,,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Other,Communication,Embedded in another team,Completely custom,Yes,Design;Research,20,35,20,15,10,D3,I'm able to choose my own tools.,Embedded in a tool,Line Chart;Infographics;Network Diagram;Flow Diagram,General Public,Moderate,Weekly,Analysis,Collaborative,too much time on data engineering -- too many ideas no time to implement,my own skills,work as part of larger team,,,,functional/interactive domain specific dataviz where usability/use value trumps speed of understanding (how quickly dataviz can be grokked),Alberto Cairo;Nadieh Bremer,More,male,46 - 55,Europe,white,Not-for-profit
2/27/2017 19:42:04,2,Technical School,Mostly Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,Freelancer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Contractor,,,,,,25,10,10,20,35,Illustrator;Excel;Plotly;D3;ggplot;Other R,I'm able to choose my own tools.,Dashboard;Scrollytelling;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Choropleth Map,General Public;Analysts;Scientists,Intro;Moderate;Expert,Weekly,Entertainment;Analysis;Summarization;Learning;Research,Consultative,Finding contracts ,Lack of creativity from clients,Simplify the process. Less trend more fundamentals. ,More diversity in my tools. ,Why I don't like pie charts with more than three sections. ,More/steady work,Love more on the thought process behind the vis,Alberto Cairo;Nadieh Bremer,Much more,male,26 - 35,USA or Canada,white,Private sector
2/28/2017 8:36:24,2,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,Data Analyst,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Contractor,,,,,,50,5,10,10,25,Illustrator;Excel;Tableau,,Dashboard;Presentations;Tableau Server,Line Chart;Bar Chart;Pie Chart;Infographics,Project Managers;Executives,Intro,Weekly,Summarization;Learning,Subordinate,Slow pace of change ,Not having a community to reach out to within my organization for help with a visualization question. ,,,,having a dedicated Tableau team at my organization who could help me with specific questions with sensitive work information,I'd love to see more region-specific advice i.e Canadian specific. Also- being able to reach out to someone with a viz question would be awesome. ,Alberto Cairo;Nadieh Bremer,More,female,26 - 35,USA or Canada,white,Private sector
3/1/2017 13:41:53,7,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Assistant Research Scientist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,General charting libraries;Graphics;Excel,No,Design;Research;IT,15,0,0,100,37.5,Illustrator;Excel;Mapbox;Highcharts;QGIS,I'm able to choose my own tools.,Embedded in a tool;Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Network Diagram;Choropleth Map;Flow Diagram,General Public;social science clients (gov;ed;non-profits),Intro,Monthly,Analysis;Summarization;Learning;Research,Consultative,"Trying to legitimize the importance of design in the area of research and my expertise in these areas. Trying to convince ""old school"" social science researchers there are new and better ways of doing their jobs. ","Trying to communicate the importance of good data design practices to researchers. Overcoming the ""design is a legitimate area of study"" obstacle to explore options of better solving problems through good design practices. Communicating that I don't spend my time ""playing on a computer to make things pretty"" but provide solutions to very difficult data problems that help them do their jobs more effectively. ",More opportunities to do education through demonstration with colleagues. ,,"That it's more than just ""making things pretty."" It's taking a pile of data- analyzing the problems to overcome and then finding the best solutions to those problems. It's about drawing people in to give a shit about all of their research. ",More time to do continuing education,Less technical (here's a trick in this software) and more research about reading and understanding data viz.,Alberto Cairo;Nathan Yau;Andy Kirk,Much more,female,26 - 35,USA or Canada,white,Academic
2/28/2017 21:05:07,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Student,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Student,,,,,,25,0,35,10,7.5,ggplot,I'm able to choose my own tools.,Static Web Page,Line Chart;Bar Chart;Choropleth Map;dumbbell chart;histogram;scatterplot ,General Public,Moderate,Weekly,Entertainment;Summarization;Learning,Collaborative,They don't teach me data viz or any programming. I have to be self taught. ,They don't teach me data viz or any programming. I have to be self taught. ,Teaching me JavaScript- design- and advanced data visualization ,Wish I could spend more time learning JavaScript and Design ,How hard it is,Make data viz & programming education a bigger prority,More examples of advanced data visualization where they walk through code,Alberto Cairo;Nathan Yau;Robert Kosara;Nadieh Bremer;Matt Daniels;Mike Bostock;Scott Murray,Much more,male,25 or younger,USA or Canada,,Public sector
3/7/2017 3:14:27,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Graphics Editor,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication,Separate data visualization team,Business Intelligence Tools;General charting libraries;Completely custom,No,Design;Research,50,5,5,30,10,Illustrator;Excel,I'm able to choose my own tools.,Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Flow Diagram,General Public;Scientists;Government,Intro;Moderate;Expert,Quarterly,Analysis;Summarization;Research;Policy making,Consultative,Little time,Delay in upgrades of software.,More pay,More time per graphic ,How much time it costs ,More time or less stuff to do ,Making research on infographics scientific so I can present them as facts for my scientific audience ,Alberto Cairo;Otto Neurath;Tufte,More,male,36 - 45,Europe,,Public sector
2/27/2017 14:44:26,4,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Assessment and Quality Assurance Coordinator ,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Exploration,Separate data visualization team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries,Don't Know,,25,25,5,20,25,Illustrator;Excel;Tableau;Plotly;ggplot;Other R;Vega,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Infographics;Treemap;Choropleth Map;Flow Diagram,General Public;Engineers;Scientists;Project Managers;Executives,Intro;Moderate;Expert,Monthly,Analysis;Summarization;Learning;Research,Consultative,Data silos ,People's reliance on excel ,Better pay,More projects ,It requires a lot of work- not just 5 minutes in excel. Also- that it is a blending of science and art that requires knowledge of effective practise. ,Community knowledge ,More Science and research into the field ,Alberto Cairo;Robert Kosara,More,male,36 - 45,USA or Canada,white,Academic
3/3/2017 10:49:47,8,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Performance Solutions Developer,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Engineering,20,20,0,20,40,Tableau;Other BI;D3;Other Javascript,We have a set list of tools we're expected to use for data visualization.,Dashboard,Line Chart;Bar Chart;Pie Chart;Flow Diagram,Analysts;Executives,Moderate;Expert,Weekly,Analysis;Summarization,Consultative,Business ask on reports/dashboard different from data requirements/ETL.,General misconception/misunderstanding on data visualizations - people think it's really just the output of the whole process.,Change the process such that we think about data and data vis at the same time,Be involved more in the design/conceptual part of data vis,People think data vis is just the same as UI/UX.,Better ownership on data vis,,Alberto Cairo;Stephen Few,Much more,male,26 - 35,USA or Canada,asian,Private sector
2/27/2017 17:25:16,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Visualization Analyst,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,Don't Know,Research,50,,,25,25,Excel;Tableau;Alteryx,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Scrollytelling,Line Chart;Bar Chart;Pie Chart;Treemap;Choropleth Map;Scatter plot; heat map; dumbbell chart,Executives,Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research;Strategic decisionmaking,Subordinate,Lack of stakeholder engagement during requirement gathering. Too often- executives wait until a project is nearly finished before communicating fully the questions they want to ask of the data. ,Hyper-aggressive project deadlines,More time for experimentation- design- and polishing ,,Simplicity in presentation is anything but simple,More realistic deadlines,,Alberto Cairo;Stephen Few;Tufte;Ben Shneiderman;Cole Nussbaumer Knaflic;Tableau Zen Masters,Same,male,56+,USA or Canada,,Private sector
2/27/2017 15:14:19,10,PhD,Mostly Self-Taught,Intended to work in data visualization,No,Data Scientist,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Both,ggplot2/Pandas Charts;General charting libraries;Completely custom,Yes,Design;Engineering;Marketing;Research,20,10,30,30,5,Illustrator;Plotly;D3;Processing;Leaflet;Mapbox;WebGL;Other Javascript;Pandas;Other Python;React;Angular;Other MVC;Vega;Inkscape,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations;Email;Slack,Line Chart;Bar Chart;Network Diagram;Choropleth Map,General Public;Analysts;Engineers;Scientists;Product Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Collaborative,,,,,,,,Amanda Cox,Same,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 17:08:58,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Principal Designer,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Machine Learning;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design,10,20,0,40,10,D3;WebGL;Other Javascript;React,I'm able to choose my own tools.,Dashboard;Scrollytelling;Presentations,Line Chart;Bar Chart;Treemap;Network Diagram,General Public;Analysts;Executives,Moderate,Daily,Analysis;Summarization,Collaborative,Difficulty in hiring a team.,Data engineering.,Have more data engineering support.,Have more data engineering support.,How domain specific design is necessary for many domains.,Have more data engineering support.,,Amanda Cox,Same,male,26 - 35,USA or Canada,asian,Private sector
3/3/2017 9:06:25,6,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Data Visualization Engineer,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Communication;Marketing;Exploration,Separate data visualization team,ggplot2/Pandas Charts;Completely custom,Yes,Design;Engineering,40,20,10,10,20,D3;Leaflet;Mapbox;WebGL;Other Javascript;ggplot;Other R;Pandas;Other Python;React;QGIS;Other Network Visualization Suite;Sketch,I'm able to choose my own tools.,Dashboard;Scrollytelling;Static Web Page;Presentations,Line Chart;Bar Chart;Treemap;Network Diagram;Choropleth Map,General Public;Analysts;Engineers;Medical Professionals;Executives,Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Consultative,communication with client and co-workers is hard - human interactions are still the biggest challenge in all industries I've encountered.,getting more into webgl ,add more data science and analysis to the process.,make it flashier,the power of answering questions with the data. ,have time to inject more prediction and analysis into the process.,move forward data vis literacy. ,Amanda Cox,More,male,26 - 35,USA or Canada,white,Private sector
3/6/2017 15:26:53,5,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Business Systems Analyst,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Exploration,Embedded in another team,Business Intelligence Tools;Completely custom,No,Research;IT,5,5,5,25,5,Excel;Tableau;Microstrategy;Power BI;D3;Gephi,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations,Line Chart;Bar Chart;Network Diagram;Flow Diagram,General Public;Analysts;Engineers;Medical Professionals;Project Managers;Executives,Intro;Moderate;Expert,Daily,Analysis;Research;Healthcare operations,Collaborative,Want to do work that is more technical,Lack of aesthetic skills/talent,able to do some data science in my role,Time to do more visualizations,the value (and ROI) of it,Quantifiable metrics of ROI of value my role adds to our team,downloadable examples for tweaking or quick guides on aesthetic tips,Amanda Cox,More,female,36 - 45,USA or Canada,white,Public sector
3/1/2017 10:53:29,3,Technical School,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Senior Systems Engineer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Summary/Overview;Communication,Both,Business Intelligence Tools;ggplot2/Pandas Charts,No,Marketing;IT,15,25,15,5,20,Excel;Tableau;Qlik;D3;ggplot;Other R,We have a set list of tools we're expected to use for data visualization.,Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Flow Diagram;3D Chart;SPC Charts,Project Managers;Executives,Intro,Quarterly,Summarization,Subordinate,Spending too much time gathering the data,Not having enough time,Data aggregation to be made easier,More time spent analysing and understanding the data,Yes- they largely think it's like generating a powerpoint.,Better data warehousing,,Andy Kirk,Much more,male,36 - 45,Europe,white,Private sector
3/2/2017 11:28:51,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Supervisor for Data and Assessment,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Communication;Exploration,Separate data visualization team,Excel;ggplot2/Pandas Charts,No,Just my office. I'm it.,10,5,5,10,5,Excel;Other R;ArcGIS,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Dendrogram;Choropleth Map;Floating bars;dot plots...,General Public;Educators,Intro,Quarterly,Analysis;Learning,Consultative,Increasing data and visual literacy of others,Blocks of time to work on things,Access to a peer group to share ideas,Learn more code,That it is as critical a communication piece as text,Finding more K-12 people who do what I do,I would like them to engage- rather than just post something and not respond to comments and questions,Andy Kirk,Much more,female,46 - 55,USA or Canada,white,Public sector
3/4/2017 17:03:51,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Visualization Designer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Consultant,,,,,,75,0,0,15,10,Tableau,We have a set list of tools we're expected to use for data visualization.,Dashboard,Line Chart;Bar Chart;Infographics,General Public;Analysts;Engineers;Project Managers,Expert,Daily,Entertainment;Analysis;Summarization,Consultative,Resistance to change,Sometimes the haste at which they need to be delivered can lead to decreased creativity.,I'd prefer to do a more even mixture of data visualization delivery and advising/training/thought leadership.,I want to branch out into new technologies. Specifically- ones that are programming based for ultimate flexibility and creativity.,"Often times- clients get caught up in what's ""sexy"" and lose focus on what's truly the right design choices for their use case.",More analysis requirements and recommendations/decision science support role.,I'd like to see them be transparent in their learning process and short-comings. ,Andy Kirk;Alberto Cairo,Same,female,26 - 35,USA or Canada,white,Private sector
3/7/2017 9:39:14,3,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Chief Scientist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;Completely custom,No,Research,10,5,5,5,0,Excel;Power BI;RawCharts,I'm able to choose my own tools.,Embedded in a tool;Documents;Presentations,Line Chart;Bar Chart;Dendrogram;Alluvial;Circle Packing;Slopegraph;Sunburst,General Public;Executives,Intro,Monthly,Analysis;Summarization;Learning;Research,Consultative,Slow-moving organizational culture,"The phrase ""visualization simplifies the complex""; stakeholders who want every visualization to be fully understandable in 5 seconds or less",More self-sufficiency of research- stronger uptake of analytical outputs,Stronger appetite for experimentation in making and processing data visualizations,Visualizations aren't complete through software alone; the annotation layer is essential,More internal partners willing and able to do visualizations,More applied research with business decision makers on what types/approaches/techniques work better (or don't work at all),Andy Kirk;Alberto Cairo;Stephanie Evergreen;Ann K. Emery;Cole Nussbaumer Knaflic,Much more,male,36 - 45,USA or Canada,white,Private sector
2/28/2017 8:45:40,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,President,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Hired to do data visualization,Consultant,,,,,,10,0,0,5,10,Illustrator;Excel,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Flow Diagram,General Public;my clients are non-profit advocacy organizations,Intro,Monthly,Summarization;advocacy,Consultative,seeing- everywhere- the awful data storytelling most advocates do,no real frustration,,,i'm a sole proprietor,being able to afford Tableau. :),,Andy Kirk;Ann K. Emery;Cole Nussbaumer Knaflic;Stephanie Evergreen;Jon Schwabish;Jorge Camoes;Andy Cotgreave,More,female,46 - 55,USA or Canada,hispanic,Mixed
2/28/2017 9:15:15,1,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Performance Administrator,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Communication,Separate data visualization team,Business Intelligence Tools,No,IT,15,,,,,Excel;Tableau,We have a set list of tools we're expected to use for data visualization.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Treemap;Flow Diagram,General Public;Project Managers;Executives,Intro,Quarterly,Summarization;Learning,Consultative,,,,,That the basic principles exist to make analysis and storytelling better,,,Andy Kirk;Cole Nussbaumer Knaflic;Jon Schwabish,More,female,,,,Public sector
3/4/2017 12:39:10,6,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Manager of Data Visualization ,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Exploration,Separate data visualization team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,Don't Know,Design;BI,75,0,0,24,1,Illustrator;Tableau;D3;Other Javascript;ggplot;Other R;Gephi,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations;Web pages - not static,Line Chart;Bar Chart;Treemap;Network Diagram;Choropleth Map;Flow Diagram,Product Managers;Project Managers;Executives,Expert,Daily,Analysis;Decision making,Collaborative,Organizational silos,Activity based working set-up,Getting a studio space ,Getting a studio space ,A lot of things but I'm not complaining about it. ,Getting a dedicated studio space ,,Andy Kirk;Enrico Bertini;Moritz Stefaner,More,female,36 - 45,Oceania,white,Private sector
2/28/2017 10:55:22,5,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,Consultant,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Consultant,,,,,,20,0,0,10,20,Excel;Tableau;D3,I'm able to choose my own tools.,Embedded in a tool;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Choropleth Map,Analysts;Project Managers;Executives,Moderate,Monthly,Learning,Consultative,significant delays,lack of metadata and general data knowledge,more focus on data knowledge,more viz community focus on data knowledge,the importance of data,more funding for data viz work,more focus on exploratory data analysis and the use of visualization,Andy Kirk;Nathan Yau;Robert Kosara;Cole Nussbaumer Knaflic;Kim Rees;Stamen,More,male,46 - 55,USA or Canada,white,Private sector
3/1/2017 14:35:16,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Planning Manager,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools,No,Planning,20,,20,,20,Excel;Qlik,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Boxplots;lollipops;paired/slope charts,Executives;University staff and students,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning,,Workload / time pressures,Not enough time,More staff to free up my time to concentrate more strategically (rather than fire-fighting),More staff to free up my time to create data viz for more / wider projects- create more in-depth analysis,How long it takes- the skills and effort used - good data viz looks effortless (dammit!),More staff to free up my time to explore other data viz software etc,,Andy Kirk;Alberto Cairo;Jorge Camoes,More,female,36 - 45,Europe,white,Public sector
3/3/2017 10:41:01,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Project Manager,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing,Embedded in another team,Completely custom,No,Marketing;Research,10,20,30,10,10,Excel,I'm able to choose my own tools.,Dashboard;Scrollytelling;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Network Diagram;Flow Diagram,General Public;Nonprofits;foundations,Intro,Monthly,Analysis;Summarization;Learning,Collaborative,Time to learn new software/learning curve. ,Don't have enough tools. ,More training. ,More training. ,How important it is and how hard it is to visualize bad data. ,More training. ,More learning sessions. ,Andy Kirk;Stephanie Evergreen,Much more,female,46 - 55,USA or Canada,white,Private sector
2/27/2017 17:40:43,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Analyst,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Marketing;Exploration,Separate data visualization team,Business Intelligence Tools,Yes,Design;Engineering;Marketing;Research;IT,50,20,10,10,10,Excel;Tableau;Mapbox,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Scrollytelling;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Choropleth Map;Flow Diagram,General Public;Analysts;Product Managers;Project Managers;Executives,Moderate,Daily,Analysis;Summarization;Learning,Collaborative,Access to data,Amount,Available time,More storytelljng,Approach,More training,More story telling- capturing the value of analysis,Andy Kriebel,Much more,male,36 - 45,USA or Canada,,Public sector
2/27/2017 17:51:48,10,Other,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,BI Consultant,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Consultant,,,,,,20,10,5,5,10,Tableau,I'm able to choose my own tools.,Dashboard;Scrollytelling;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Choropleth Map,Analysts;Engineers;Scientists;Medical Professionals;Product Managers;Project Managers;Executives;Education,Expert,Daily,Analysis;Research,Consultative,Stubborn users,Stubborn users,Do more storytelling with data,,,Dynamiccparameters in Tableau,,Andy Kriebel,Less,male,56+,USA or Canada,white,Private sector
3/1/2017 11:31:23,2,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Report Developer,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools,No,Design;Research,75,0,0,25,0,Excel;Tableau,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Flow Diagram;Scatterplot;Pareto chart;bump chart;highlight table;barbell chart,Analysts;Executives,Expert,Daily,Analysis;Summarization;Research,Consultative,Low wage,Traditional waterfall approach to design and deployment,Higher wage,More agility in rapid prototyping and iterative development,Every component of a visualization should be warranted - more is not always better. Don't design for print- design for digital interaction.,Mentorship,What are tool-agnostic habits that develop more effective data storytelling,Andy Kriebel,Same,male,26 - 35,USA or Canada,white,Public sector
3/1/2017 13:08:53,6,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Global Head of Data Visualization,Data Visualization Role has same compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Both,Business Intelligence Tools,No,Engineering;Marketing;IT;Sales,10,2,0,1,1,Excel;Tableau;Microstrategy,I'm able to choose my own tools.,Dashboard;Scrollytelling;Documents;Presentations;Email,Line Chart;Bar Chart,Analysts;Engineers;Product Managers;Project Managers;Executives,Moderate,Weekly,Analysis;Summarization,Consultative,Decentralization with little prior controls or documentation to standardise practices and quality,Decentralization with little prior controls or documentation to standardise practices and quality,For people to embrace graphs and leave tables of numbers and their own Excel work behind,To use more interaction and play with deeper- richer features. I do not do enough exploration of the tools extremes.,Why it can't be a table of numbers,A cultural change for making things better rather than pushing problems to the next person,How to overcome enterprise issues with data preparation and enable analysts at scale to focus more on analysis than data prep,Andy Kriebel,More,male,26 - 35,Europe,white,Private sector
3/1/2017 11:41:05,1,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,PhD Fellow,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Student,,,,,,20,0,10,10,40,Illustrator;Excel;Tableau;Plotly;Mapbox;Pandas;Other Python;QGIS;Corel Draw;Photo-paint,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Infographics;Raster Map;box plot;radial plot,General Public;Scientists,Intro;Moderate;Expert,Weekly,Entertainment;Research,Consultative,Lack of focus on data visualization,Lack of training,I would prefer to have a data analyst job title,More collaboration on visualizations,Effective visualization is just as important as the data. If it is not visualized well or correctly- the message will be lost.,A shift in research focus,I love MakeoverMonday- TableauTipTuesday- and the like and more of that on various platforms would be great,Andy Kriebel;Eva Murray,Much more,female,26 - 35,USA or Canada,white,Academic
2/27/2017 16:13:53,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Business Data Analyst,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,Research;IT,70,10,0,20,0,Tableau,We have a set list of tools we're expected to use for data visualization.,Dashboard;Scrollytelling;Presentations,Line Chart;Bar Chart;Pie Chart;Scatter plot ,Analysts;Executives;Research,Moderate,Weekly,Analysis;Summarization;Research,Collaborative,No support from management. ,People with no design sense making decisions about the design of a data visualization. ,"""Mo' money- mo' money- mo' money."" Uncle Phil ",More training on advanced topics and data preparation. ,The importance of and work that goes into creating beautiful- usable dashboards for them to use. ,More recognition.,More support for non-traditional analysts. ,Ann Jackson,Much more,male,26 - 35,USA or Canada,multi,Public sector
3/1/2017 18:03:03,9,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,Developer,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Both,Completely custom,Yes,Design;Engineering,60,10,10,10,10,D3;Processing;WebGL;Other Javascript;Java,I'm able to choose my own tools.,Static Web Page;custom desktop apps,Line Chart;Bar Chart;Pie Chart;Network Diagram;Choropleth Map;Raster Map,General Public;Analysts;Scientists;Executives,Intro;Moderate;Expert,Daily,Analysis;communication and outreach,Consultative,,,,,,,,Ben Fry,Same,male,36 - 45,USA or Canada,white,Private sector
3/6/2017 2:28:01,2,Other,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Visualisation Developer,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Communication;Exploration,Embedded in another team,Completely custom,Yes,Design;Marketing;Research,95,0,0,50,0,Illustrator;D3;nodebox;pen & paper,I'm able to choose my own tools.,Embedded in a tool,Line Chart;Bar Chart;Treemap;Network Diagram;Choropleth Map;scatter;bubble;swarm ;histogram;boxplot,General Public;Project Managers;Executives,Moderate;Expert,Weekly,Analysis;Research,Collaborative,lack of QA on design and art direction,lack of appreciation for detail (design- annotation- type),,better integration- it should blend into flow; opposed to be 'placed' in ,some parts/concepts are just still very alien ,,less rigidness- allowing data vis to be applied differently depending on context,Ben Fry;Giorgia Lupi;Mike Bostock,Much more,male,36 - 45,Europe,asian,Private sector
2/27/2017 18:09:04,3,Bachelors,Mostly from School,Intended to work in data visualization,No,DBA,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,Design;IT,10,40,0,15,45,Illustrator;Excel;Tableau;Power BI;Other Javascript,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Choropleth Map,Executives,Moderate,Weekly,Analysis;Summarization;Learning,Collaborative,Lack of tech training for my support staff,Need to get better at table calcs and design.,More support for data prep so I could focus on data vis design. ,More hours for focused training. ,How it opens clear understanding. ,More staff,More how to design workshops ,Ben Jones;Tableau,Much more,female,36 - 45,USA or Canada,white,Not-for-profit
3/4/2017 14:51:45,10,PhD,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Exploration,Both,Completely custom,Yes,Research,10,10,5,1,10,Excel;Java;Other Network Visualization Suite,I'm able to choose my own tools.,Presentations;Email,Bar Chart;Network Diagram,Analysts;Executives,Intro,Monthly,Analysis,Collaborative,Obtaining and normalizing data,Tedious,Make it only about analysis ,,,More time on analysis,Formal review on weekly basis of results ,Ben Shneiderman,More,male,36 - 45,USA or Canada,white,Public sector
3/2/2017 7:49:46,10,PhD,Mostly Self-Taught,Intended to work in data visualization,No,Principal Data Scientist,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Engineering;Research,10,10,75,5,0,Excel;Tableau;Qlik;Plotly;D3;Processing;Highcharts;Other Javascript;ggplot;Other R;Pandas;Other Python;Angular;Gephi,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Dendrogram;Choropleth Map,Analysts;Engineers;Scientists;Product Managers;Executives,Moderate,Daily,Analysis;Summarization;Research,Consultative,Lack of capacity to do things better,That limited knowledge from management limits the scope of what I can do,More time to work on communication,,,A bigger team to work with,,Ben Shneiderman,More,,,,,Private sector
2/27/2017 16:53:11,10,Bachelors,Equal Parts School and Self-Taught,Intended to work in data visualization,No,,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Consultant,,,,,,40,5,10,40,5,Excel;Tableau;D3;Highcharts;ggplot,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Scrollytelling;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Network Diagram;Flow Diagram,General Public;Analysts;Engineers;Scientists;Medical Professionals;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Daily,Analysis;Summarization;Learning;Research,Collaborative,,Problematic data,More freedom,,It's often as much about people- psychology- and perception as it is about the data. ,,More diversity in terms of perspectives and less absolutism,Ben Shneiderman;Stephen Few,More,male,,USA or Canada,white,Mixed
2/27/2017 13:15:17,8,PhD,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Visualization Architect,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Communication;Exploration,Both,Business Intelligence Tools;General charting libraries;Completely custom,Yes,Engineering,10,10,20,10,10,Other BI;WebGL;SynerScope Marcato,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations,Line Chart;Bar Chart;Infographics;Treemap;Dendrogram;Network Diagram,Analysts;Engineers;Scientists;Medical Professionals;Executives,Moderate;Expert,Daily,Analysis,Collaborative,Communication,Data understanding,More time for research,More exposure,That it is more powerful by combining it with ML/automatic methods.,Faster prototyping with automatically linked and flexible/ customizable state of the art visualizations and machine learning techniques,More discussion on what people/analysts/domain experts in industry can understand. I often see situations where techniques are theoretically better but are not understood/appreciated in practice. ,Ben Shneiderman;Van Wijk;Stasko;Miksch;Jeffrey Heer,More,male,26 - 35,,,Private sector
2/27/2017 10:07:58,7,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Data Visualization Engineer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview,Both,Business Intelligence Tools;GGPlot/Pandas Charts;General charting libraries;Completely custom,No,Engineering;Marketing;Research,40,10,10,10,5,D3;Other Javascript;React,I'm able to choose my own tools.,Dashboard;Custom Application,Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map;Raster Map;Other,Analysts;Scientists;Product Managers;Executives,Moderate;Expert,Daily,Analysis,Consultative,Not enough data visualization roles,Lack of authority,More data visualization,More complex charts,It's worth spending the time to learn how to read data visualization,Better data visualization literacy,How to measure impact,Bret Victor,Much more,male,36 - 45,USA or Canada,white,Private sector
2/27/2017 22:25:51,2,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Co-founder,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Separate data visualization team,Business Intelligence Tools;Completely custom,Yes,Design;Engineering;Founders,30,10,0,10,10,Tableau;D3;Leaflet;React,I'm able to choose my own tools.,Static Web Page,Line Chart;Bar Chart;Pie Chart;Choropleth Map,General Public;Analysts;Engineers,Intro;Moderate,Weekly,Analysis;Summarization;Learning,Collaborative,Clients have unrealistic expectations for budgets,Getting the right (raw) data can be difficult,,Easier access to raw data,,,,Bret Victor,More,male,26 - 35,Europe,white,Private sector
3/1/2017 11:13:15,6,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Editor,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Communication;Journalism,Separate data visualization team,Completely custom,Yes,Design,5,10,10,5,10,D3;Other Javascript;ggplot;Other R;QGIS;Gephi,I'm able to choose my own tools.,Scrollytelling;Static Web Page;Presentations,Line Chart;Bar Chart;Treemap;Network Diagram;Raster Map,General Public,Moderate,Daily,Entertainment;Analysis;Learning,Collaborative,,lack of time to generalize our tools,,more automated pipelines,,,,Bret Victor,Same,male,36 - 45,,white,Not-for-profit
2/28/2017 0:45:22,1,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,Yes,UX & Information Designer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Separate data visualization team,General charting libraries;Completely custom,Yes,Design;Engineering;Marketing;Research;IT,25,5,5,60,5,Illustrator;D3;React,I'm able to choose my own tools.,Dashboard;Scrollytelling;Static Web Page,Line Chart;Bar Chart;Pie Chart;Choropleth Map,General Public;Analysts;Engineers;Scientists;Product Managers;Executives,Intro;Moderate;Expert,Monthly,Analysis;Summarization;Learning;Research,Consultative,A complicated role as a senior designer / junior developer.,Learning all the tools for data visualization.,,Could be easier to draw a line between DOM editing in React & D3- right now we just use D3 for calculations and edit the DOM with React.,I'd like to move towards interactive infographics- the other guys are pretty chart-oriented.,,Better getting started tutorials- this is all very overwhelming to a noob developer.,Bret Victor;Giorgia Lupi,More,male,26 - 35,Europe,white,Private sector
3/1/2017 14:44:28,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Freelancer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Contractor,,,,,,30,30,30,15,15,D3;React;Julia;Mathematica,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page,,General Public;Analysts,Intro;Moderate,Weekly,Entertainment;Analysis;Summarization;Learning,Consultative,,The tools are still primitive compared to the potential. ,Faster feedback loops and better tools enabling more time to be spent in the design phase rather than cleaning/analysis/execution.,Better- more integrated tools. And I'd like to get better at getting to the value of the things I make -- it's difficult to make something of substance and easy to make compromises because there's so much mediocre/useless work out there and comparatively few role models for solidly useful visualizations that aren't just fun and pretty.,As a freelancer- people get it. Or maybe I've just been lucky. :),An internal sense of direction towards utility and value rather than only beauty and entertainment.,,Bret Victor;Mike Bostock,More,male,26 - 35,,,Private sector
3/1/2017 13:46:59,8,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Scientist,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Consulting,15,25,50,0,10,Excel;Tableau;Qlik;ggplot;Other R;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map;Flow Diagram,Engineers;Scientists;Medical Professionals;Executives,Moderate,Monthly,Analysis;Summarization,Consultative,Lack of quality data.,Resolution of the graphic output.,More data!,Spend more time on quality visuals.,That it's an important part of the process- and not always the easiest.,Integrated graphics with native database tools.,The evolution of visualizations in corporate messaging.,Cole Nussbaumer Knaflic,More,male,46 - 55,USA or Canada,white,Private sector
3/2/2017 16:28:17,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Solution Advisor ,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Engineering;Marketing;IT,20,20,40,0,20,Excel;Power BI;ggplot,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Choropleth Map;Flow Diagram,Analysts;Engineers;Product Managers;Project Managers;Executives,Moderate,Daily,Analysis;Summarization;Learning;Research,Consultative,Finding time to keep up with the page of change of tools and research,Unclean data,More work time to learn,Always get direct access to data sources rather than to get extracts or have to request subsets from IT.,How much thought goes into creating even a simple visualisation in order to make it useful. ,More time on the job for learning,,Cole Nussbaumer Knaflic,Same,female,36 - 45,Oceania,,Private sector
3/4/2017 21:23:08,7,Bachelors,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Principal / Consultant,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Consultant,,,,,,5,0,0,10,1,Illustrator;Tableau;QGIS;Other Network Visualization Suite,I'm able to choose my own tools.,Static Web Page;Documents;Presentations;Social media,Line Chart;Bar Chart;Pie Chart;Infographics;Network Diagram;Flow Diagram,General Public,Intro;Moderate,Quarterly,Summarization;Learning,Consultative,Want data viz to be a larger part of my job but there is little demand,Educating clients about design process,more appreciative clients,Want to do more- especially so I can get better at design,How much time and intention it takes,More appreciative clients,Communicating about the benefits of data viz- especially for organizations,Cole Nussbaumer Knaflic,More,female,26 - 35,USA or Canada,white,Mixed
3/2/2017 9:27:11,8,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,GIS Specialist,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Both,General charting libraries,Don't Know,Research,20,0,0,10,30,Illustrator;Excel;Other Python;ArcGIS;QGIS,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Network Diagram;Choropleth Map,General Public;Analysts;Medical Professionals,Moderate,Weekly,Analysis;Summarization;Learning;Research,Collaborative,people don't seem to know what they want until they see it,constantly learning new software/tools,higher pay,,the work that goes into prepping the data,a knowledgeable mentor,,Cole Nussbaumer Knaflic;Gretchen Peterson,More,female,46 - 55,USA or Canada,white,Public sector
2/27/2017 12:29:22,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Scientist & Visual Storyteller,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Marketing;Sales,Embedded in another team,Completely custom,No,Marketing;sales,70,5,10,10,5,D3,I'm able to choose my own tools.,Scrollytelling;Static Web Page,Network Diagram;Choropleth Map;violin plot,General Public;Executives;clients for sales team,Moderate,Quarterly,Entertainment;Summarization;Learning,Collaborative,,We are telling stories that could get published in larger news orgs. I hope to see this content pushed into the public.,"Many people think of me as someone they can ask to ""grab data""; mainly because they don't fully understand what I can do to help them. So I'm creating some scroll stories to show them what I can do.",I'm new to the field and have a lot to learn. I just want to keep my skills sharp enough that people will NOT order visualizations like pizza but view me as someone who can own a project to develop something uniquely and useful. ,They don't understand how custom a visual story can become; however- this team brought me on board because they hope that I can do something unique.,more money. I love my job. They even allow dogs here.,"I'd like to see a ""method"" for developing a data visualization that encourages collaboration. What should we be saying and asking to create a collaborative work space?",D3,Same,male,36 - 45,USA or Canada,,Private sector
2/27/2017 12:33:36,,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Director of Engineering Visualization,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Separate data visualization team,Completely custom,Yes,Engineering,45,50,0,5,0,D3;Other Javascript,I'm able to choose my own tools.,Dashboard;Dynamic web pages,Line Chart;Bar Chart;Pie Chart;Treemap;Dendrogram;Network Diagram;circle plot;geo map;scatter plot;path plot,Analysts;Engineers;Scientists;Medical Professionals;Executives;SMEs;data scientists;financial,Intro;Moderate;Expert,,Analysis;Summarization;Learning;Research,Collaborative,Resourcing (we're a startup),Lots of infrastructure to learn / design / maintain / implement,More devs,Getting deeper in to more advanced visualization,We're small- so I'm fine with the level of communication,Getting a series A,I'm keenly interested in machine learning for autonomous visualization. I also want to break out of the idea that visualization is an end product.,D3,Much more,male,46 - 55,USA or Canada,white,Private sector
2/27/2017 15:05:10,4,PhD,Mostly Self-Taught,Intended to work in data visualization,Yes,Senior Data Visualization Developer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Engineering,10,0,10,60,20,D3;React;Angular,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Presentations,Line Chart;Bar Chart;Pie Chart;Choropleth Map;Stacked Bar Chart,Analysts;Product Managers;Project Managers;Executives;Freelancing,Intro;Moderate;Expert,Daily,Analysis;Summarization,Subordinate,It is primarily a senior frontend position and I am not spending enough time practicing data viz to become a master. My D3 skills are considerably more valuable to the company then my frontend knowledge- but there is no organizational understanding of data viz and no ability to capitalize on the asset. For freelancing- the frustration is being unknown to potential clients and not having the option to tackle difficult projects.,My company is building a BI tool but they are completely closed to researching/pitching/testing/engineering new visualization types for the product. All of my complex visualization work is done for senior employees and does not scale. We could take a stronger position in the market if we invested in data viz and hired a dedicated team.,To convince senior leadership that data viz is critical to our product.,"Our charts should take better advantage of D3's power and flexibility. I can make anything but we only ""need"" the basics.","They don't understand why anyone would want to do visualization all the time- and they absolutely cannot imagine how data viz could be a source of profit on par with frontend or backend. They also believe that data viz is not a ""real"" software engineering focus that will prepare juniors for architect and management positions.",We should have a small budget for funding research- prototyping- and preliminary user testing of experimental visualizations. A data viz team cannot improve an organization if it's constrained to giving clients what they think they want.,"Everyone- thank you for the informative and inspirational pieces describing our industry. There're an incredible number of articles- interviews- podcasts- and meta-visualizations available to anyone interested in the job. That said- please share your negative or difficult data viz career experiences as well. You can be anonymous! For many data viz practitioners the market is dismissive and ignorant (even hostile) but positivity is the constant byword of the community. Consider a struggling artist or actor; they have access to leagues better advice than ""just work harder and wait for your inevitable big break"". Our beginners do not have a clear career path and it is very easy to lose the plot.",D3,Much more,male,26 - 35,USA or Canada,white,Private sector
3/1/2017 23:49:50,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Managing Director,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;Completely custom,No,Marketing;IT,10,10,10,0,5,Excel;Tableau;D3;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Network Force;Sunburst;WordCloud,Product Managers;Executives,Intro;Moderate;Expert,Daily,Analysis;Summarization,Collaborative,Wish I could spend more time doing viz.,I need to choose a tool between Tableau and D3 (thinking flexibility and maintainability),,D3 would be less complex- more v4 examples,,,,D3;Tableau,More,male,46 - 55,USA or Canada,white,Public sector
3/1/2017 11:06:37,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Scientist,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Marketing;Research,20,20,30,0,30,Excel;Tableau;Other BI;Leaflet;ggplot;Other R,I'm able to choose my own tools.,Dashboard;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Dendrogram;Network Diagram;Choropleth Map,Product Managers;Project Managers;Executives,Moderate,Weekly,Entertainment;Analysis;Summarization;Research,Collaborative,Slow IT change calendar,Not enough sandbox possibilities for trying new tools due to security policies and architectural landscape,Add sandbox environment for tooling,Learn D3,Difficulty of making effective visualizations. Choices of what to leave in and what to leave out.,Basic data savvy course forr everyone,Step by step of making choices- not just technique,Dark Horse Analytics;Nathan Yau,Same,male,36 - 45,Europe,white,Private sector
2/27/2017 16:35:31,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Analytics Director,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Contractor,,,,,,10,40,15,20,15,Excel;Tableau;D3,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Choropleth Map;Raster Map,General Public;Medical Professionals,Intro,Monthly,Analysis;Summarization;Learning,Consultative,Distance from end user- lack of support,"No end user appetite for anything but vanilla-flavour charts (i.e. bar- line- pie). Choropleth considered ""exciting"".",Network of peers to bounce questions off,Easier to produce complex charts,Time and thought that's put into design. Good design looks intuitive- so people believe it naturally occurred like that.,More interaction with clients,Best/new ways to present data- exploration of tools,David McCandless,Much more,male,26 - 35,Europe,white,Private sector
3/8/2017 10:38:59,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Visualization Engineer,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Marketing,Both,Business Intelligence Tools;General charting libraries;Completely custom,No,Research;IT,60,5,0,30,5,Illustrator;Excel;Tableau;D3;Highcharts;Other Javascript,I'm able to choose my own tools.,Dashboard;Scrollytelling;Static Web Page;Documents;Presentations;Dynamic web page,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Raster Map;Flow Diagram;Timeline;heatmap;dot matrix ,General Public;Analysts;Product Managers;Executives,Intro;Moderate,Hourly,Analysis;Summarization;Learning;Research,Consultative,Getting good data,I get pulled off to handle emergencies related to my other skill sets (UI code & UX design).,Easier access to the data that I need.,Allow me more time to implement solutions.,"Some people do understand the entire process. They think it's just- ""create a quick chart"". ",Easier access to the data I need.,Access to training- seminars and conferences.,David McCandless,Much more,female,46 - 55,USA or Canada,white,Public sector
2/28/2017 4:12:22,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Information Management Trainer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,We are an IM NGO - all our consultants have some background in data visualization but its not too advanced,30,20,10,20,20,Illustrator;Excel;Power BI,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Choropleth Map;Raster Map;Flow Diagram,General Public;Analysts;Humanitarian Organizations,Moderate,Monthly,Decision making (hopefully),Consultative,People have no data science background- they design needs assessments without a proper data analysis and visualization plan. When the data is collected rare people know how to produce visualizations to help understand the situation and support decision making. ,Power BI is perfect but needs to step up its mapping game,Salary :) and more time/awareness/training on data visualization ,Improve quality ,,,How to visualize or even standardize visualization of information on humanitarian needs ,David McCandless;Mike Bostock,Much more,male,26 - 35,MIddle East & Africa,,Not-for-profit
3/1/2017 11:28:46,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Research Software Specialist,Data Visualization Role has higher compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Communication;Research,Both,Business Intelligence Tools;General charting libraries,No,Design;Research;IT,10,5,5,5,5,Illustrator;Excel;Tableau;ArcGIS,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Infographics;Treemap;Flow Diagram,General Public;Project Managers,Moderate,Yearly,Learning;Research,Collaborative,time management,lack of support,I'd do data viz 100,more of it,they don't ask deep questions,,novel ways to use out of the box tools,David McCandless;Nathan Yau,More,female,46 - 55,USA or Canada,white,Public sector
2/27/2017 22:44:24,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Interactive News Developer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Both,ggplot2/Pandas Charts;Completely custom,No,Design,30,0,0,10,35,Illustrator;D3;Leaflet;Mapbox;ggplot;React,I'm able to choose my own tools.,Scrollytelling;Static Web Page,Line Chart;Bar Chart;Treemap;Choropleth Map;Raster Map,General Public;Myself,Intro,Weekly,Learning,Collaborative,The unknown,Annotation,,,,,Examples of real world impact,Derek Watkins;Mike Bostock;Tufte;Moritz Stefaner,More,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 22:18:49,4,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Data Visualizer,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Exploration;Activism,Both,Business Intelligence Tools;Completely custom,Yes,Design;Data Explorer (data scientist; as preliminary data viz),42,5,5,43,5,Illustrator;Excel;Tableau;D3;Processing;Other Javascript,I'm able to choose my own tools.,Embedded in a tool;Presentations,Line Chart;Bar Chart;Infographics;Treemap;Network Diagram;Gantt chart + Ix js Map,General Public;Analysts;Engineers;Scientists;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Monthly,Entertainment;Analysis;Summarization;Learning;Research,Consultative,lack of projects that offer enough creative freedom,inefficiency of data viz Ux/Ix design tools from designer to developer,higher pay,more time to explore artistic expression in robust data viz,how truly considered my design approach is: cognitive aspects- graphic choices and white space- overall structure- level of drill down- the importance of maintaining the narrative throughout it all... I am completely earnest in this work because it is so important to do it well.,ultimately more creative ownership and acknowledgement on my projects,Where data visualization is currently situated with regard to its context and how we can support and promote further interdisciplinary data viz.,Dietmar Offenhuber;Alberto Cairo;Moritz Stefaner;NYT;MIT Urban Risk Lab,More,female,26 - 35,USA or Canada,white,Private sector
2/27/2017 16:44:24,2,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Postdoctoral Researcher,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Communication,Embedded in another team,ggplot2/Pandas Charts;Completely custom,No,Research,10,10,10,5,10,Excel;Pandas;Other Python,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Dendrogram;3D Chart;VR/AR Charting,Scientists,Moderate;Expert,Monthly,Analysis;Research,Collaborative,,,,,,,"Deep dives into non-traditional viz roles. Like ""How can we use dataviz to improve communication in industry X"".",DJ Patil;Micah Blake McCurdy;Nathan Yau,More,male,26 - 35,USA or Canada,white,Public sector
2/27/2017 12:57:54,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Software Engineer,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Marketing;Exploration,Both,Business Intelligence Tools;General charting libraries;Completely custom,No,Engineering,80,1,0,1,2,D3;React;zeppelin (nvd3),,Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Heatmap,Engineers;Product Managers;Executives,Intro;Moderate;Expert,Daily,Analysis;Summarization;Learning,Consultative,Lack of authority to effect change,I have to do dataviz instead of UI/eng b/c there are so few viz resources,Make it easier for others to create viz,Make it easier for others to create viz,That they can do it too,Greater autonomy,,Tufte,Same,male,36 - 45,USA or Canada,white,Private sector
2/27/2017 13:08:00,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Engineer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Both,Completely custom,Yes,Design;Engineering;Cartography,20,40,0,20,20,D3;Mapbox;WebGL,I'm able to choose my own tools.,Embedded in a tool;Maps,Raster Map;Vector Map,General Public,Intro,Hourly,Mapping,Consultative,Pay / Hrs worked,Reducing the data complexity in a way that makes it accessible to novice and untrained users. Also Open Source is thankless.,Pay more / fewer hours,Wish I had more help,Good engineering is slow. I might spend hours making tiny adjustments to CSS or D3 selectors to track down subtle bugs. I don't think it's because I'm a bad developer- I think it's that I've reached the point where the bugs I spend time on require deep analysis.,To be involved early on in the decisions about how data is collected and organized.,More support for open source developers.,Tufte,Same,male,36 - 45,USA or Canada,white,Private sector
2/27/2017 17:00:49,10,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Data Visualization Consultant,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Consultant,,,,,,40,10,20,10,20,D3;Leaflet;Pandas;Other Python,I'm able to choose my own tools.,depends on the project,Line Chart;Bar Chart,General Public;Analysts;Scientists;Product Managers,Intro;Moderate;Expert,Daily,Entertainment;Analysis;Summarization;Learning,Collaborative,too many meetings,undervalued work,fewer meetings,more iterative,seen as decorative,,more public examples of using data viz for actionable analysis of data,Tufte,Much more,,,,,Private sector
2/27/2017 22:17:15,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Director of Strategic Planning,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Research,5,,,,5,Excel;Tableau;ggplot,I'm able to choose my own tools.,Dashboard;Documents;Presentations,Line Chart;Bar Chart,General Public;Executives,Intro,Quarterly,Analysis;Summarization;Learning,Collaborative,Plenty to do- not much time,Limited access to powerful tools,Greater access to more powerful tools and how to use them.,Powers that be understand why it's important to invest in data visualization.,It takes plenty of time and effort to create truly effective data visualizations.,,,Tufte,Same,male,,USA or Canada,,Public sector
2/27/2017 23:11:02,4,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Newsroom developer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Contractor,,,,,,60,5,10,10,15,Excel;D3;Leaflet;Mapbox;WebGL;Highcharts;Other Javascript;Pandas;Other Python,I'm able to choose my own tools.,Static Web Page,Line Chart;Bar Chart;Treemap;Choropleth Map,General Public,Intro,Weekly,Entertainment;Summarization;Learning,Consultative,the public,,the readers,,,,,Tufte,Same,male,26 - 35,Europe,white,Public sector
2/28/2017 0:48:41,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Analyst II,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,Don't Know,business/data analysis roles,10,30,0,0,60,Excel;Tableau;Power BI,I'm able to choose my own tools.,Dashboard;Documents,Line Chart;Bar Chart;Pie Chart;Treemap;Flow Diagram,Engineers;Medical Professionals;Product Managers;Project Managers;Executives,Moderate,Daily,Analysis;Summarization;business measurement,Collaborative,Data exploration. The data warehouse and IT is a blackbox,it's the last step and therefore gets the least amount of time. most time is in data exploration.,data definitions,do more of it,time requirements,less data wrangling,,Tufte,More,male,36 - 45,Europe,white,Private sector
2/28/2017 5:09:13,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,News Applications Developer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Separate data visualization team,Completely custom,No,Design;Engineering;Editorial,50,10,10,10,20,Illustrator;Excel;D3;Other Javascript;ggplot;Other R;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents,Line Chart;Bar Chart;Infographics;Choropleth Map;Raster Map;Flow Diagram,General Public,Intro,Daily,Entertainment;Analysis;Summarization;Learning;Research,Collaborative,,,,,,,,Tufte,Same,male,26 - 35,USA or Canada,white,Public sector
2/28/2017 7:19:34,7,Bachelors,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Data Analytics Lead,Data Visualization Role has same compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,IT,10,50,10,5,15,Tableau,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations;Email,Line Chart;Bar Chart,Analysts;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Daily,Analysis;Summarization;Learning,Collaborative,I want to do advanced analysis but users need to buy in before it would be useful.,Not many users are aware of or use best practices.,A larger team to help instill best practices- additional training for business users- and advanced analysis.,More time to spend on it and research other approaches and tools.,Good design is invisible and it takes a good amount of effort to strip out the unnecessary aspects.,More time in the day. A larger team.,Intro sessions to new tools with a step-by-step walk through. Break it down to be really basic and get me setup.,Tufte,Same,female,26 - 35,USA or Canada,white,Public sector
2/28/2017 8:32:54,10,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Lead Developer ,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Contractor,,,,,,60,20,0,10,0,D3;Other Python;React;Marquee Charts,I'm able to choose my own tools.,Dashboard,Line Chart;Bar Chart,General Public;Analysts;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Hourly,Analysis;Summarization;Learning;Research,Collaborative,Js fatigue ,Cross browser support ,,,,,,Tufte,Much more,male,36 - 45,USA or Canada,,Private sector
2/28/2017 9:27:11,9,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Web Analyst,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools;Excel,No,Marketing,10,20,5,5,30,Excel;Tableau;ggplot,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Choropleth Map;3D Chart,Analysts;Product Managers,Expert,Weekly,Analysis;Summarization;Learning,Subordinate,Lack of communication between analyst and consumer of data,Lack of time to improve personal skills,More time to improve skills- more feedback from consumers,More time to improve skills,The intricacy- skill that is needed. The need for DBAs to provide clean- useful data ,Improved DBA work/collaboration,Less on visualizing data- more on cleaning and munging data for useful visualization,Tufte,Less,male,36 - 45,USA or Canada,black,Private sector
2/28/2017 9:32:54,7,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Engineering,10,20,50,0,20,Tableau;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Choropleth Map,Analysts;Executives,Moderate,Daily,Analysis;Summarization;Learning,Consultative,Data,Tools,Better source data,Better open source tools,Amount of effort,Better source data,Better documentation,Tufte,Same,male,26 - 35,USA or Canada,white,Private sector
2/28/2017 12:59:09,8,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Lecturer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Other,Analysis;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts,No,Research,20,50,20,20,50,ggplot;Other R,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Dendrogram,Scientists,Moderate;Expert,Yearly,Analysis;Learning;Research,Collaborative,when package upgrades break code,complex figures,more package upgrades that break code,more complex figures,they are smart,Another set of eyes,Presenting data,Tufte,More,male,36 - 45,Europe,white,Public sector
3/1/2017 11:26:06,2,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Scientist,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Engineering;IT,15,5,60,0,20,Tableau;Plotly;ggplot;Other R;Gephi,I'm able to choose my own tools.,Dashboard;Presentations,Line Chart;Bar Chart;Network Diagram,Engineers;Executives,Moderate;Expert,Weekly,Analysis,Collaborative,,,,,,,,Tufte,Same,male,26 - 35,Europe,,Public sector
3/1/2017 11:52:00,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Scientist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing,Both,Modeling;Graphics,No,Design;Engineering;Research,2,10,15,0,30,Illustrator;Excel;Other Javascript;Other Python;Java;QGIS;Other GIS;Matlab,I'm able to choose my own tools.,Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Raster Map;Flow Diagram,Analysts;Engineers;Scientists;Project Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Collaborative,,"1) See Cool Visualization on the web. Want to do it myself. 2) Find out how it was done. Go find Cool Visualization Package on the web. 3) Read how it depends on six different funky Java/Python/XYZ libraries- which can all be correctly and painlessly installed by a grand total of three people in the world. 4) Faced with the cost-benefit analysis of ""Becoming an expert in six different funky libraries"" vs ""Having a Cool Visualization""- I always say Screw It and move on. Data Visualization People are notoriously naive about what it takes to install- learn- use- and maintain their tools and products. I love me a good graphic- but if the cost (in time and personal frustration) to make that graphic is too high- I'm gonna pass.",,I wish ArcGIS wasn't so damned expensive- and that QGIS wasn't so damned not-ready-for-prime-time.,They stoutly refuse to appreciate the hours of work that went into deciding whether my curves should be red or blue. ,,,Tufte,Same,male,46 - 55,USA or Canada,white,Private sector
3/1/2017 12:45:30,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,IT Project Manager,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,IT,1,2,2,5,5,Excel;Tableau;Other R;Gephi,I'm able to choose my own tools.,Documents;Presentations;Email,Line Chart;Bar Chart;Network Diagram;Raster Map;Flow Diagram,Analysts;Product Managers;Project Managers;Executives,Intro;Moderate,Monthly,Analysis;Summarization;Learning;Research,Collaborative,Not having the time to do more data visualization,The company rarely acts on the information presented.,My salary!,I'd like to have it be more dynamic (D3),Data needs access- understanding before & after- then action from result.,Authorization to explore data,simplification of collection from public sites,Tufte,Much more,male,36 - 45,USA or Canada,white,Private sector
3/1/2017 16:15:00,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Scientist,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Design;Marketing;Research,20,10,40,0,30,Illustrator;Tableau;Pandas;Other Python;ArcGIS;QGIS,I'm able to choose my own tools.,Dashboard;Scrollytelling;Documents;Presentations;Email,Line Chart;Bar Chart;Infographics;Treemap;Dendrogram;Choropleth Map;Heat maps,General Public;Analysts;Government officials,Moderate;Expert,Weekly,Summarization;Learning;Research,Collaborative,Colleagues and stakeholders do not always have visualization literacy to understand anything beyond basic line or bar charts.,The data itself is often quite disparate- incomplete- and skewed towards categorical.,Better access to clean data. ,Better understanding of production integration into custom web products,The amount of time it can take,Other data visualizers,An understanding of the limitations of public sector work and strategies for overcoming these limitations,Tufte,Much more,male,26 - 35,USA or Canada,white,Public sector
3/2/2017 4:03:17,3,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Front-end Engineer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,Yes,Design;Engineering,20,70,0,2,8,D3;WebGL;Other Javascript;React;Other MVC,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page,Line Chart;Bar Chart;Infographics;Network Diagram,Analysts;Engineers;Scientists;Product Managers;Project Managers;Executives,Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Consultative,Messy data- tight deadlines,People wants to see particular vis without thinking whether it is the right approach to visualize data.,Better data,More freedom and time for research,Complexity,More time for research and ideas,Discussion about complexity- colour and mixing different approaches,Tufte,More,female,25 or younger,Europe,white,Private sector
3/2/2017 7:29:35,5,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Scientist,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Research,5,10,50,0,20,ggplot;Other R;Pandas;Other Python,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Dendrogram,Analysts;Product Managers;Project Managers;Executives,Moderate,Monthly,Analysis;Summarization;Research,Consultative,Inconsistent priorities from business partners,,,,Not enough have a good understanding of technical communication principles,,,Tufte,Same,male,26 - 35,USA or Canada,white,Private sector
3/2/2017 9:19:31,4,Technical School,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Customer Insight Analyst,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,Design,10,25,5,10,50,Excel;Power BI,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram;Choropleth Map,Analysts;Product Managers;Executives,Intro,Daily,Summarization,Subordinate,Bad Data,Not enough time,Less ETL,More time to learn new tools,The point,Better quality data,Practical examples/How-tos and whys,Tufte,More,male,36 - 45,Europe,white,Private sector
3/2/2017 22:36:26,6,PhD,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Senior Data Analyst,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,Don't Know,Engineering;Marketing;Research;analytics,30,10,30,0,30,ggplot;Other R;Looker,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations,Line Chart;Bar Chart;Dendrogram;heat map;histogram;density plot;violin plot;boxplot,Analysts;Engineers;Product Managers;Project Managers;marketing managers;ops,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Consultative,data cleaning,time it takes,,,how hard it is to get it right,,tutorials- knowledge sharing,Tufte,Same,female,26 - 35,USA or Canada,hispanic,Private sector
3/3/2017 6:07:45,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Consultant,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Student,,,,,,5,5,5,10,5,ggplot;Other R,I'm able to choose my own tools.,Static Web Page;Documents;Email,Line Chart;Bar Chart;Treemap,Scientists;Product Managers,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Consultative,The best tools have an interaction model (CLI) stuck in the 70s,Lack of knowledge about appropriate statistical methods of representing variance and confidence intervals around within-subjects repeated measures data.,Better tools with better guidance.,Better tools with better guidance and a different interaction model updated for this millennium. ,Why some seemingly minor aspects are important- and why not producing simple bar charts is a good thing.,Better tools.,Establishing norms and tools that support those norms.,Tufte,More,other,26 - 35,USA or Canada,multi,Mixed
3/6/2017 6:00:32,4,Technical School,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Customer insight analyst - mobile web,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,Analysis,10,10,0,5,65,Excel;Power BI,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Treemap;Choropleth Map;Flow Diagram,Analysts;Product Managers;Executives,Intro,Daily,Analysis;Summarization;Research,Consultative,ETL,Too much ETL,Better data sources,More time/ acceptance,Time taken to explore dataset,A decent reporting cube,,Tufte,Much more,male,36 - 45,Europe,white,Private sector
2/27/2017 19:04:05,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Director People Analytics,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Research,10,20,30,10,30,Excel;Plotly;Other BI;Leaflet;ggplot;Other R,We have a set list of tools we're expected to use for data visualization.,Dashboard;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Treemap;Flow Diagram,Analysts;Product Managers;Executives,Intro,Hourly,Analysis;Summarization;Learning,Consultative, Communication,Too many options- too short a deadline,More time to focus,Learn d3,How to see the story,More time to focus,Communicating with leaders,Tufte;Alberto Cairo,More,male,36 - 45,USA or Canada,white,Not-for-profit
2/28/2017 6:23:28,3,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Data artist,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Contractor,,,,,,75,,25,25,25,Illustrator;Tableau,We have a set list of tools we're expected to use for data visualization.,Dashboard,Line Chart;Bar Chart;Pie Chart;Choropleth Map,General Public,Intro,Hourly,Entertainment;Summarization;Learning,Collaborative,Not enough support/resources/time,Cleaning data,Spend more time visualizing data and less time cleaning it,Improve analysis,Its a data viz company- they all get it😉,More resources,Data/viz literacy,Tufte;Alberto Cairo,Much more,female,26 - 35,USA or Canada,white,Public sector
2/27/2017 22:26:43,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,CTO,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Marketing;Exploration,Embedded in another team,General charting libraries;Completely custom,Yes,Design;Engineering,20,20,20,20,0,D3;Leaflet;Highcharts;Angular;Google Maps;Crossfilter,I'm able to choose my own tools.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram,Analysts;Marketing Experts,Moderate;Expert,Daily,Analysis;Summarization,Consultative,Will of adding always new things rather than finish the important ones.,There's more focus in the quantity of data viz rather than quality from other departments.,Remove 50 of data viz- then improve the other half.,,Some people don't see the value of working in details of data viz.,Focus on quality rather than quantity. In general.,,Tufte;Alberto Cairo;Andy Kirk;Mike Bostock;Hellerstein,Same,male,26 - 35,Europe,white,Private sector
3/6/2017 16:43:13,3,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Visualization Developer,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Consultant,,,,,,25,5,2,45,23,Excel;Tableau;Plotly;D3;Leaflet;Mapbox;Highcharts;Pandas;QGIS;Datawrapper,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page,Line Chart;Bar Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map,General Public;Product Managers;Executives,Intro;Moderate,Daily,Analysis;Summarization;Learning,Subordinate,Lack of understanding of data visualization as a discipline unto itsel.,Lack of understanding from supervisors as to the extent of the data prep process and how long it can take.,More time to create unique projects.,Greater understanding of data visualization as a blend of diverse skill-sets. It's not a binary developer vs designer field.,The importance of user interaction and the importance of responsiveness.,Less focus upon making data visualization fit into an existing technical framework- I.e. CMS or a particular tool.,Multimodal data storytelling skills as a tenet of the data visualization professsional. Ability to combine visualizations with narrative.,Tufte;Alberto Cairo;Mike Bostock,Much more,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 17:13:02,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Software Engineer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Engineering,30,50,5,10,5,Excel;Tableau;Pandas;Other Python,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap,Analysts;Product Managers;Executives;Sales team,Expert,Daily,Analysis;Summarization,Collaborative,teaching people to do their own analysis,The balance between telling the right story and it being visually appealing ,Hire more people,Not necessarily change but continue to learn about data viz,They think it's magic. I don't think they get the work that needs to get done to have data prepped.,Hiring another person to help with the work so we can continue delivering ,Continuing what to do. I've learned a lot from the community ,Tufte;Andy Kirk,More,female,26 - 35,USA or Canada,hispanic,Private sector
2/28/2017 6:13:00,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Analyst,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Marketing;Research;Data analysis and modelling ,,,,,,Excel;Tableau;D3;Processing;ggplot;Other R;Pandas;Other Python;Inkscape;spotfire,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations,Line Chart;Bar Chart;Infographics;Network Diagram;Choropleth Map;Flow Diagram,Analysts;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Collaborative,Not enough hours in the day to learn new techniques and spend time developing. ,That management don't understand the time required to invest in good visualisations. ,Less data prep. More data visualisation. ,More time given to developing useful tools and techniques. ,The time and effort that goes into it. ,More time dedicated to datavis training and development. ,More step by step guides to setting up visualisation platforms and integrating different tools. ,Tufte;Andy Kirk;Nathan Yau,Much more,female,36 - 45,Oceania,white,Private sector
2/28/2017 7:50:03,10,PhD,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Head of Research & Innovation,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;Completely custom,Yes,Design;Engineering,,,,,,Excel;D3;Processing;Other Javascript,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations,Line Chart;Bar Chart;Infographics;Network Diagram;Boxplot;parallel coordinates;Mosaic plot,General Public;Analysts;Engineers;Scientists;Medical Professionals;Product Managers;Project Managers;Executives,Moderate,Hourly,Entertainment;Analysis;Summarization;Learning;Research,Collaborative,Distraction ,Legacy customers,Administrivialities: get rid of them,Metadata Standards - use them!,Complexity ,Service-oriented Administration,,Tufte;Ben Shneiderman,Same,male,36 - 45,,,Private sector
3/1/2017 10:56:20,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Director of Data Analysis,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Excel,No,Research,10,0,0,10,80,Excel,I'm able to choose my own tools.,Dashboard;Documents;Presentations,Line Chart;Bar Chart,General Public;Project Managers;Executives,Intro;Moderate,Monthly,Analysis;Summarization;Learning;Research,Collaborative,,,,I would like to diversify my data visualization skills- i.e. not relying only on basic charts to communicate findings.,,,,Tufte;dataisbeautiful reddit,More,male,36 - 45,USA or Canada,white,Not-for-profit
3/1/2017 11:50:49,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Senior IT consultant,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,IT,5,70,5,5,15,Excel;Tableau;Other BI;D3;Other Javascript;ggplot;Pandas;Other Python;Carto,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Map,General Public;Analysts;Product Managers;Project Managers;Executives,Intro,Hourly,Entertainment;Analysis;Summarization,Consultative,Lack of focus on my interests,Not doing it enough time,More dedication to my interests,More dedication,Underlying data and time consumed,Focusing on data analysis tasks,,Tufte;Hadley Wickham,Much more,male,26 - 35,Europe,white,Private sector
3/8/2017 0:19:04,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Full Stack Software Engineer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Engineering;Data Team,5,20,0,30,10,Excel;Tableau;D3;ggplot;Chartio,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Infographics,General Public;Analysts;Engineers;Product Managers;Executives,Intro,Monthly,Analysis;Summarization;Learning,Collaborative,,,Do more data visualization work,,,,,Tufte;Hadley Wickham;Jeffrey Heer;Stephen Few,More,male,26 - 35,USA or Canada,white,Private sector
2/28/2017 11:39:20,3,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Data Analyst,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,ggplot2/Pandas Charts,No,Research,20,10,,5,50,Plotly;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Network Diagram;Flow Diagram,General Public;Product Managers;Project Managers;Executives,Intro,Hourly,Analysis;Summarization,Subordinate,People don't understand the amount of thinking and code that goes into visualisation.,,For people to understand more about how much work and thought is behind making usable graphs- illustrations and apps.,I would do more of it!,The amount of data wrangling behind the illustrations. ,,,Tufte;Hadley Wickham;Joe Cheng;Nathan Yau,Much more,female,26 - 35,Europe,white,Not-for-profit
3/2/2017 7:15:41,6,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Consultant,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Hired to do data visualization,Consultant,,,,,,20,15,0,50,15,Excel;Tableau,I'm able to choose my own tools.,Dashboard;Scrollytelling;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Flow Diagram,Analysts;Product Managers;Project Managers;Executives,Expert,Weekly,Analysis;Summarization,Collaborative,Getting pulled in to non-data viz projects related to my skill set. ,Not having direct access to data sources and instead relying on flat file extracts. ,I'd like to focus more on data viz work. ,,Justifying the investment in a data warehouse and business intelligence tool instead of relying on Excel. ,Productizing my data visualization work. ,,Tufte;Keith Helfrich;Andy Kriebel,Much more,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 18:44:09,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Manager Product Development,,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Communication;Product Features,,General charting libraries;Completely custom,No,Engineering,2,,,5,3,Illustrator;Excel;D3;Highcharts,I'm able to choose my own tools.,Dashboard;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Scatterplot;Roadmap,Analysts;Engineers;Product Managers,Moderate,Monthly,Analysis;Research,Collaborative,,,,,,,,Tufte;Mike Bostock,More,male,26 - 35,USA or Canada,white,Not-for-profit
2/27/2017 20:27:18,10,Other,Mostly Self-Taught,Intended to work in data visualization,No,,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Other,Analysis;Summary/Overview;Exploration,Embedded in another team,Completely custom,Yes,Design;Engineering,20,50,0,10,10,D3;Elm,I'm able to choose my own tools.,Dashboard;Documents;Email,Line Chart;Bar Chart,Engineers,Expert,Hourly,Analysis;Summarization,Consultative,,,,,,,,Tufte;Mike Bostock,Much more,,,,,Private sector
3/3/2017 8:03:05,4,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Visualization Specialist,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Separate data visualization team,Completely custom,No,just me;my own department,100,50,25,25,0,Plotly;D3;Processing;WebGL;Other Javascript,I'm able to choose my own tools.,interactive prototypes,Line Chart;Bar Chart;Pie Chart;Dendrogram;Network Diagram;Choropleth Map;Flow Diagram;3D Chart;VR/AR Charting,General Public;Analysts,Intro;Moderate;Expert,Weekly,Entertainment;Analysis;Research,Consultative,data viz doesn't fit within the modular structure of the company,focus on engineering instead of math- aesthetics- and analysis,it would be nice to be part of a larger dedicated team,,the need to have a working familiarity with math- design- UX/UI- engineering-data science- etc- which can seem dilettantish,having a team of engineers to implement my ideas would be nice :-),is there any broad survey / tutorial that describes everything one might want to learn- from wireframing to typography to D3 to color theory etc etc? that would be nice.,Tufte;Mike Bostock;Jason Davies;Gregor Aisch,Much more,male,36 - 45,USA or Canada,white,Private sector
2/27/2017 16:15:30,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,CEO & Creative Director Stamen Design,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Hired to do data visualization,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration;Discovery,Both,Business Intelligence Tools;General charting libraries;Completely custom;GIS,Yes,Design;Engineering;Executive,50,0,0,25,0,Illustrator;Excel;Tableau;D3;Processing;Leaflet;Mapbox;WebGL;Other Python;Java;React;Angular,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Choropleth Map;Raster Map;Flow Diagram;3D Chart;VR/AR Charting;lots of different kinds,General Public;Analysts;Scientists;Medical Professionals;Product Managers;Executives;The public,Moderate,Daily,Entertainment;Analysis;Summarization;Learning;Research;Discovery,Collaborative,Cash flow,Companies wanting data visualization that don't have access to their data,,I'd like to do more of it,We're all good in that department,I'd like to hire a business development lead that delivered,,Tufte;Mike Bostock;Lewis Lehe;Elijah Meeks;Ian Johnson;Kai Chang,Much more,male,46 - 55,USA or Canada,white,Private sector
2/27/2017 13:24:28,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Team Lead Manufacturing Execution Systems,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview,Separate data visualization team,ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Engineering;Research;IT,30,10,20,40,0,Excel;Power BI;Plotly;D3;ggplot;Other R;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard,Line Chart;Network Diagram;sankey; bubble,Engineers;Executives,Moderate,Daily,Analysis;Summarization,Collaborative,Lack of adoption of my viz,My own stupidity of course,Contribute more to the open source community,Contribute more to the open source community,The big picture,Closer to home,I love all the examples you give,Tufte;Mike Bostock;Nadieh Bremer;Elijah Meeks,More,male,46 - 55,Europe,,Private sector
3/7/2017 18:43:20,10,Masters,Mostly Self-Taught,,Not a data visualization professional yet,Research Associate,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;GIS,No,Research,25,,,,33,Excel;Tableau;D3;Other Javascript;ggplot;Other R;ArcGIS;QGIS;Inkscape;C3;LibreOffice,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Choropleth Map;Flow Diagram;Histogram;Scatter plot;Box & Whiskers;Parallel Coordinates,General Public;Analysts;Project Managers,Intro;Moderate,Yearly,Analysis;Summarization,Consultative,Something unrelated to data visualization,Insufficient budget- or appreciation for good design by others,Something unrelated to data visualization,Have more of an editorial role over others' creations,The power of design and the scope of deliberate design choices that are required for quality work ,,,Tufte;Monmonier;Muehrcke;Cynthia Brewer,More,male,,USA or Canada,,Private sector
3/1/2017 16:56:21,5,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Director,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,Yes,Design;Research,10,5,30,5,30,Illustrator;Excel;Tableau;D3;ggplot;Other R;Pandas;Other Python;Other Network Visualization Suite,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map;Flow Diagram,General Public;Analysts;Engineers;Scientists;Product Managers;Project Managers;Executives,Moderate;Expert,Monthly,Analysis;Summarization;Learning,Consultative,,,Better students,,Actually not a trivial thing to do,Better help,,Tufte;Nathan Yau,More,male,36 - 45,USA or Canada,white,Public sector
3/2/2017 9:10:52,6,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Patient Registry Data Analyst,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,,5,10,10,5,45,Excel;Power BI,We have a set list of tools we're expected to use for data visualization.,Dashboard;Static Web Page;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Flow Diagram,General Public;Analysts;Medical Professionals;Project Managers;Executives,Moderate,Monthly,Analysis;Summarization;Research,Collaborative,Lack of resources/time to advance knowledge and use of visualization ,Not enough support to do more complex visualizations,Have additional people supporting my role to allow more time towards robust reporting mechanisms and data visualizations,Make more complex and dynamic visualizations that can be customized based on a user's needs/desires,The complexity of preparing the data in a manner conducive to allow visualization without introducing inherent bias to be displayed,Hire additional people to support or Patient Registry Team,Visualization tools available to non-profits or donation of time from data visualization experts to assist non-profits utilize their data better,Tufte;Nathan Yau,Much more,male,26 - 35,USA or Canada,white,Not-for-profit
2/28/2017 9:02:40,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Visualization Designer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Engineering,50,5,10,30,5,Illustrator;Excel;Tableau,I'm able to choose my own tools.,static mockups that get built out by engineering,Line Chart;Bar Chart;Treemap;Choropleth Map;custom chart types ,Analysts;Executives;traders;finance professionals,Moderate;Expert,Monthly,Research,Consultative,Getting swept into UX/UI projects,Hard to get people to read more complex visualization types,,I wish I could implement it myself in code,That there are always going to trade-off in data display decisions ,Time to learn how to code,,Tufte;Nathan Yau;Alberto Cairo,More,female,26 - 35,USA or Canada,asian,Private sector
2/27/2017 14:10:01,1,Bachelors,Mostly Self-Taught,Intended to work in data visualization,Yes,Research Data Analyst,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Communication,Both,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries,Yes,Research,20,20,10,20,30,Excel;Plotly;Other BI;ggplot,We have a set list of tools we're expected to use for data visualization.,Dashboard,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Choropleth Map,General Public;Analysts;Product Managers;Project Managers;Executives,Intro;Moderate,Daily,Analysis;Summarization;Research,Consultative,Not challenging enough,limitations of software,work with more interesting data,use more open source technology,the complexity of the data manipulation required to clean data for visualisation,more diverse client base,convince other departments (sales teams etc) of its importance,Tufte;NYT;FT,More,male,25 or younger,Europe,white,Private sector
2/28/2017 16:08:11,10,PhD,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Researcher,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Engineering;Research,10,10,50,5,5,Pandas;Other Python;Bokeh;Datashader;Matplotlib;VTK;Seaborn,I'm able to choose my own tools.,Scrollytelling;Documents;Presentations;Notebooks and papers,Line Chart;Bar Chart;Treemap;Dendrogram;Network Diagram,Analysts;Engineers;Scientists;Project Managers;Executives,Intro;Moderate;Expert,Monthly,Analysis;Summarization;Learning;Research,Consultative,,,,,,,,Tufte;Randy Olson;Jake Vandeplas;Sarah Bird,More,male,36 - 45,USA or Canada,,Public sector
3/2/2017 9:00:17,7,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,UI/UX Scientist,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,Yes,Design;Engineering;Research,40,0,10,40,10,D3;Highcharts;ggplot;Pandas,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram;Choropleth Map;Flow Diagram,Analysts;Engineers;Scientists,Intro;Moderate;Expert,Hourly,Analysis;Summarization;Learning;Research,Collaborative,People who think they know how to do my job / my job is not as *scientific* as theirs,People who think they already know how to visualize data and they really just know how to make bar charts in excel,"That people understand that I am trained in it as they are trained in the field that they are expert in- and treat my work in that way rather than as a ""recommendation""",more of it / more opportunities for scientific analysis of data visualization,That it is a scientific field of study!,,*constructive* scientific critique,Tufte;Robert Kosara,Much more,female,26 - 35,USA or Canada,multi,Not-for-profit
3/1/2017 11:28:55,7,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Healthcare Data Analyst,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom;Modeling,No,IT;Data Analytics,20,,,5,75,Excel;Other BI;ggplot;Other R,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations;Email;Seriously;is scrollytelling a word? shame,Line Chart;Bar Chart;Pie Chart;Infographics;Flow Diagram,Analysts;Medical Professionals;Project Managers;Executives,Moderate;Expert,Weekly,Analysis;Summarization,Subordinate,Lack of access to use some of these tools- no web dev capability,reluctance to accept new visualizations that could be useful,that people would come for answers to where to go next- rather than where we've been,more R- more web tools,I want to pack more into less- they want what they're used to,more collaboration/standardization across analysts in the company- so we had a stronger voice,explanations of why they decided to use a particular tool/how to make that call,Tufte;Stephen Few;Nathan Yau;Katherine Rowell,Much more,male,36 - 45,USA or Canada,white,Private sector
3/2/2017 14:18:53,2,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Digital Pedagogy Specialist,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Design;Research;Library,5,0,5,0,5,Excel;Tableau;ggplot;Other R;Pandas;ArcGIS;Gephi,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart,General Public;Scientists;Educators;Social Scientist;Digital Humanists,Expert,Quarterly,Summarization;Learning;Research,Collaborative,Keeping track of data sources and data cleaning that has been done. Lack of reuse of data resources.,Multiplicity of tools and approaches- but in an academic university this is difficult to dictate at an organizational or institutional level.,More people interested or concerned with improving data visualization. It's still a low priority for most people,Learning more about how to accomplish specific tasks- combining that with better knowledge of design skills.,The amount of prep work necessary to put a visualization together- especially if the data has not been curated before beginning work on the visualization.,,,Tufte;Tukey,More,male,36 - 45,USA or Canada,white,Not-for-profit
3/4/2017 15:50:33,7,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Software Engineer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Engineering;Marketing;Research;IT,5,25,20,5,0,Excel;Plotly;D3;Processing;Leaflet;Pandas;Other Python;React;Vega;Gephi,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram;Choropleth Map;Raster Map,Analysts;Engineers;Scientists;Product Managers;Executives,Intro;Moderate;Expert,Hourly,Analysis;Learning;Research,Collaborative,Impact attributable to polished viz work is unclear,not enough time to generate polished work,increase amount of time spent on viz,more depth and polish,,quitting and working on a farm,,Elijah Meeks,Much more,male,36 - 45,USA or Canada,,Private sector
3/2/2017 1:50:52,2,PhD,Mostly Self-Taught,Intended to work in data visualization,Yes,PhD Candidate,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Student,,,,,,20,30,15,5,30,D3,I'm able to choose my own tools.,Embedded in a tool;Static Web Page,Line Chart;Bar Chart;Treemap;Dendrogram;Network Diagram,General Public;Lexicographers,Expert,Weekly,Analysis;Summarization;Learning;Research,Collaborative,Having to spend too much time preparing the data,,I'd hire someone to prepare the data I work with in visualizations,,They think it's easy to adapt the different data formats to make meaningful visualizations.,Hiring a data scientist,Make this necessity more clear and evident,Elijah Meeks;Andy Kirk;Alberto Cairo;Mike Bostock;Jeffrey Heer,Much more,male,26 - 35,Europe,white,Public sector
2/28/2017 0:08:50,10,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Freelance UX Designer / Developer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Consultant,,,,,,5,1,2,80,1,D3;Processing;Leaflet;Mapbox;WebGL;React,I'm able to choose my own tools.,Dashboard;Static Web Page,Line Chart;Bar Chart;Network Diagram;3D Chart,General Public;Analysts;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Daily,Analysis;Summarization,Consultative,Tight budgets / schedules- managing multiple projects at the same time,Lack of good-quality modular libraries on top of d3.js,More collaboration,More time to explore data and try different alternatives,,More collaboration,Articles/books on managing complexity- expert interfaces and dashboard design. Combining UX and data vis.,Elijah Meeks;Moritz Stefaner;Moritz Klack;Bret Victor;Andy Kirk;Ben Fry;Martin Wattenberg;wittens;levin;Manuel Lima,More,male,26 - 35,,,Private sector
2/27/2017 16:10:50,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Design;Engineering;Research,10,10,60,0,20,Plotly;D3;WebGL;ggplot;Other R;Other Python;Vega,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Presentations;Email,Line Chart;Bar Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map;Raster Map,Analysts;Engineers;Executives,Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Consultative,Variety of data and analysis makes it very hard to visualize,Marginal improvements in data visualizations aren't appreciated.,Speed,Ease of delivering interactivity,An appreciation of how data viz and help deepen their understanding,More constructive feedback on data viz elements,Focus on the ability for better data viz to make better decisions,Elijah Meeks;Stephen Few,More,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 14:31:41,9,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Data Viz Consultant,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Hired to do data visualization,Consultant,,,,,,40,30,10,10,10,Plotly;D3;ggplot;Other R;Sketch,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents,Line Chart;Bar Chart;Pie Chart;Sankey,General Public;Analysts;Project Managers;Executives,Intro;Moderate;Expert,Daily,Analysis;Learning,Consultative,That data viz isn't a thing yet here in germany,People don't understand it,Just give me the perfect tool. Easy and flexible. ,,,More free time for research and communication ,How to measure data literacy ,Enrico Bertini,More,female,36 - 45,Europe,white,Private sector
2/28/2017 9:02:02,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Senior Business and Information Analyst,Data Visualization Role has same compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,Research,25,0,25,25,25,Illustrator;Excel;Tableau;Power BI,We have a set list of tools we're expected to use for data visualization.,Dashboard,Line Chart;Bar Chart;Pie Chart;Infographics;Flow Diagram,General Public;Analysts;Executives,Moderate,Hourly,Analysis;Learning;Research,Consultative,Inability to choose my own data vis tools,Lack of formal training,Privacy issues therefore I can't experiment with any cloud-based services,More time to explore novel data visualizations and tools,The amount of knowledge and work it takes to produce a visualization that tells a important story,Ability to download new programs on my computer (permissions require justification to IT),Thoughtful discussion (rather than competitive debate). I find the idea of putting others' work down to make your own look better is off-putting (e.g. difference between Stephanie Evergreen's posts that are ADDITIVE to the knowledge sphere rather than DESTRUCTIVE e.g. Policy Viz posts or Robert Kosara tweets),Enrico Bertini;Moritz Stefaner,,female,36 - 45,USA or Canada,white,Public sector
3/6/2017 15:59:14,2,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Scientist,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,Don't Know,Research;IT;Finance,60,5,30,0,5,Tableau;Pandas;Other Python,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Scrollytelling;Presentations,Line Chart;Bar Chart;Treemap;Choropleth Map,Analysts;Medical Professionals;Project Managers;Executives,Moderate;Expert,Daily,Analysis;Learning;Research,Collaborative,Technology integration,Performance,IT Support response,,Necessary effort,Pay,,Enrico Bertini;Moritz Stefaner,Same,male,26 - 35,USA or Canada,white,Private sector
3/7/2017 9:16:28,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Research Programmer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Communication;Exploration,Embedded in another team,Completely custom,No,Research,10,0,10,20,10,Excel;D3;Other Python;Other MVC;Matlab;Matplotlib;CakePHP,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Presentations;Email,Line Chart;Bar Chart;Infographics;Dendrogram;Raster Map;Flow Diagram,General Public;Scientists;Educators/Students,Intro;Moderate;Expert,Monthly,Learning;Research,Collaborative,To much to do,Not having infrastructure in place to handle real-time data requests,Allowing time for user research- design and usability testing,Publishing more,,More colleagues ,More opportunities to practice and collaborate- beyond just focusing on learning about skills- tools and processes,Enrico Bertini;Moritz Stefaner;Robert Kosara;Nathan Yau;Jon Schwabish,Much more,male,36 - 45,USA or Canada,white,Academic
3/3/2017 8:49:54,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Geologist,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Consultant,,,,,,,,,,,Excel;ArcGIS,I'm able to choose my own tools.,Documents;Presentations,Choropleth Map;Raster Map,Engineers;Scientists;Project Managers,Moderate,Monthly,Analysis;Summarization;Research,Consultative,Job security,Lack of data,Job security,knowledge/Skill (I want to learn more about data visualization!),Software limitations,more trainings,data engineering,ESRI,Much more,male,25 or younger,USA or Canada,asian,Private sector
2/27/2017 12:35:59,3,Other,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Analyst,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Other,Analysis;Exploration,Embedded in another team,Business Intelligence Tools;Completely custom,Don't Know,Security,,,,,,D3;Other Javascript,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling,Treemap;Network Diagram;Flow Diagram;3D Chart,Analysts,Moderate;Expert,Monthly,Analysis;Exploration,Collaborative,Poor management,Lack of quality data,,Bigger budget for inhouse work vs purchasing products,,,"Well- most should ask themselves: ""What question am i trying to answer"" and pick a viz- not the other way around (unless question is unknown and exploration is the objective)",Fabian Fischer;Raphael Marty,Much more,male,,,,Public sector
2/27/2017 21:14:45,10,PhD,Mostly Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,UX Researcher,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Engineering;Marketing;Research,5,5,5,5,10,Tableau;D3;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Presentations,Line Chart;Bar Chart;scatterplot;matrix diagram;timeline,Analysts;Engineers;Product Managers;Executives;Designers,Intro;Moderate;Expert,Daily,Analysis;Summarization;Learning;Research;Decision-making,Collaborative,Too many meetings and too much email,Need better web development skills to be faster at making visualizations,More time to do focused work,Somehow making it easier to know which projects will be worth the extra effort required to create visualizations,Why it's worth putting that much time and effort into communication of results,More focused time to make things,Examples of when data visualization made a difference in projects,Fernanda Viégas;Martin Wattenberg,More,female,,,,
3/6/2017 12:46:51,10,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Lead Software Engineer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,Completely custom,Yes,Design;Engineering;IT,20,0,25,50,0,D3;Other Javascript;Java;Angular;Sketch,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations,Line Chart;Bar Chart;Raster Map;Custom maps;bubble charts;themeriver and others,General Public;Analysts;Medical Professionals;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Daily,Analysis;Learning;Research,Collaborative,Always in a time crunch and always looking for profits in 1st- 2nd and 3rd places. The rest comes later.,Not enough priority for visualization projects. It's always something I have to keep selling- even though when they see the results they are usually surprised by how many insights the visualizations provide.,More exploratory philosophies.,More user-group testings,It transforms data into knowledge and it is an incremental work. It needs feedback and it needs to be highly prioritized.,Having an internal lab and team to work on research alone with the resources it needs.,More collaboration with designs- ideas- etc...,Fernanda Viégas;Martin Wattenberg;Enrico Bertini;Jeffrey Heer,Much more,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 12:59:52,6,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Owner,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Education,Separate data visualization team,Completely custom,Yes,,,,,,,Illustrator,I'm able to choose my own tools.,Posters,Infographics;Treemap;Network Diagram;Flow Diagram,General Public,Intro,,Education,Consultative,,,,,,,,Giorgia Lupi,More,male,36 - 45,USA or Canada,white,Private sector
2/28/2017 1:04:28,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,CTO,Data Visualization Role has same compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing,Embedded in another team,Business Intelligence Tools;General charting libraries;Completely custom,Yes,Design;Engineering;IT,75,10,5,5,5,Illustrator;Excel;Tableau;D3;Processing;Leaflet;Mapbox;WebGL;Other Javascript;React;Angular,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Treemap;Network Diagram;Choropleth Map;Raster Map;Flow Diagram;3D Chart,Analysts;Engineers;Product Managers;Executives,Moderate,Daily,Summarization,Consultative,deadlines,data came always after....,clients,having from the first day real data,we are all data viz driven people,Experimenting with real data before thinking of data viz,How to deal with clients and their ideas of data visualization- analytics dashboard and other complex tool. Dataviz is not only charting but also creating the entire complex application that exist behind. A bl.ocks.org page doesn't represent data visualization but only a small part- a test- an example. there is much more,Giorgia Lupi,Same,male,26 - 35,Europe,white,Private sector
2/28/2017 1:32:32,3,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Senior Data Visualization Designer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Exploration,Separate data visualization team,Completely custom,Yes,Design,50,0,0,40,10,Illustrator;Excel;D3;Mapbox;Other Python,I'm able to choose my own tools.,Embedded in a tool;Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map;Flow Diagram;3D Chart,General Public;Engineers;Scientists;Product Managers;Project Managers;Executives,Moderate;Expert,Daily,Analysis;Learning;Research,Collaborative,Clients pretending to know what to do design-side,Waiting for proper data from clients,Increase the percentage of time dedicated to study,,,Well educated clients about data,,Giorgia Lupi;Jerome Cukier;Paolo Ciuccarelli;Moritz Stefaner;Alberto Cairo;Tufte;Santiago Ortiz;Andy Kirk,Same,male,26 - 35,Europe,white,Private sector
2/27/2017 14:10:04,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Retired,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Other,Analysis;Exploration,Embedded in another team,ggplot2/Pandas Charts,Yes,Research;IT,10,0,80,0,10,Plotly;Leaflet;ggplot;Other R;ggobi,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations;pretty much everything R markdown can make,boxplots;violin plots;density plots;scatterplot matrices;ternary diagrams,General Public;Scientists,Expert,Weekly,Analysis;Learning;Research;decision making / optimization,Collaborative,cost of data - I do sports analytics,cost of data,not have to code,not have to code,,cheaper data,,Hadley Wickham,Same,male,56+,USA or Canada,white,Mixed
2/27/2017 16:27:42,10,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Physical Scientist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Both,GIS,No,Engineering;Research,15,0,10,0,10,ggplot;ArcGIS,I'm able to choose my own tools.,Maps,Line Chart;Bar Chart;Choropleth Map;Raster Map,General Public;Scientists;Project Managers,Moderate,Quarterly,Analysis;Summarization;Research,Collaborative,Administrative tasks,Data preparation ,Eliminate administrative tasks,Allot more time,Value of visuals ,Reduce administrative tasks,More online presentations,Hadley Wickham,More,,,,,
2/27/2017 17:03:23,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Quantitative Hydrogeologist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts,No,Engineering,40,40,40,0,40,ggplot;Surfer;Grapher,I'm able to choose my own tools.,Documents;Presentations,Bar Chart;Raster Map;Box plot;scatter plot,General Public;Engineers;Scientists;Project Managers;Executives;Regulatory agencies,Intro,Monthly,Summarization,Consultative,,Data is sometimes located across various sheets,,,,,,Hadley Wickham,Much more,male,36 - 45,USA or Canada,,Private sector
2/27/2017 18:31:15,6,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,PhD Candidate,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Student,,,,,,5,5,10,2,5,Excel;ggplot,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Flow Diagram,Scientists;Medical Professionals,Moderate;Expert,Quarterly,Research,Consultative,Other responsibilities ,Not valued enough,See no patients,More time,The value of a well designed graphic,More time with data,Improving the impact of graphics,Hadley Wickham,More,male,26 - 35,USA or Canada,white,Public sector
2/28/2017 9:07:32,2,Bachelors,Mostly Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,Doctor,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Hired to do data visualization,Student,,,,,,20,30,30,20,40,Leaflet;ggplot;Other R,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Flow Diagram,Analysts;Scientists;Medical Professionals,Moderate,Weekly,Analysis;Learning;Research,Collaborative,No plotting libraries in Perl 6 !!,Sometimes getting stucked.,Get a Perl 6 plotting library.,Create a Perl 6 plotting library.,They partly do ,Proficiency ,MOOC courses on data visualisation with Perl 6 desperately.,Hadley Wickham,More,male,26 - 35,Asia,asian,Not-for-profit
2/28/2017 9:41:50,10,PhD,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Postdoctoral Researcher,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts,Don't Know,,,,,,,Illustrator;ggplot;Other R;ArcGIS,I'm able to choose my own tools.,Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map,General Public;Scientists,Moderate,Weekly,Research,Collaborative,,processing data to work with ggplot,,,importance of data visualization for science communication,,,Hadley Wickham,More,female,26 - 35,USA or Canada,white,Academic
2/28/2017 9:59:16,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Student,,,,,,10,20,30,5,10,ggplot,I'm able to choose my own tools.,Documents;Presentations;Email;R notebooks,Line Chart;Bar Chart,Scientists,Expert,Monthly,Analysis;Summarization;Learning;Research,Collaborative,,,,,,,,Hadley Wickham,Same,male,26 - 35,USA or Canada,white,Academic
2/28/2017 10:50:43,10,,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Clinical Pharmacologist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Marketing,Both,Business Intelligence Tools;ggplot2/Pandas Charts,Yes,Design;Marketing;Research;IT,25,10,25,20,20,ggplot;Other R;Other GIS;Gephi;Cytoscape,I'm able to choose my own tools.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map,Scientists;Medical Professionals;Project Managers,Moderate,Weekly,Analysis;Summarization;Research,Collaborative,Low level of statistical knowledge in colleagues.,Corporation embraces Tableau as the sole answer to all problems.,Use more R,Use Shiny more,Historical fixation on a rudimentary grasp of the t-test. ,Increase interactive visualization capabilities so users can explore their own data.,Increased dashboard capabilities in Shiny ,Hadley Wickham,Much more,male,56+,USA or Canada,,Public sector
2/28/2017 11:11:53,6,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Lecturer and Researcher,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,Don't Know,Research,,,,,,Excel;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Infographics;Network Diagram;Flow Diagram;3D Chart,General Public;Scientists;Executives;Students,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Collaborative,,Data prep,,,That excel isn't the be all and end all. ,,,Hadley Wickham,More,male,26 - 35,Europe,,
2/28/2017 11:45:39,5,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Staff Scientist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts,No,Research;IT,20,20,20,10,30,Illustrator;ggplot;Other R,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Dendrogram;Network Diagram,Scientists,Expert,Monthly,Analysis;Learning;Research,Collaborative,Data cleaning,Interactive visualizations primitive (plotly vs ggplot),,,It's really freaking hard to make a clean beautiful simple informative plot,,,Hadley Wickham,More,male,26 - 35,USA or Canada,multi,Public sector
2/28/2017 13:38:50,8,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Assistant researcher,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Both,ggplot2/Pandas Charts,No,Research;IT,20,5,25,10,40,Leaflet;ggplot;Other R;QGIS;Inkscape,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Dendrogram;Network Diagram;Choropleth Map;Raster Map;Flow Diagram;scatterplot,General Public;Analysts;Scientists;Medical Professionals,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Collaborative,Ambiguous project requirements,Requirements including inefficient / misleading visualizations,Clear and approved procedure to agree on project requirements,Requirements should include rationale behind visualization- objective- and target public,The iterative nature of exploration before arriving at a meaningful visualization,Free software to manage local repository of graphics for annotation and discussion,Systematic research on meaningful visualizations,Hadley Wickham,Much more,male,26 - 35,Latin America,hispanic,Academic
2/28/2017 14:54:12,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Ecosystems Analyst,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Research,5,50,15,10,20,Plotly;D3;Leaflet;WebGL;ggplot;Other R;QGIS;Other GIS,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Documents;Presentations;Email,Line Chart;Choropleth Map;Raster Map,General Public;Analysts;Scientists;Product Managers;Project Managers,Moderate;Expert,Weekly,Analysis;Learning;Research,Consultative,seeing workflows that are really difficult,no general easy access flexible and interactive tools,centralized task schedule,interactive!,the power of interactivity for insight and model specification,a replacement to the simple features standard that is general enough for topology,prospects for integration of web-graphics with spatial data,Hadley Wickham,Much more,male,36 - 45,MIddle East & Africa,white,Public sector
2/28/2017 20:32:10,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Operations Analyst,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,Don't Know,IT,30,0,20,0,50,Excel;Other BI;Leaflet;ggplot,I'm able to choose my own tools.,Dashboard;Scrollytelling;Documents;Presentations;Email,Line Chart;Bar Chart;Choropleth Map;boxplot; violin plot,Analysts;Engineers;Project Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization,Subordinate,Lack of technical support.,I don't have someone else to offer advice on best practices or suggestions for data visualizations.,More IT support for using the tools.,Become more proficient in other data visualizations and data visualization tools.,It takes time to create a visualization that tells a meaningful story appropriate for the audience in mind (e.g. other engineers vs. executives).,More IT support.,More tutorials- advice on best practices.,Hadley Wickham,More,male,26 - 35,USA or Canada,white,Private sector
3/1/2017 0:14:52,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,data analytics,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,IT,5,20,30,0,50,Excel;Power BI;ggplot;Other R,I'm able to choose my own tools.,Presentations,Line Chart;Bar Chart,Analysts;Engineers;Executives,Intro,Monthly,Analysis;Research,Collaborative,data munging,many tools,visibility,more R,data munging,git,value,Hadley Wickham,Same,male,46 - 55,Oceania,white,Private sector
3/1/2017 2:43:12,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Bioinformatics Core Facility Manager ,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis,,ggplot2/Pandas Charts,Don't Know,Research,10,20,20,0,10,ggplot;Other R;Cytoscape,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Dendrogram;Network Diagram;Raster Map;Flow Diagram,Scientists,Moderate;Expert,Daily,Analysis;Research,Collaborative,,,,,,,,Hadley Wickham,Same,male,36 - 45,Europe,,Public sector
3/1/2017 23:00:24,3,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Actuary,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Marketing;Actuarial team,5,30,5,0,40,Excel;Plotly;Leaflet;ggplot;Other R,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Choropleth Map;Raster Map;3D Chart,Analysts,Moderate,Monthly,Analysis;Summarization;Learning,Collaborative,Nit having access to tools that are not free,Limited tools,A better information system,More tools,The specific skills it requires,A Shiny server,Reproductible examples,Hadley Wickham,More,,,,,Private sector
3/2/2017 1:13:10,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,PhD Candidate,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Other,Analysis;Machine Learning;Summary/Overview;Exploration,Embedded in another team,ggplot2/Pandas Charts,Yes,Marketing;Research,10,50,90,0,20,Excel;ggplot;Other R,I'm able to choose my own tools.,Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Treemap;Scatterplots;Histograms;Box Plots;QQ Plots;ECDF Plots;Density Plots,General Public;Scientists,Moderate;Expert,Quarterly,Analysis;Research,Collaborative,Working with untidy data,Getting stuck in R,,Having Hadley Wickhams knowledge of ggplot2,,,,Hadley Wickham,More,male,26 - 35,Europe,white,Public sector
3/2/2017 6:53:19,6,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Analytics Strategist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,Don't Know,Marketing;Research,15,30,10,5,40,Tableau;ggplot;Other R,I'm able to choose my own tools.,Dashboard;Scrollytelling;Documents;Presentations;Email,Line Chart;Bar Chart;Choropleth Map,General Public;Analysts;Product Managers;Project Managers;Executives,Intro;Moderate,Daily,Analysis;Summarization,Consultative,consistent access to data,inconsistent data streams,more analysis,more time to focus on them,that 80 of the work goes into cleaning the data,cleaner data,open source being a valid option,Hadley Wickham,More,male,26 - 35,USA or Canada,white,Private sector
3/2/2017 23:29:10,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Senior Urban Planner,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom;GIS,Yes,Design,5,15,15,15,10,Illustrator;Excel;Tableau;D3;Leaflet;Mapbox;Other Javascript;ggplot;Other R;QGIS,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Network Diagram;Choropleth Map;Raster Map,General Public;Analysts;Project Managers;Executives,Intro;Moderate,Daily,Analysis;Learning;Political decision making ,Consultative,Lack of audience knowledge (have to train them!),Not having time to learn all the great tools that are out there.,More focus on the most interesting g data and viz problems,Design more interactive-first and less static materials designed to work on a web page or PDF ,The underlying logic and design philosophy ,More focus on designing for the internet- less on antiquated print media,,Hadley Wickham,Much more,male,26 - 35,USA or Canada,white,Private sector
3/3/2017 16:57:55,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,PhD Student,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Student,,,,,,10,10,10,0,10,Illustrator;Plotly;D3;Leaflet;WebGL;ggplot;Other Python;Other Network Visualization Suite,I'm able to choose my own tools.,Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Treemap;Network Diagram;Flow Diagram,Scientists,Expert,Weekly,Research,Collaborative,people don't take communicating their results seriously,i wish ggplot was part of python,$,,,,,Hadley Wickham,Same,male,36 - 45,USA or Canada,white,Public sector
3/3/2017 19:28:15,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Operations Analyst,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,"no specific ""data viz"" roles. just part of some roles.",10,5,15,10,60,Excel;Plotly;ggplot;Other R,I'm able to choose my own tools.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Network Diagram,Project Managers;Executives,Moderate,Daily,Analysis;Summarization;making themselves look good,Collaborative,My version of R is so old- damn it. I have to use plyr instead of dplyr. WTF.,old R,Besides money- newest version of R. A smoothie bar would be nice too.,New version of R so I can blow people's minds with 3d- interactive bliss.,That R is a free download for God sake. Let me get the new one.,Forecasting tournaments or something fun/nerdy like that.,"No pretentious TedTalk-type garbage. Discussions re: how non-data people (see: ""normal"") people best absorb different types of information. I want to blow people's minds- but more than that- I want to effectively communicate with visuals.",Hadley Wickham,More,male,25 or younger,USA or Canada,white,Private sector
3/5/2017 12:26:22,5,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Research Scientist,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Engineering;Research,10,25,30,10,30,Plotly;ggplot;Other R;QGIS;Gephi,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Network Diagram;Raster Map;Flow Diagram,Analysts;Engineers;Scientists;Medical Professionals;Executives,Intro;Moderate,Weekly,Analysis;Learning;Research,Consultative,lack of good data prep tools,,strengthen the statistical capabilities in my team,more interactive vis.,the possibilities in visualisations- if you work with it,,,Hadley Wickham,More,male,26 - 35,Europe,white,Not-for-profit
3/5/2017 19:40:03,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Data mining specialist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,,10,30,30,20,30,Excel;Tableau;Microstrategy;ggplot;Other R;ArcGIS;QGIS;Gephi,We have a set list of tools we're expected to use for data visualization.,Documents;Presentations,Line Chart;Bar Chart;Network Diagram;Choropleth Map;Flow Diagram,Analysts;Medical Professionals;Project Managers;Executives,Moderate,Monthly,Analysis;Summarization;Research,Consultative,Forced to use SPSS Modeler,No Tableau,Freedom to use best tool for each task,Communicate network analysis better,They don't yet get how valuable data visualization is as a means of communication and explanation.,Freedom to use the right tool for each task.,Real life case studies.,Hadley Wickham,More,male,26 - 35,USA or Canada,white,Private sector
2/28/2017 9:10:03,1,Bachelors,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Freelancer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Student,,,,,,10,15,5,0,17.5,ggplot;Other R,I'm able to choose my own tools.,Dashboard;Presentations,Line Chart;Bar Chart;Choropleth Map,General Public;Students,Intro,,Summarization;Learning,Collaborative,Not enough time to learn new tools,Choosing the right visualization method ,,,The amount of thought and preparatory work it takes ,,,Hadley Wickham;Tufte,More,male,26 - 35,USA or Canada,white,
2/28/2017 12:15:23,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Scientist,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts,No,Research,40,30,100,10,10,ggplot,I'm able to choose my own tools.,Embedded in a tool;Documents;Presentations,Line Chart;Bar Chart;Dendrogram,Analysts;Scientists;Project Managers,Moderate,Weekly,Analysis;Summarization;Learning;Research,Collaborative,Underpayed,Not appreciated enough,Better colleagues,Spend more time learning new libraries,The amount of time spent getting the data in right format,More free time,More meetups,Hadley Wickham;Tufte,Much more,male,26 - 35,Europe,white,Private sector
2/28/2017 8:00:50,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Research Associate,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Summary/Overview;Exploration,Embedded in another team,ggplot2/Pandas Charts,No,Design;Research,10,0,50,10,30,Plotly;D3;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations,Line Chart;Bar Chart;Infographics;Choropleth Map,General Public;Analysts,Moderate,Monthly,Summarization;Research,Consultative,Not much of an opportunity for advancement,Lack of opportunity for independent exploration or creativity,,,,,,Hadley Wickham;Mike Bostock,More,male,26 - 35,USA or Canada,white,Not-for-profit
2/27/2017 14:11:24,7,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Trait Project Lead,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Both,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries,No,Marketing;Research;IT,5,1,5,1,10,Tableau;Plotly;D3;Leaflet;ggplot;Other R;Java,I'm able to choose my own tools.,Static Web Page;Documents;Presentations;Email,Line Chart;Network Diagram;Choropleth Map;Raster Map,Scientists;Project Managers,Moderate,Quarterly,Analysis;Summarization;Research,Subordinate,Involvement,munging time > vis time,Stakeholder buy-in,Simpler modeling ,How valuable it is and how much time it takes to do well. ,Focus on fewer things,Easier ways to build interactivity and modify it to fit purpose,Hadley Wickham;Mike Bostock;Carson Sievert,More,male,36 - 45,USA or Canada,white,Private sector
2/28/2017 5:19:59,3,Technical School,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Interactives developer/datavisualization,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Hired to do data visualization,Full-time,Communication,Embedded in another team,Completely custom,No,Design,80,0,0,30,30,Illustrator;Excel;D3;Processing;Other Javascript;ggplot,I'm able to choose my own tools.,Embedded in a tool;Static Web Page,Line Chart;Bar Chart;Infographics;Choropleth Map;Raster Map,General Public,Intro,Daily,Entertainment,Subordinate,Learning- appreciation,appreciation,Self-demand,Greater professionalism- be able of competing at international level ,they dont know about what data visualization actually is,know about what others are doing- know about places and time necesary to develop,Spread the message!,Hadley Wickham;Mike Bostock;Jason Davies;Philippe Rivière,Much more,male,26 - 35,Europe,white,Private sector
2/28/2017 2:31:42,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Intern,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Student,,,,,,10,10,40,0,10,ggplot,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Dendrogram;Beeswarm,Scientists,Moderate,Weekly,Research,Collaborative,Working on wrong hypothesis ,Not easily interactive ,,More interactive ,,Cross language support for visualization tools (ggplot on the jvm),"Mechanism to communicate iterative process to arrive at a result. For example ""better"" notebooks which allow the visualization of the process without cluttering the main story.",Hadley Wickham;Mike Bostock;NYT;Nathan Yau,Same,male,25 or younger,Europe,white,Public sector
2/28/2017 0:28:13,8,Other,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,MI Analyst,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,IT,10,45,10,5,30,Excel;Plotly;Other BI;D3;Leaflet;ggplot;Other R,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Treemap;Choropleth Map;Scatter;heat map;box plot,Product Managers;Project Managers;Executives,Expert,Daily,Analysis;Summarization,Consultative,Poor specifications,Lack of options for delivery,Proper project management prior to commencing work,Use of an online repository for delivery of dynamic reporting,The time and effort taken to produce a meaningful visualisation that can be easily consumed,Agreed and well thought out specifications,,Hadley Wickham;Nadieh Bremer;Mike Bostock,More,male,36 - 45,Europe,,Private sector
2/27/2017 14:27:16,1,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Graduate Student,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Student,,,,,,5,1,5,5,10,Excel;Tableau;Plotly;ggplot,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Raster Map,General Public;Scientists,Moderate,Quarterly,Analysis;Summarization;Research,Consultative,,Not knowing the programming languages necessary for online interactive viz,,,That they could do it too if they spent the time to learn,,,Hadley Wickham;Nadieh Bremer;Nathan Yau,More,male,26 - 35,USA or Canada,white,Public sector
2/27/2017 18:43:00,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Analyst,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries,No,Research,33,7,50,,10,Excel;Plotly;D3;Leaflet;ggplot;Other R,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Infographics;Network Diagram;Choropleth Map,General Public;Analysts;Project Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Consultative,Data collection is expensive and difficult,Tweaking ggplot2 aesthetics,Better data quality,Alternative to plotly and shiny for making ggplot2 plots interactive,It's not a substitute for statistical analysis and critical reasoning,Embrace of open-source tools such as R rather than analysis tools such as SPSS or Tableau,Interactive client-side visualizations from ggplot2,Hadley Wickham;Stephen Few,Same,male,25 or younger,USA or Canada,white,Private sector
3/1/2017 13:31:15,5,PhD,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Manager Data Science,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Engineering,5,10,10,0,5,Tableau;Power BI;D3;ggplot,I'm able to choose my own tools.,Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart,General Public;Engineers;Project Managers;Executives,Moderate,Monthly,Summarization,Subordinate,Not doing enough data science- and especially visualizations,No longer using D3 )-:,Less interference from boss,More of it,Design matters,Less management,,Hadley Wickham;Stephen Few;Robert Kosara;Susan,Much more,male,56+,USA or Canada,white,Private sector
2/28/2017 20:02:50,1,Other,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Technical Research Assistant,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts,No,Engineering;Research,5,50,15,0,30,ggplot;Other R;Pandas;Other Python;Shiny,I'm able to choose my own tools.,Documents;Presentations;Email,Line Chart;Bar Chart;Network Diagram,Scientists;Researchers,Moderate,Monthly,Analysis;Summarization;Learning;Research;Presentations,Subordinate,Lack of collaborators,Learning curve,Have more engineers to collaborate with.,More frequent / higher quantity of data viz work.,How much code goes into each visualization.,More collaborators,,Hadley Wickham;timelyportfolio;Irene Ros,More,male,26 - 35,USA or Canada,white,Academic
2/27/2017 12:49:14,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Business intelligence specialist ,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview,Embedded in another team,Business Intelligence Tools,No,Analysis ,50,,,,,Excel;Tableau,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Treemap;Scatter plots;radial charts,General Public;Analysts,Intro;Moderate,Monthly,Analysis;Research,Subordinate,,,,,,Official training ,,Hans Rosling,More,male,36 - 45,Europe,white,Public sector
2/27/2017 13:12:27,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,Yes,Design;Engineering;Marketing;Research;IT,10,0,0,0,0,Illustrator;Excel;Processing;Leaflet;Mapbox;WebGL;Highcharts;Other Javascript;Other R;Other Python;Java;React;Angular;D3,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Network Diagram;Choropleth Map;Flow Diagram;3D Chart;VR/AR Charting,General Public;Scientists;Medical Professionals;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Daily,Analysis;Summarization,Collaborative,Clients,Messy data,Work agile with clients,Make sure data is structured properly at all times instead of hotfixing things,,Jira,,Hans Rosling,Same,male,26 - 35,Europe,white,Private sector
2/28/2017 10:44:00,2,Bachelors,Equal Parts School and Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,Graduate Student,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Student,,,,,,10,0,25,15,25,ggplot;Other R;Cytoscape,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Infographics;Network Diagram,Analysts;Scientists;Medical Professionals;Project Managers,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Collaborative,,I would like better tools for polishing graphs and figures to be publication ready - something like adobe illustrator but open!,,Protected/dedicated time for data visualization - courses- lectures- etc. ,Data visualization depends on the underlying data type- question of interest- and context of problem. There are many aspects that go into the decisions behind which visuals to use and not every graph type is necessarily appropriate for a given data set.,More hands-on training in the tools that professionals use day-to-day. Less theory and more application! Especially application with messy real-world data- not just cleaned and simple data examples. More open ended data visualization problems.,Course material incorporated into curriculum! I would have loved a dedicated data visualization course- rather than needing to learn these tools (which are part of the job) on my own time. ,Hans Rosling,Same,female,26 - 35,USA or Canada,white,Public sector
3/1/2017 12:38:02,2,Bachelors,Mostly Self-Taught,Intended to work in data visualization,Yes,Data Analyst Leader,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing,Embedded in another team,Business Intelligence Tools,No,Design;IT;Operations,15,60,0,10,15,Excel;Other BI;Spotfire,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Presentations;Email,Line Chart;Bar Chart;Flow Diagram,General Public;Analysts;Product Managers;Project Managers;Executives,Expert,Hourly,Analysis;Summarization;Learning;Research,Collaborative,Limited use of tools allowed,Tools used are slow,Better software,More design based approach,Effort it takes to produce,Less busy work,,Hans Rosling,More,male,26 - 35,USA or Canada,white,Private sector
3/1/2017 14:07:17,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Director,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Both,Business Intelligence Tools;Completely custom,No,Design;Research;IT,33,1,1,33,0,Excel;D3,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map,General Public;Scientists;Executives;educational researchers,Intro;Moderate;Expert,Daily,Analysis;Summarization;Learning;Research,Subordinate,Rework,I'm not a computer scientist and I need to learn more ways to take data in simple formats and create meaningful visualizations from them. I'm frustrated that I don't have facile enough skills or time to learn new skills that would help me produce new charts without know D3 inside and out (I currently work with D3 developers to implement ideas/concepts). Having better prototyping skills might reduce rework. ,less rework,less rework,It takes time... people think an idea they have can just be shown on the screen in hours. ,more flexible packages might help... so people can play more with data on their own in a simple WYSIWYG editor,Opportunities for non computer scientists to learn more about how to create their own visualizations. ,Hans Rosling,Much more,male,36 - 45,USA or Canada,white,Not-for-profit
3/1/2017 20:46:13,8,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Product Manager,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,Engineering;Marketing,5,5,5,2,5,Tableau;D3;Vega;CODAP;Fathom,I'm able to choose my own tools.,Presentations;Email,Line Chart;Bar Chart;Pie Chart;Time Series,Product Managers;Executives,Moderate,Monthly,Research,Subordinate,Database tables are messy and not normalized,Hard to get time and resources to focus on this aspect of my job,Get more resources to focus on data and analytics,Learn how to draw D3 graphs with R,How powerful a tool it is for exploring relationships and correlations,More time to work on data visualization,Short tutorials on how to get started,Hans Rosling,Much more,female,46 - 55,USA or Canada,asian,Private sector
3/8/2017 1:56:35,5,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,eScience Research Engineer,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Exploration,Embedded in another team,ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Engineering;Research,40,20,10,10,20,Plotly;D3;Leaflet;WebGL;Other Javascript;ggplot;Pandas;Other Python;Java;React;Angular;QGIS;Gephi,I'm able to choose my own tools.,Dashboard;Static Web Page,Line Chart;Bar Chart;Pie Chart;Dendrogram;Network Diagram;Choropleth Map;Raster Map;Custom charts,General Public;Analysts;Engineers;Scientists,Moderate;Expert,Weekly,Analysis;Research,Collaborative,Underestimation of the value of Visualization,"1) Data cleanup or chasing data to visualize.
2) Extremely rapid changes in tools required for web development","The level of recognition.
Everyone thinks they can make a decent visualization (hint: they can't)",I'd love to make it more robust (be able to deal with more data anomalies etc.) but I don't get the time to do it properly.,Everyone thinks they can make a decent visualization (hint: they can't),Recognition,How to improve the status of the field and change mindsets of data visualization consumers to recognize they need to invest more time and money into good visualizations.,Hans Rosling,Same,male,26 - 35,Europe,white,Public sector
2/27/2017 18:20:31,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Owner & CEO,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Consultant,,,,,,25,,,25,,Excel;Drawing,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations;Email;Researcher -- peer-reviewed articles;technical reports;grant reports,Line Chart;Bar Chart;Pie Chart;Dot plots;heat maps;exploratory visualizations (spark lines;etc.),Analysts;Executives;Foundations' Board of Trustees; nonprofits' Board of Directors; policymakers; members of Congress,Intro;Moderate,Quarterly,Analysis;Summarization;Learning;Research,Collaborative,,Tableau salespeople pushing software and selling selling selling; clients buy the software and make overly complicated graphs. But hey- it keeps me in business to be hired over and over to fix their Tableau visualizations.,Get someone else to do invoicing for me! What a time-suck.,Learn more about interactivity. I've mastered static graphs so that feels like the next frontier in my learning.,I'm self-employed- as are dozens (hundreds) of us- so this question is n/a.,,Leave them be. Don't bother them by asking for advice.,Hans Rosling;Tufte;Alberto Cairo;Jon Schwabish;Cole Nussbaumer Knaflic;Andy Kirk,Less,female,26 - 35,USA or Canada,white,Private sector
2/27/2017 13:18:20,1,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Consultant,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Consultant,,,,,,5,20,20,15,40,Excel;Plotly;D3;Leaflet;ggplot,,Embedded in a tool;Dashboard,Bar Chart;3D Chart,General Public;Analysts,Intro,Quarterly,Entertainment;Analysis;Summarization,Consultative,,,,,The amount of time it takes to clean data in order to present it. ,,How to have upward mobility in the data viz field. How make your 'spaghetti code' neater. ,Hans Rosling;Nadieh Bremer,Much more,,25 or younger,,,Private sector
3/5/2017 3:02:09,7,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Data Analyst/Manager,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Summary/Overview;Communication;Marketing,Embedded in another team,Excel;ggplot2/Pandas Charts;Modeling,No,Research,5,10,10,0,75,Excel;Plotly;Leaflet;ggplot;Other R;QGIS,I'm able to choose my own tools.,Interactive Web Pages (hopefully!),Line Chart;Bar Chart;Pie Chart;Dendrogram;Network Diagram;Choropleth Map;Flow Diagram,Project Managers;Executives,Moderate,Weekly,Analysis,Subordinate,Data prep. No one responsible for information architecture.,DV is underappreciated.,Working to a coherent data strategy- architecture- led by practical people of vision.,I'd like to be better at it.,How long it takes. The background data prep. What the DVs show.,Coherent data- information strategies.,Blogs.,Hans Rosling;Stephen Few;Nathan Yau,Much more,male,46 - 55,Europe,white,Public sector
3/3/2017 14:57:49,3,Other,Mostly Self-Taught,Intended to work in data visualization,No,UX Designer,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Consultant,,,,,,10,1,0,87,2,Illustrator;D3;Mapbox;Other Javascript;QGIS;Sketch;Framer,I'm able to choose my own tools.,Dashboard;Scrollytelling;Static Web Page;Presentations,Line Chart;Bar Chart;Pie Chart,General Public;Engineers;Medical Professionals;Project Managers,Moderate,Hourly,Analysis;Summarization;Learning,Collaborative,Not undertanding how to extract value of the visual story,Not having the right tooling at hand,Bring closer the design team to using real data on their design,Bring d3.js closer to Sketch / Photoshop / Illustrator,The amount of time spent on a piece over the value of it,Again- bring d3.js closer to my prototyping tools (Framer),More effort integrating the tools to the designer's workflow,Ian Johnson,Much more,male,36 - 45,USA or Canada,hispanic,Private sector
2/28/2017 11:01:04,9,PhD,Equal Parts School and Self-Taught,Intended to work in data visualization,Yes,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Communication;Exploration,Both,Business Intelligence Tools;Completely custom,No,Engineering;Research,45,20,5,15,20,Tableau;D3;Leaflet;Other Javascript;React;Angular;Vega,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Presentations,Line Chart;Bar Chart;Network Diagram;Choropleth Map;Flow Diagram;Icicle;Timeline;Heatmap,General Public;Engineers;Scientists;Product Managers,Intro;Moderate;Expert,Daily,Entertainment;Analysis;Learning;Research,Collaborative,had to do regular front-end tasks (such as build forms) in addition to vis work and expected to handle that regularly,lack of engineering support for data pipeline. ,clear scope of work that separates front-end dev and vis role. ,more engineering resources (our team hired a junior software engineer to help recently and my life has been much better since),Non-engineers just want something eye-catching. Some think visualization has values but does not see how we can help them. Some cannot tell the difference between vis person and front-end dev. Knowing how to code in D3 and designing an effective vis are different- but not every get this. ,Make data vis an essential part of data science workflow. Increase the priority of data presentation- not just analysis. ,How to build a successful data visualization team? Strategy for finding projects that create impact and how to insert ourselves into other teams workflow? How to effectively build new interesting projects and maintain multiple systems from the past? ,IEEEvis;OpenVisConf;NYT;Nathan Yau,More,male,26 - 35,USA or Canada,asian,Private sector
2/28/2017 23:44:18,5,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Graphic Designer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Other,Communication,Embedded in another team,General charting libraries,Don't Know,Design,20,0,0,80,0,Illustrator;Excel,We have a set list of tools we're expected to use for data visualization.,Static Web Page;Documents;Presentations;Email,Line Chart;Infographics;Flow Diagram,General Public;Politicians,Moderate,Quarterly,Summarization;Learning,Subordinate,Little recognition,,Timing,More research,Recognition,More research,More research in communication,Jaime Serra,Same,male,56+,Europe,white,Public sector
3/2/2017 11:21:03,4,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,PhD Candidate ,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Student,,,,,,35,,,5,50,Excel;Plotly;ggplot;Other R;ArcGIS;QGIS,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Choropleth Map;Raster Map,General Public;Analysts,Moderate;Expert,Monthly,Analysis;Summarization;Research,Subordinate,low Pay,Time to create decent visualizations. Being responsible for the whole pipeline takes time I often don't have ,Wider adoption and understanding of scripting approaches (preferably R) but any would be nice. Would clarify my work processes immensely,Being able to switch between R and Python tools seamlessly,The importance of data preparation before visualization ,Better compensation or more regular work,More examples of the full pipeline of work from collection to cleaning and integrating different tools like ggplot and illustrator ,James Cheshire;Stephen Few;NYT,Much more,male,26 - 35,USA or Canada,black,Public sector
2/27/2017 22:06:58,4,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Social Network Analysis Researcher,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Consultant,,,,,,30,0,30,20,20,Illustrator;Excel;Tableau;D3;Cytoscape;ORA Netscenes,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Dendrogram;Network Diagram,General Public;Scientists;Project Managers;Executives,Intro,Yearly,Analysis;Research;Strategy; Decision-Making,Collaborative,managing client expectations; clients seek innovative insights- but want to defer to traditional methods,Access to data,,There is always room for improvement- but not sure what one thing I would change,The amount of time it takes to produce; the computational components that produces the visual results,Easy accesses to data. Much of my time is spent in data collection (in part due to the nature of my work),The ethical and civic responsibilities that need to be considered when collecting- handling or visualizing social data. Although humans play a large role in creating data and are often the subjects of data. Visualization- data science and sociological research are often discussed separately ,Jan Willem Tulp;Jer Thorp,Much more,female,26 - 35,USA or Canada,white,Mixed
3/5/2017 11:44:22,4,PhD,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Consultant (Visual Analytics Behavioural Science Data Strategy),Data Visualization Role has higher compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Consultant,,,,,,50,10,10,10,20,Excel;Tableau;Plotly;D3;Processing;Leaflet;WebGL;ggplot;Pandas;Gephi,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Treemap;Network Diagram,General Public;Analysts;Executives,Intro;Moderate,Daily,Analysis;Summarization;Learning;decision making,Consultative,being brought in at the end- when its too late to fix bad strategies- poor design- and products based on little-to-no user research,Quality of tooling: Tableau doesn't scale (embedding) without great expense- D3 means starting from the ground up- libraries (chart.js etc etc) have poor expressiveness- Looker and other pro-level (expensive) tools are typologies not grammars (like ggplot is). But ggplot2 doesn't play well with things outside of R so... ,,,They think a developer choosing a graph from a typology and mashing a dashboard together is acceptable,better understanding of design- UX- and data literacy,next generation tools and technologies,Jaques Bertin,More,male,36 - 45,Europe,,Private sector
3/2/2017 9:24:21,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Senior Security Advocate / Senior Editor,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Communication;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Engineering;Marketing;Research;Security,15,3,5,10,3,Excel;ggplot;Other R,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Infographics;Treemap;Choropleth Map;Sankey Graph,General Public;Analysts;Executives,Expert,Quarterly,Summarization;Learning,Consultative,not enough time to learn and do everything I need to,Learning curve of R and data visualization in general,,Level of knowledge- I'm still a beginner. But I'm continually learning and stretching my knowledge.,I don't feel that way- my work is widely recognized within the org as being one of our primary thought leadership vehicles.,A raise! ,I use a Slack channel with leaders in the security data viz field extensively for help in R and visualization. I'd like to see that sort of leadership available to others.,Jay Jacobs;Bob Rudis;Lane Harrison,Much more,male,46 - 55,USA or Canada,white,Private sector
2/28/2017 11:40:07,10,PhD,Mostly Self-Taught,Intended to work in data visualization,No,Associate Professor,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Research,Embedded in another team,Completely custom,No,Research,5,0,1,5,0,D3;ggplot;Other Python;Java;JavaScript;Inkscape,I'm able to choose my own tools.,Documents;Presentations;Interactive web page,Bar Chart,Engineers;Scientists,Intro,Yearly,Summarization;Research,,,,,,,,,Jean-Daniel Fekete;Tamara Munzner;Jeffrey Heer;Jarke van Wijk,Less,male,36 - 45,USA or Canada,white,Public sector
3/1/2017 12:06:14,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Professor Emeritus (Physics),Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Other,Analysis;Summary/Overview;Communication;Exploration,Both,Completely custom,Yes,Engineering;Research;IT;hobbyists,10,10,5,10,5,Other Python;Java;PGPLOT;Custom Charting Tools;FORTRAN;C;PHP,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Documents;Presentations;Part of all data analysis packages,Old-fashioned 2D and 3D Figures,General Public;Scientists;Students,Intro;Moderate;Expert,Hourly,Analysis;Summarization;Learning;Research,Collaborative,I'm not smart enough.,Every package demands total immersion and commitment to it. What ever happened to simple pluggable Methods?,It might be nice to get PAID- but then there'd be pressure....,A nice library of visualization tools callable from any language and implemented on every platform would satisfy all my needs. ,Just because it's FUN doesn't mean it's not serious work!,A nice library of visualization tools callable from any language and implemented on every platform would satisfy all my needs. ,"More universality- interoperability and pluggability! Stop competing for ""top app""!!",Jed Brewer,More,male,56+,USA or Canada,white,Not-for-profit
2/27/2017 14:27:28,10,PhD,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Professor,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Both,Business Intelligence Tools;ggplot2/Pandas Charts,Yes,Design;Engineering;Marketing;Research;IT,5,10,5,5,5,Illustrator;Excel;Tableau;D3;Processing;WebGL;ggplot;React,I'm able to choose my own tools.,Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram;Choropleth Map,General Public;Scientists,Intro;Moderate;Expert,Quarterly,Analysis;Research,Collaborative,"many ""bosses""",I'll never be as good at tool X as person Y,Less admin work; more time for data,i'd like to be able to support (donations) the people who make the best vis stuff; particularly up and comers,that it's iterative; first draft always dies,,what does the future look like; not just the future you're working on,Jeffrey Heer,More,male,26 - 35,USA or Canada,white,Private sector
2/28/2017 19:54:33,10,PhD,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Human Interfaces Manager,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Separate data visualization team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Engineering,10,20,20,50,10,Excel;D3;Processing;Leaflet;WebGL;Other Javascript;ggplot;Pandas;Java;React;Angular;ArcGIS;QGIS;Other GIS,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Treemap;Dendrogram;Choropleth Map;Flow Diagram;3D Chart;VR/AR Charting,Analysts;Engineers;Scientists,Moderate;Expert,Hourly,Analysis;Summarization;Learning;Research,Collaborative,Entrenched interests which block adoption of many new approaches,Rainbow color palette and other legacy traditions owns mindshare so many bad visualization are produced and knowledge of professional discipline is diminished,,Oblige evaluation of systems,That it can make them much more effective at their own work,,,Jeffrey Heer,More,male,36 - 45,USA or Canada,white,Public sector
3/7/2017 8:26:41,8,PhD,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Postdoctoral Researcher,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,Don't Know,Design;Engineering;Research,70,0,0,,,Tableau;D3;Processing;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page,Bar Chart;timelines;calendars,General Public;Analysts;educators;historians;journalists,Moderate,,Learning;storytelling,,Balancing research w/ development work (role requires both),As a researcher- I'm evaluated by research results (i.e.- publications)- but the visualization research questions I have regarding the use of visualization tools in practice requires deployment of robust prototypes- a longer-term process involving substantial development time.,More development support and more collaboration during visualization development (I'm currently doing all development work myself),,Some believe visualization is only for presentation- others for data analysis; we need to communicate that there is a continuum between the two- and that different techniques are suitable for different points along this continuum- hence the need for research to identify the right techniques.,More development support and more collaboration during visualization development (I'm currently doing all development work myself),What makes an effective visualization team? What unsolved questions do practitioners want researchers to answer? (i.e.- what should researchers focus on? What should visualization researchers focus less on? How can researchers better communicate our findings to practitioners?,Jeffrey Heer;Ben Shneiderman;Mike Bostock;Tamara Munzner;Alberto Cairo;Fernanda Viégas;Martin Wattenberg,Much more,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 16:51:39,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Head of Product,Data Visualization Role has higher compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Marketing;Product,Embedded in another team,Business Intelligence Tools;Completely custom,Yes,Design;Research;Product;Data Science,20,0,20,20,0,Excel;Tableau;D3,I'm able to choose my own tools.,Dashboard;Presentations;Product,Line Chart;Bar Chart;Pie Chart;Choropleth Map,General Public;Analysts;Engineers;Medical Professionals;Product Managers;Executives,Moderate;Expert,Daily,Analysis;Summarization;Research,Collaborative,,,,,,,,Jeffrey Heer;Jawbone;FB,More,male,36 - 45,USA or Canada,white,Private sector
3/3/2017 3:51:23,7,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Director Office of Data Research and Accountability,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Summary/Overview;Communication,,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom;Modeling,Yes,Research;C suite,5,5,10,5,10,Tableau;Plotly;Other BI;D3;Leaflet;Highcharts;Other Javascript;ggplot;Other R;Pandas;Other Python;Java;React;Angular;Other MVC;Vega;QGIS;Stata,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations,Line Chart,General Public;Analysts;Product Managers;Project Managers;Executives,Intro,Yearly,Reporting requirements,Subordinate,Too many meetings and difficulties hiring team members,Lack of trust that I am selecting the best and most appropriate method to visualize the data.,Staffing,more acceptance of visualization decisions,The time and effort required to create visualizations when working with large transactional systems that require extensive cleaning and preparation.,Additional staff,Strategies for educating the audience about data visualization and why certain choices are made.,Jeffrey Heer;Mike Bostock;Andy Kirk,Much more,male,26 - 35,USA or Canada,white,Public sector
2/27/2017 14:16:05,7,PhD,Equal Parts School and Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,PhD Candidate,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Student,,,,,,10,10,10,10,10,Illustrator;Excel;D3;ggplot;Pandas,I'm able to choose my own tools.,Embedded in a tool;Documents;Presentations;Email,Line Chart;Bar Chart;Network Diagram;scientific visualization,General Public;Scientists,Intro;Expert,Monthly,Analysis;Learning;Research,Collaborative,Lots of writing- less visualization (true of most vis PhDs),"Aside from wrangling- not having time to delve deep and only create things that are ""good enough""",Spend less time writing and more time implementing,Having time to outline sustainable collaboration models to lessen communication overhead that comes with starting up new projects and maintaining existing ones,"With visualization research there tends to be a perspective towards ""expanding human knowledge"" rather than valuing open source systems research output- which can be frustrating at times.",Reallocate time to favor visualization development,"More information on how to navigate the ""soft skill"" issues that come with visualization practice (e.g.- finding data- dealing with the reality that most people don't want anything more complicated than a bar chart- etc.)",Jeffrey Heer;Tamara Munzner;Amanda Cox;Mike Bostock,More,male,26 - 35,USA or Canada,white,Academic
3/4/2017 18:10:28,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Manager,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools,Don't Know,Research;Business intelligence ,50,20,20,5,5,Illustrator;Excel;Tableau;Mapbox;ArcGIS,I'm able to choose my own tools.,Dashboard;Presentations,Line Chart;Bar Chart;Infographics,General Public;Analysts;Medical Professionals;Project Managers;Executives,Expert,Weekly,Analysis;Summarization;Learning;Research,Consultative,Not being included in the big picture- just being asked for a specific thing- which doesn't show the whole picture.,,,,,,,Jeff Schaffer;Steve Wexler;Stephen Few,Much more,female,26 - 35,USA or Canada,white,Public sector
2/27/2017 13:51:42,5,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,Senior Visualization Designer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Summary/Overview;Communication;Marketing,Separate data visualization team,Completely custom,No,Design,45,0,0,45,10,Illustrator;Excel;D3;Processing;Leaflet;WebGL;Other Javascript;Angular,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Treemap;Network Diagram;Choropleth Map;Flow Diagram,General Public;Analysts;Executives;Lawyers,Intro;Moderate;Expert,Weekly,Summarization;Learning;Research,Consultative,Getting clients to understand the process.,Balancing time spent customizing vs building tools.,Better project management- and more time for R&D.,Higher level of visual polish.,How design decisions follow from patterns in the data- rather than a preconceived narrative.,More time.,Balancing tool making with customization.,Jer Thorp,More,male,26 - 35,USA or Canada,white,Private sector
2/28/2017 17:54:32,10,PhD,Equal Parts School and Self-Taught,Intended to work in data visualization,No,,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,Completely custom,No,Engineering;Research,15,15,15,20,5,Java,I'm able to choose my own tools.,Embedded in a tool;Documents;Presentations,Line Chart;Bar Chart;Parallel coordinates ,Engineers;Scientists;Project Managers,Expert,Weekly,Analysis;Learning;Research,Collaborative,Funding support,Turning designs into prototypes ,Unlimited funding,Less engineering more design focus,Graphic design principles ,Funding support stability ,How to publish more effectively ,John Stasko,Much more,male,36 - 45,USA or Canada,white,Public sector
3/1/2017 14:20:02,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Head Policy Analysis,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Embedded in another team,Business Intelligence Tools,No,Research;Policy,5,1,0,0,1,Excel;Cognos BI,We have a set list of tools we're expected to use for data visualization.,Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Network Diagram;Flow Diagram;3D Chart,Analysts;Executives,Intro,Weekly,Analysis;Summarization;Research,Consultative,Lack of data knowledge amongst collegues,Lack of flexibility in tools- tableau and others are not available,Flexibility in use of tools,I would use R and tableau,The presentation selected matters to the understanding of the information,Ability to use R and tableau,How to teach staff how to use new tools and be interested in data (amongst non-experts),John Tukey;Nathan Yau,More,male,36 - 45,USA or Canada,white,Public sector
3/4/2017 21:03:10,3,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Head of Analytics ,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Communication,Embedded in another team,Business Intelligence Tools,No,Research,10,20,20,20,20,Excel;Tableau;Gephi,We have a set list of tools we're expected to use for data visualization.,Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Network Diagram;Choropleth Map;Flow Diagram,General Public;Analysts;Scientists;Executives,Moderate,Monthly,Analysis;Summarization,Subordinate,IT security,People not appreciating it,More time to explore ,Learn more,That I trying to make it easier for them to understand the data ,,,Jon Schwabish,Much more,female,26 - 35,Oceania,white,Public sector
3/2/2017 11:41:09,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Consultant,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;Excel,No,Design;Research,30,20,20,20,10,Illustrator;Excel;Tableau;Gephi;Other Network Visualization Suite,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Flow Diagram,General Public;Analysts;Project Managers;Philanthropic/Public Sector Clients,Expert,Monthly,Analysis;Summarization;Learning,Collaborative,low compensation for number of hours worked,lack of understanding of the time burden/value of data visualization,more time to be thoughtful/innovative,training in R,how much time it takes,more time to be thoughtful/innovative,"more about how to create culture change within orgs that are not already ""there""",Jon Schwabish;Cole Nussbaumer Knaflic;Nathan Yau,Same,female,25 or younger,USA or Canada,white,Private sector
3/6/2017 0:19:35,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Visualisation Analyst,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,Yes,Design;Research;Analytics,50,10,10,20,10,Tableau;Mapbox;QGIS,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Presentations,Line Chart;Bar Chart;Infographics;Treemap;Network Diagram;Choropleth Map;Flow Diagram;Scatter;Sankey;Waffle;Donut,General Public;Analysts;Product Managers;Executives;Operations,Expert,Daily,Analysis;Summarization,Collaborative,Lack of understanding of reporting vs analytics,Use of cross tabs (by clients),More R&D time,Understanding that Data Viz requires expertise,Compromises we have to make,More understanding (from Client) of the skills of Data Viz,"Keep on the mission to make Data Visualisation the ""normal"" way analytics is done",Jonathan Drummey,Much more,male,36 - 45,Europe,white,Private sector
3/1/2017 23:19:45,10,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Founder / Managing Director,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Contractor,,,,,,30,20,10,30,10,D3;Mapbox;React;QGIS;Gephi,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents,Line Chart;Bar Chart;Network Diagram;Choropleth Map;Custom designed charts/combinations,General Public;Scientists,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research;Communication,Collaborative,Challenge I: Fully integrate non-tech/non-data literate team members into the process and decisions. Challenge II: expectation on client side of cost involved in data visualization projects,Turn-around/flexibility shaping data and output still not fast/high enough.,Visual tools for on-the-fly data wrangling,Enable long term perspective of data visualization as a communicative medium (collaboration based on/around charts),,More time for projects/clients approaching earlier in the process,Less quantity more quality of output. But discussions and polite & interesting exchange are already at a pretty high level,Jonathan Harris;Moritz Stefaner;Fernanda Viégas;Martin Wattenberg;Ben Fry;Wes Grubbs;Jer Thorp,Much more,male,26 - 35,,,Private sector
2/27/2017 13:33:57,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Business Analyst,Data Visualization Role has higher compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Hired to do data visualization,Contractor,,,,,,20,0,0,10,5,Excel;Tableau;D3;ggplot,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Choropleth Map;Flow Diagram,General Public;Analysts;Product Managers;Project Managers;Executives,Moderate,Monthly,Analysis;Summarization,Consultative,Not enough data visualisation work,Trying to explain the value,100 focus on data presentation- design and consultancy,More access to dev tools on work PCs,The background in design- perception- data analysis that is required,More embedded Data Viz roles in government,,Kaiser Fung,Much more,male,36 - 45,Oceania,,Public sector
2/28/2017 13:07:41,9,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Information Analyst,Data Visualization Role has same compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,IT,20,5,5,20,50,Excel;Tableau;Power BI;D3;ggplot;Pandas;Other GIS;Gephi,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Dendrogram;Network Diagram;Choropleth Map;Flow Diagram,General Public;Analysts;Project Managers;Executives,Intro;Moderate;Expert,Monthly,Entertainment;Analysis;Summarization,Consultative,,Easy to use self-service tools not widely available,,,They could do a good amount of it if trained properly.,,Designers/engineers making more tools for the masses without the need for coding.,Kaiser Fung;Alberto Cairo;Moritz Stefaner,Much more,male,36 - 45,USA or Canada,black,Not-for-profit
3/3/2017 20:34:07,10,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Hired to do data visualization,Consultant,,,,,,10,10,10,5,40,Leaflet;Highcharts;ggplot;Other R;QGIS,I'm able to choose my own tools.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Network Diagram;Choropleth Map;Flow Diagram;Scatter plots; heatmaps ,General Public;Analysts;Engineers;Executives,Moderate,Weekly,Analysis;Research;Operational decisions ,Consultative,Not enough contact with end users.,Lack of opportunity for innovation.,More emphasis on research and data vis; less on business/admin.,Have more opportunity to experiment.,The value of working with end users to determine their needs- rather than working to an arbitrary spec.,More time for research.,Connecting the experimental to the practical.,Kamal Hothi;Keith Ng;Chris McDowall,More,male,46 - 55,Oceania,white,Private sector
2/28/2017 1:22:57,5,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Interaction Designer,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Both,Business Intelligence Tools;Completely custom,Yes,Design,10,5,0,60,15,Illustrator;D3;Mapbox;Other Javascript,I'm able to choose my own tools.,Dashboard;Scrollytelling;Static Web Page,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Choropleth Map;Raster Map;Flow Diagram,General Public;Product Managers;Executives,Intro,Monthly,Analysis;Summarization,Consultative,CLIENTS,CLIENTS,Get clients that are smarter than amoebas,Get clients that are smarter than amoebas,simplicity is not a negative thing,higher $$$,how to make clients not dumb,LUST,Same,male,26 - 35,Europe,white,Private sector
2/27/2017 13:07:24,8,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Software Architect,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Engineering,2,5,1,10,8,D3;Processing;Other Javascript;React;Vega;Vega-Lite,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Email,Line Chart;Bar Chart;Choropleth Map,Analysts;Engineers;Executives,Expert,Daily,Analysis;Summarization,Consultative,Asked to focus on many things aside from data visualization so it just is rarely prioritized.,Not enough time to explore data and do expositional work.,Not having to go searching for the dataset to do data visualization about as often.,Write up more what is being attempted so others can learn from the attempts and improve or offer alternative solutions to the same problem. Or can likewise lay out what is the purpose for the vis they're doing.,How to effectively ask for it to be done. It is valued when done- but nobody knows how to really ask for it well.,Allowed to focus on data visualization for extended periods of time.,Where more work needs to be done and published to move the field forward.,Lynn Cherny;Mike Bostock;Jeffrey Heer;Nadieh Bremer;Alberto Cairo;Tamara Munzner;Shirley Wu;Curran Kelleher,Much more,male,36 - 45,USA or Canada,white,Private sector
2/27/2017 20:11:21,5,Bachelors,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Junior Software Engineer,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Completely custom,No,Engineering,5,50,0,20,10,D3;Leaflet;Mapbox;WebGL;Other Javascript,I'm able to choose my own tools.,Dashboard;Email,Line Chart;Bar Chart;Pie Chart;Choropleth Map;Raster Map,General Public;Analysts;Product Managers;Executives,Intro;Moderate,Hourly,Analysis;Summarization,Consultative,Data wrangling. Data scraping- data availability,Ensuring accurate data,Cleaner data,Cleaner data. More modern tech,The time spent to produce the vizualizations,More money ,Proven technology stacks,Mapbox;Tom MacWright;Mike Bostock;Vladimir Agafonkin,More,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 18:33:07,2,Other,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Head of Design,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Completely custom,Yes,Design;Engineering;Research;Our whole company;really. It's our purpose.,100,0,0,100,0,D3;Mapbox;WebGL;Other Python;React;Vega,I'm able to choose my own tools.,Static Web Page;Documents;Presentations;Email;Our charity produces a website for public. We also provide these to media organisations for their use.,Line Chart;Bar Chart;Choropleth Map,General Public;Analysts;All of New Zealand;Government Organisations.,Intro;Moderate;Expert,Daily,Entertainment;Analysis;Summarization;Learning;Research,Collaborative,We're a charity- so cash flow to do bigger and better things + govt getting out of the way.,Everyone in dataviz wants the fancy things- but most of Joe Public doesn't have the data literacy skills to comprehend those things. That- or how slow Government moves to standardise open data (e.g. geo boundaries- definitions).,More money- more developers.,We'd explore a wider range of formats.,That's not a thing. Our whole org exists to visualise data.,More money for our organisation so we could move faster.,More focus and discussion around accessibility (including screenreaders- automatic caption/descriptor generation). This includes accessibility gaps caused by education/knowledge- where many people don't have the skills to accurately read/understand dataviz- especially when clear metadata is divorced from the resulting viz. It's driving towards a world where people thing data is definitive- rather than subject to limitations and biases like anything else.,Mara Averick;Tufte;Andy Kirk,Much more,female,26 - 35,Oceania,white,Not-for-profit
3/5/2017 3:55:11,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Sales ,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Consultant,,,,,,,,,,,Excel;Freehand,,Documents;Presentations;Email,Line Chart;Bar Chart;Infographics,General Public;Scientists;Executives;Farmers,Intro,Quarterly,Analysis;Summarization;Learning;Research;Sales,Collaborative,My personal skill level,The time it takes,,Be better at it,The work and thinking that goes into it,,,Mark Nicolas,More,male,46 - 55,USA or Canada,white,Private sector
3/1/2017 21:43:50,10,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Owner / Cartographer,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Consultant,,,,,,20,15,15,15,15,Illustrator;Excel;Tableau;Mapbox;ArcGIS;Other GIS;CARTO,I'm able to choose my own tools.,Scrollytelling;Static Web Page;Documents,Line Chart;Infographics;Choropleth Map;Raster Map,General Public;Academics,Intro;Moderate;Expert,Weekly,Entertainment;Learning;Research;Tourism,Collaborative,,,Clients would be better at finding me/I'd have to market myself less and spend more time visualising,I'd have more time to learn new tools,,more hours in the day,,Martin Gamache;Moritz Stefaner,Much more,male,46 - 55,Oceania,white,Private sector
3/4/2017 16:43:54,10,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,Chief Data Officer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Separate data visualization team,Completely custom,Yes,Design;Engineering;Research,40,10,30,10,10,Javascript;Custom Charting Tools,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Presentations,Line Chart;Treemap;Network Diagram;Flow Diagram;3D Chart;Scatterplot;cartography;parallel sets;many others,Analysts;Scientists;Medical Professionals;Product Managers;Executives,Intro;Moderate;Expert,Daily,Analysis;Learning;Research;Strategy;decision making,Collaborative,,,,,,,,Martin Wattenberg;Moritz Stefaner,Same,male,36 - 45,USA or Canada,white,Private sector
2/28/2017 8:19:14,10,PhD,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Assistant Professor,Data Visualization Role has same compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration;Art,Both,Completely custom,Yes,Design;Engineering;Research,25,10,25,25,15,D3;Processing;Leaflet;WebGL;Other Javascript;Other Python;Cytoscape,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Infographics;Network Diagram;Choropleth Map;Flow Diagram;VR/AR Charting,General Public;Analysts;Engineers;Scientists;Medical Professionals,Expert,Daily,Entertainment;Analysis;Summarization;Learning;Research,Collaborative,Not enough hours in the day,,,,,,,Martin Wattenberg;Sheelagh Carpendale,Same,male,36 - 45,USA or Canada,white,Public sector
2/27/2017 12:22:39,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Software Engineer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,General charting libraries;Completely custom,No,Engineering,30,50,10,30,50,D3;Leaflet;Mapbox;WebGL;Other Javascript;React;Angular,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page,Line Chart;Bar Chart;Raster Map,Analysts;Scientists,Moderate,Daily,Analysis,Consultative,rushed schedules,rushed schedules,more time for design,more time for design,,,,Mike Bostock,Same,male,36 - 45,USA or Canada,white,Public sector
2/27/2017 12:36:53,8,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Frontend / Data Vis Manager,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Hired to do data visualization,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Algorithms (Data Science),15,0,0,15,5,Illustrator;D3;Other Javascript;ggplot;Pandas;React;Vega,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Dendrogram;Network Diagram;Choropleth Map,Analysts;Engineers;Product Managers;Executives,Intro;Moderate;Expert,Daily,Analysis;Summarization;Learning;Research,Collaborative,,,,,,,,Mike Bostock,More,male,36 - 45,USA or Canada,multi,Private sector
2/27/2017 12:42:17,3,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Engineering,10,40,20,5,25,Tableau;D3;Other Python,I'm able to choose my own tools.,Dashboard;Static Web Page,Line Chart;Bar Chart;Treemap;Choropleth Map,Engineers;Scientists;Product Managers;Project Managers,Moderate,Weekly,Analysis,Consultative,,No good at UI/UX enough yet,,,,,,Mike Bostock,Much more,male,25 or younger,Europe,,Private sector
2/27/2017 12:45:44,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Geospatial Engineer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Both,Business Intelligence Tools;General charting libraries;Completely custom,No,Design;Engineering;Research,20,20,10,10,20,D3;Other Javascript;React;Openlayers,I'm able to choose my own tools.,Dashboard,Line Chart;Bar Chart;Pie Chart;other geospatial,Project Managers;data collection technicians,Moderate,Weekly,Analysis;Summarization;Learning,Consultative,Globally distributed internal user-base- with differing priorities,Data consistency- data wrangling- querying multiple databases to get a consolidated view,Better modeling of our collection data and coherent data interfaces between divisions in our company,Do more of it!,How it can be misleading if done wrong,Better organized back-end!,More examples of how to answer a question with data viz,Mike Bostock,More,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 13:21:05,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Senior Innovator,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Engineering;innovation lab,70,10,0,10,10,D3;Mapbox;WebGL;Other Javascript;Pandas;Other Python;React,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page,Line Chart;Bar Chart;Treemap;Scatter Plot,General Public;Analysts;Media Buying and Creative Content Teams,Moderate,Weekly,Analysis;Summarization;Research,Consultative,So much to learn- so little time.,Waiting on data to be pulled.,,I struggle with correctly decomposing data visualization systems into modules that are extremely flexible and shorten my development time.,,,Guidance on creating enterprise data visualizations- i.e. building a suite of interactive data visualizations that share the same data and coexist in the same application. Guidance on modular design principles.,Mike Bostock,More,male,36 - 45,USA or Canada,white,Private sector
2/27/2017 14:25:10,10,PhD,Mostly Self-Taught,Intended to work in data visualization,No,Chief Visualization Officer. In charge of datavis in my small consultancy firm,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;Completely custom,Yes,Design;Marketing;Research,25,10,20,10,35,Tableau;D3,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations,Line Chart;Bar Chart;Treemap,Analysts;Product Managers;Executives,Moderate;Expert,Weekly,Analysis;Summarization;Research,Consultative,Too much time cleaning and preparing the data,Having to be updating myself in dozens of libraries,Customers happy to pay what it cost to develop a proper datavis,Data always ready to work with,How complex could it be to develop an advanced visualization,,Have proper forums to easily find partners and validate new visualizations,Mike Bostock,Much more,male,26 - 35,Europe,white,Private sector
2/27/2017 14:25:44,7,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Designer,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis,Both,Business Intelligence Tools;Completely custom,No,Design;Engineering,5,0,0,95,0,D3,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page,Line Chart;Bar Chart;Flow Diagram,Analysts;Engineers,Intro,Daily,Analysis;Summarization,Collaborative,,,,,,,,Mike Bostock,More,male,26 - 35,USA or Canada,,Public sector
2/27/2017 15:00:48,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview,Embedded in another team,Completely custom,No,Design;Engineering,20,40,20,5,15,D3;Other Javascript,I'm able to choose my own tools.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram;Flow Diagram,Engineers;Executives,Moderate,Daily,Analysis;Summarization,Consultative,Details always eat up more time than expected...,Everyone has a different idea of what they want to see. Stats are a mystic art to a lot of people.,Hire infrastructure engineers.,Hire more designers.,The stats I show.,,,Mike Bostock,Same,male,25 or younger,USA or Canada,white,Private sector
2/27/2017 15:03:48,9,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Interactive Developer,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration;News,Separate data visualization team,Completely custom,Yes,Design;Engineering,40,50,10,5,15,Excel;D3;Leaflet;Other Javascript;ggplot;Other MVC;Vega,I'm able to choose my own tools.,Embedded in a tool;Static Web Page,Line Chart;Bar Chart;Infographics;Choropleth Map,General Public,Intro;Moderate,Daily,Entertainment;Analysis;Learning;News,Collaborative,Servers,Bad design- misrepresentation of data,,,Somewhat. People aren't good at reading charts and just want them to confirm their narrative often rather than to really inform,,,Mike Bostock,Same,male,36 - 45,Europe,white,Private sector
2/27/2017 15:15:25,2,Bachelors,Mostly Self-Taught,Intended to work in data visualization,Yes,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning,Both,Completely custom,Yes,Design;Engineering;Marketing,20,30,25,5,20,D3;Other Javascript,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Flow Diagram,Analysts;Engineers;Product Managers;Executives,Intro;Moderate;Expert,Daily,Analysis;Summarization;Research,Consultative,Don't do enough machine learning,CSS ,To do more data science and machine learning,Make my data visualizations work more user friendly,I think they do understand the data visualization work,Working on more machine learning and data science,How the data visualizations were used throughout their company and the different questions they answered,Mike Bostock,More,female,25 or younger,USA or Canada,hispanic,Private sector
2/27/2017 15:33:14,4,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,Graphics Editor,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts;Completely custom;Graphics;GIS,Yes,Research;Editorial,30,5,15,10,15,Illustrator;Excel;D3;Mapbox;WebGL;Other Javascript;ggplot;google docs,I'm able to choose my own tools.,Scrollytelling;Static Web Page,Line Chart;Bar Chart;Treemap;Choropleth Map;Scatterplot;slope chart;cartogram,General Public,Intro,Daily,Entertainment;Analysis;Learning,Collaborative,Still learning how to do reporting and come up with interesting news ideas,The stack is a little complicated. Don't like having to squeeze things inside require/backbone/site css,,Would like to publish more exploratory/experimental things ,Leadership totally gets it - Steve/Archie/Amanda/Hannah are all great! ,Less money in news/not sure about career path,Not sure what I should be working on now to keep ahead of the curve in the future. will vega put us all out work??,Mike Bostock,More,male,26 - 35,USA or Canada,white,Media
2/27/2017 16:46:04,6,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Technical Engineering Lead,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Engineering,50,30,5,25,30,Excel;D3;Leaflet;Mapbox;WebGL;Other Javascript;Other Python;Angular,We have a set list of tools we're expected to use for data visualization.,Dashboard,Line Chart;Bar Chart;Pie Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map;Raster Map,General Public;Engineers;Scientists,Moderate;Expert,Weekly,Analysis;Learning;Research,Collaborative,Feature creep driven development- some components become too complex,"Tendency to ""safe"" or commonly-used graphs",Working more across teams- rather than within user interface,,It's fast to prototype- lengthy to implement a prototype in the dashboard,,,Mike Bostock,Much more,male,26 - 35,USA or Canada,multi,Private sector
2/27/2017 19:26:08,3,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Informatics Specialist ,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,Research;IT,15,15,5,5,5,Excel;Tableau;Other BI;Other Python,I'm able to choose my own tools.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Choropleth Map;Sankey Diagram,Medical Professionals;Executives,Moderate,Monthly,Analysis;Learning,Collaborative,Siloed work environment,Not enough time,More collaboration,Spend more time per project,That statistics matter,Fewer focus areas,More fundamentals of design,Mike Bostock,More,male,26 - 35,USA or Canada,white,Not-for-profit
2/27/2017 20:00:49,1,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Systems engineer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Summary/Overview;Exploration,Embedded in another team,Completely custom,No,Engineering;QM;ops ,5,5,20,5,10,Excel;D3;Other Javascript;Minitab,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Documents;Presentations,Line Chart;Time series scatter plot ,Project Managers,Expert,Monthly,Analysis;Summarization;Research,Consultative,COTS software security approval,COTS software security approval,COTS software security approval,COTS software security approval,Why it's helpful ,More freedom ,Show confidence in security of open source software libraries ,Mike Bostock,More,male,26 - 35,USA or Canada,multi,Private sector
2/27/2017 20:06:04,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Visualization Developer,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;General charting libraries;Completely custom,Yes,Analytics,30,30,5,35,0,Tableau;D3;Highcharts;Angular;Vega,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page,Line Chart;Treemap;Dendrogram;Raster Map,Analysts;Executives;Teachers,Intro;Moderate,Daily,Analysis;Summarization;Research,Subordinate,Getting user feedback,Finding ways to drive interaction,Less time with user support,Speed of design and development,That it is a starting point- not a place for confirmation,Added time to deadlines,Process of design,Mike Bostock,More,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 20:15:45,1,Technical School,Mostly Self-Taught,Intended to work in data visualization,Yes,Front-end Developer,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing,Embedded in another team,Business Intelligence Tools;General charting libraries;Completely custom,No,Engineering,5,10,2,10,1,Tableau;D3;Highcharts;Other Javascript;React,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Flow Diagram,General Public;Engineers,Intro;Moderate,Weekly,Entertainment;Analysis;Summarization,Consultative,,Technical Debt,Old tech,More react,D3 custom charts take longer than excel,More tutorials,,Mike Bostock,Much more,male,26 - 35,Oceania,white,Private sector
2/27/2017 20:27:21,4,Other,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Software Engineer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Embedded in another team,General charting libraries;Completely custom,No,Engineering,25,10,0,25,40,D3,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Presentations,Line Chart;Bar Chart;Infographics;Treemap;Choropleth Map;Raster Map,General Public;Analysts;Executives,Intro;Moderate;Expert,Daily,Analysis;Research,Consultative,,,,,,,,Mike Bostock,More,male,36 - 45,USA or Canada,white,Private sector
2/27/2017 20:51:43,10,PhD,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Community,10,50,10,0,20,Excel;D3;ggplot;Pandas;Other Python,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Email,Line Chart;Bar Chart;Pie Chart,General Public;Product Managers;Project Managers;Executives,Moderate,Weekly,Analysis;Summarization;Learning;Research,Collaborative,,Distribution ,,Easier for others to tinker with and view,Sometimes- it's ok when the line chart is boring,,Documentation and examples,Mike Bostock,More,female,36 - 45,USA or Canada,white,Private sector
2/27/2017 20:58:08,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data analyst,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Contractor,,,,,,90,50,10,40,40,Illustrator;Excel;D3;Leaflet;WebGL;Other Javascript;CartoDB;TopoJSON;mapshaper,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;News articles,Line Chart;Bar Chart;Pie Chart;Choropleth Map;Raster Map;Bubble chart;streamgraph;dot plot;beeswarm plot;other stuff I make up,General Public;Journalists,Intro;Moderate,Hourly,Entertainment;Analysis;Summarization;Learning,Subordinate,Not enough time to learn new skills or work on long-term projects,Not enough time to get it perfect,Have more time to pick projects and work on long-term stories,Make it less of the job; would like to spend more time reporting and writing,How difficult it is to make it better than our competitors' work,Have a data vis editor who could hold off the bosses,More explanations of how they did really cool things,Mike Bostock,Less,male,26 - 35,Asia,white,Private sector
2/27/2017 21:46:04,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Research Engineer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts;Completely custom,No,Engineering,50,75,75,5,25,Plotly;D3;React;Matlab,I'm able to choose my own tools.,Embedded in a tool;Scrollytelling;Presentations,Line Chart;Bar Chart;Raster Map;3D Chart,Analysts;Engineers;Scientists;Project Managers,Moderate,Daily,Analysis;Learning;Research,Collaborative,,Poor tooling support for my field,,Using a system other than Matlab- or better Matlab tools for data visualization,That Matlab is awful.,,,Mike Bostock,More,male,26 - 35,USA or Canada,asian,Private sector
2/28/2017 1:50:31,3,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,UI Designer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Summary/Overview;Communication;Exploration,Both,ggplot2/Pandas Charts;Completely custom,No,Design;Engineering,10,0,0,90,0,D3;ggplot,I'm able to choose my own tools.,Embedded in a tool;Static Web Page,Line Chart;Bar Chart;Choropleth Map;Raster Map,General Public,Intro,Monthly,Entertainment;Analysis;Summarization;Learning,Collaborative,,,,,,,,Mike Bostock,Much more,male,25 or younger,Europe,hispanic,Private sector
2/28/2017 3:16:57,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Front End Engineer / UI Developer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Hired to do data visualization,Full-time,Analysis;Communication,Both,Business Intelligence Tools;General charting libraries;Completely custom,Yes,Design;Engineering,30,0,0,20,10,D3;Highcharts;React,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram;Flow Diagram,General Public;Analysts;Scientists;Medical Professionals;Executives,Intro;Moderate;Expert,Monthly,Entertainment;Analysis;Summarization,Consultative,,,,,,,,Mike Bostock,More,male,26 - 35,Europe,white,Private sector
2/28/2017 4:22:30,1,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Journalist Developer,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Journalism,Separate data visualization team,Completely custom,Don't Know,Engineering,50,20,,30,,Illustrator;Excel;D3;Leaflet;WebGL;Other MVC,I'm able to choose my own tools.,Embedded in a tool;Scrollytelling;Static Web Page,Line Chart;Bar Chart;Infographics;Raster Map,General Public,Intro;Moderate,Weekly,Analysis;Learning,Consultative,deadlines,the doc of D3,I would work only 3 days a week,more realtime data- less text,,,,Mike Bostock,Same,male,25 or younger,Europe,white,Public sector
2/28/2017 5:26:59,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Software Engineer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Contractor,,,,,,10,40,0,0,20,Leaflet;Other Python;MATPLOT,I'm able to choose my own tools.,Embedded in a tool;Documents,Raster Map;Scatter plots,Engineers;Scientists;Military personnel,Moderate;Expert,Daily,Analysis;Research,Collaborative,Difficulty getting feedback,,,,,,,Mike Bostock,Same,male,36 - 45,USA or Canada,white,Private sector
2/28/2017 6:36:32,7,PhD,Mostly Self-Taught,Intended to work in data visualization,Yes,Faculty Research Associate ,Data Visualization Role has same compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Exploration,Both,ggplot2/Pandas Charts;Completely custom,No,Design;Engineering,60,30,45,10,30,D3;ggplot;Other Python,I'm able to choose my own tools.,Dashboard;Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Network Diagram;Choropleth Map;Flow Diagram,Analysts;Engineers;Scientists,Intro;Moderate,Weekly,Analysis;Learning;Research,Consultative,Lack of collaboration ,Accessibility ,,,,,,Mike Bostock,Much more,male,26 - 35,USA or Canada,white,Not-for-profit
2/28/2017 7:42:25,6,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Software Engineer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Consultant,,,,,,30,10,0,10,5,D3,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Presentations,Line Chart,General Public;Analysts;Scientists,Moderate;Expert,Weekly,Summarization,Collaborative,,,,,,,,Mike Bostock,More,male,36 - 45,USA or Canada,white,Private sector
2/28/2017 9:00:02,0,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,IT,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Contractor,,,,,,1,1,0,1,1,D3,I'm able to choose my own tools.,Dynamic web page,Line Chart,Medical Professionals,Intro,Weekly,Analysis;Summarization,Collaborative,Work overload,Learning new tools,Hire a helper,Spend more time on it,"It's very difficult. ""just add a graph"" is a lie",Hire a gelper,Comparison charts of free offerings that are written by a user vs cursory reviewer,Mike Bostock,More,male,46 - 55,USA or Canada,white,Private sector
2/28/2017 18:02:12,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Data Analyst,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration;Reporting,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Excel,No,Business Analytics,10,10,10,,20,Excel;ggplot;Pandas;Other Python;KNIME,I'm able to choose my own tools.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Treemap;Flow Diagram;Heatmap,Executives,Expert,Monthly,Analysis;Summarization;Oversight and Monitoring,Consultative,Lack of open mind to new ideas from higher management,Sense of repetitiveness,Automatic the routine stuff and exploring new ideas,Exploring new tools and including more interactive data visualization,Most people don't realise the importance and beauty of the art of showing hidden trends through visualization which are otherwise not spotted easily ,Openness to ideas and exploring new tools,Spread awareness about the importance of the art of data visulaization,Mike Bostock,Same,male,26 - 35,Middle East & Africa,asian,Public sector
3/1/2017 10:59:15,2,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Research Analyst,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Research,20,0,0,10,30,Illustrator;D3;ggplot,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Choropleth Map;Raster Map;Flow Diagram,General Public;Analysts;Executives,Intro;Moderate;Expert,Weekly,Entertainment;Analysis;Summarization;Learning;Research,Collaborative,Lack of buy-in to better workflows,Lack of interest in dataviz nuances from colleagues,,More comfort contributing to opensource tools,That there were whole books and papers I had to read before I was satisfied with our organization's standard bar chart.,More collaboration.,,Mike Bostock,Same,male,26 - 35,USA or Canada,white,Not-for-profit
3/1/2017 11:37:21,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Software Engineer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Exploration,Embedded in another team,Business Intelligence Tools;General charting libraries;Completely custom,No,Engineering;IT,15,5,0,15,5,D3;Leaflet;Other Javascript;Other R;Angular,I'm able to choose my own tools.,Dashboard;Documents,Line Chart;Bar Chart;Flow Diagram,Analysts;Engineers;Scientists;Project Managers;Executives,Moderate;Expert,Weekly,Analysis;Research,Collaborative,Data Viz influences requirements- but is usually not given credence until late in the project.,Exploratory viz is difficult without constraints- and constraints are rarely given.,More professional level training made available.,Get authorization to put it in front of more people more quickly to allow iteration,Vendors do not have the answers- and often bias people against good solutions.,More time sitting with end users,More insight on the failures of real-world projects; simple pie charts are meaningless.,Mike Bostock,More,male,26 - 35,USA or Canada,white,Private sector
3/1/2017 22:10:14,6,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Research Software Engineer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration,Embedded in another team,ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Research,5,40,10,20,25,Plotly;D3;Processing;WebGL;ggplot;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Presentations;Dynamic web page?,Line Chart;Bar Chart;Treemap;Dendrogram;Network Diagram;Flow Diagram,Analysts;Engineers;Scientists;Medical Professionals,Moderate,Weekly,Analysis;Summarization;Learning;Research,Collaborative,,,,More time to do fun things! Can I clone myself?,The choices that are made with regard to spacing- shape- color- are more pronounced and thought out than they think.,More free food.,,Mike Bostock,Same,female,26 - 35,USA or Canada,hispanic,Academic
3/1/2017 23:16:22,6,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Senior Frontend Software Engineer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;General charting libraries;Completely custom,No,Design;Engineering,30,15,1,10,10,D3;Leaflet;Mapbox;WebGL;Highcharts;Other R;React;Angular;QGIS;Cytoscape,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations,Line Chart;Bar Chart;Flow Diagram;3D Chart,General Public;Analysts;Engineers;Product Managers,Moderate,Weekly,Entertainment;Analysis;Summarization;Research,Collaborative,Clarity of user issues/questions,Showing value of visualization,More time spent on data visualization!,Be more creative in visualization formats/shapes for representing different concepts,The potential of unveiling data,,Consolidation of visualization methods/tools,Mike Bostock,More,male,36 - 45,USA or Canada,white,Private sector
3/2/2017 0:57:21,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Business Process Manager,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools,No,IT,10,10,5,5,5,Excel;Tableau,I'm able to choose my own tools.,Dashboard;Scrollytelling;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Treemap;Choropleth Map;Flow Diagram,Project Managers;Executives;senior managers,Intro,Monthly,Analysis;Summarization,Consultative,Data quality is not a primary focus hence makes it hard to extract valuable info,lack of expertise,reduce the manual work via process automation,be trained better,the amount of work required to put things together,The quality of data,Show what type of data visualizations work the best for different goals/type of data,Mike Bostock,Much more,male,26 - 35,Europe,white,Private sector
3/2/2017 11:33:23,10,Other,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Principal Software Developer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Engineering,25,27.5,27.5,5,15,Excel;Tableau;Microstrategy;Power BI;Qlik;D3;WebGL;Other Javascript;ggplot;Other R;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram,General Public;Analysts;Executives,Intro;Moderate;Expert,Monthly,Analysis;Summarization;Research,Consultative,I.T. infrastructure- incomplete requirements,Incomplete requirements,Switch to an Engineering-based culture instead of a Sales-based culture,Access to modern-day I.T. infrastructure. i.e. AWS et. al.,They don't realize how manual or coding-intensive it is. i.e. D3.js,Too many things; not simply one.,Concerted effort to move 2D SVG visualizations (D3.js) to hardware accelerated or WebGL renderers.,Mike Bostock,Same,male,36 - 45,USA or Canada,white,Public sector
3/2/2017 16:26:20,5,,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Researcher ,Data Visualization Role has higher compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis,Embedded in another team,Completely custom,No,Research,30,10,10,10,40,D3;Leaflet;Other Javascript;Pandas;Other Python;Angular,I'm able to choose my own tools.,Static Web Page;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map,Engineers;Executives,Expert,Daily,Analysis,Consultative,Data visualisation is not given proper attention ,,Give myself more space and time to explore new ways of exploring data,Find more people to work with ,How it can help get new insights in the way we operate in our line of business ,Having more time for data viz,,Mike Bostock,Much more,male,36 - 45,USA or Canada,black,Public sector
3/2/2017 19:46:43,5,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Completely custom,No,Engineering;Research;IT,5,1,5,1,5,Excel;D3,I'm able to choose my own tools.,Static Web Page,Line Chart;Bar Chart,General Public;Engineers;Scientists,Moderate,Monthly,Analysis;Summarization,Collaborative,,,,,,,,Mike Bostock,Much more,male,,,,Private sector
3/4/2017 6:13:05,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Director epidemiology analytics,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Research;IT,10,20,60,5,10,Excel;D3;ggplot;Other R;Spotfire,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram,Analysts;Scientists;Medical Professionals;Product Managers;Executives,Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Collaborative,Not enough time for innovative design,Not enough time to focus on it.,More time for research,Greater ability to apply data viz for general public,Dont understand the data enough,More design thinking,More example applications,Mike Bostock,Much more,male,36 - 45,USA or Canada,,Private sector
3/5/2017 22:41:02,4,,Mostly Self-Taught,Intended to work in data visualization,Yes,PhD Student / Researcher,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Student,,,,,,15,15,10,5,10,D3;Other Javascript,I'm able to choose my own tools.,Online,Network Diagram;Chord diagram,General Public,Intro,Quarterly,Research,Consultative,I have to do other things- not just vis,Lacking javascript expertise,Have more time,More vis- less writing,It requires lots of time,More time to do vis,How to do vis with data- not just random numbers calculated,Mike Bostock,Much more,female,36 - 45,Europe,hispanic,Public sector
3/6/2017 10:00:58,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Editor,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Contractor,,,,,,10,10,40,10,30,Plotly;D3;Leaflet;Mapbox;ggplot,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Presentations,Line Chart;Bar Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map;Flow Diagram;scatterplots,publications,Moderate,Weekly,news,Consultative,money,money,getting more money out of clients- who don't see sometimes the benefits of a good viz,better adaptation of tools for reusability ,the right value of it,reusability,,Mike Bostock,More,male,26 - 35,Latin America,white,Private sector
3/6/2017 15:15:59,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Co-founder,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts;General charting libraries;Completely custom,Yes,Design;Engineering,40,10,0,10,10,D3;Other Javascript;React,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram;Choropleth Map,General Public;Analysts;Scientists,Intro;Moderate,Weekly,Analysis;Summarization;Learning;Research,Collaborative,,,,,,,,Mike Bostock,Much more,male,26 - 35,USA or Canada,white,Private sector
3/7/2017 6:07:22,1,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Front-end Developer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis,Embedded in another team,Completely custom,No,Design;Engineering,30,10,0,5,5,D3;Angular,I'm able to choose my own tools.,Dashboard,Line Chart;Bar Chart;Pie Chart,General Public,Intro;Moderate;Expert,Daily,Analysis;Summarization;Research,Consultative,,Not enough time spent doing them.,Have more people like me on he job.,,How much time it can take to implement interactive visualisations.,Extra person,,Mike Bostock,More,male,26 - 35,Europe,white,Private sector
3/7/2017 22:33:53,4,Bachelors,Mostly Self-Taught,Intended to work in data visualization,Yes,Senior Data Visualization Analyst,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;Completely custom,No,Research,20,10,10,10,50,D3;Other Javascript;React,I'm able to choose my own tools.,Dashboard;Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Network Diagram;Flow Diagram;sankey,General Public;Analysts;Executives,Moderate,Weekly,Analysis;Learning,Consultative,Bureaucracy ,The IT guys are afraid of (threatened by?) Javascript,The pace at which things get done,I'd have a small team of collaborators rather than working on visualization by myself,That Javascript and Java are two different things,Support for my going to conferences like OpenVis Conf,Thoughts on how Data Visualization complements other research/analysis roles,Mike Bostock,More,female,36 - 45,USA or Canada,white,Public sector
3/8/2017 8:33:22,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Application Developer,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Completely custom,No,Design;Engineering,10,30,5,10,5,Illustrator;Excel;D3;Processing;Leaflet;WebGL;Other Javascript;Other MVC;ArcGIS,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Network Diagram;Choropleth Map;Raster Map;3D Chart,General Public;Analysts;Project Managers;Executives,Moderate,Daily,Analysis;Summarization;Learning,Collaborative,Old technologies,Learning curves,More design- less coding,Better documentation- up-to-date samples,,More design work,More complete samples,Mike Bostock,More,male,,USA or Canada,white,Private sector
3/4/2017 0:54:47,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Developer,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Machine Learning,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Engineering,10,20,50,10,10,Tableau;Plotly;ggplot;Angular,We have a set list of tools we're expected to use for data visualization.,Dashboard;Static Web Page;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;3D Chart;VR/AR Charting,General Public;Analysts;Engineers;Scientists;Product Managers;Project Managers;Executives,Moderate,Weekly,Analysis;Summarization;Research,Consultative,Too many libraries to work with .,Too many libraries to work with,,Cheat sheet for every visualisation.,,,Provide good better and precise documentation.,Mike Bostock;Adobe,Less,male,25 or younger,Asia,asian,Private sector
3/7/2017 5:40:51,10,Other,Mostly Self-Taught,Intended to work in data visualization,No,Head of Data Visualization,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Marketing;Exploration,Embedded in another team,Completely custom,No,Engineering;Research,20,30,10,10,30,Excel;D3;Other Javascript,I'm able to choose my own tools.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Network Diagram,Analysts,Moderate;Expert,Daily,Analysis,Consultative,micromanagement by executives.,lack of understanding design processes by executives.,change supervisor.,change supervisor.,misconceptions about simplicity/complexity.,change supervisor.,debunk visualizations myths.,Mike Bostock;Alberto Cairo,More,male,36 - 45,Europe,white,
2/27/2017 13:06:06,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,CEO,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Service,Both,Completely custom,Yes,Engineering;IT,70,20,,,,Illustrator;D3;Processing;Leaflet;Other Javascript;Maps4News,I'm able to choose my own tools.,Software,Choropleth Map;Raster Map;Vector maps,Newsrooms,Intro;Moderate;Expert,Daily,Publication,Consultative,More ideas than hands,Svg limitations,,More help,How complex it really is,People start buying (online) newspapers,Feedback on what we produce,Mike Bostock;Alberto Cairo;grimwade,Same,male,46 - 55,Europe,,Private sector
3/2/2017 16:11:29,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Creative Technologist,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Engineering,40,0,0,50,10,Illustrator;Excel;D3;Processing;Leaflet;Other Javascript;ggplot;React;Angular;QGIS;Lasercutter ;3D prints;Vive,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Network Diagram;Choropleth Map;VR/AR Charting;Bubble charts;slope graphs;time lapse ,Analysts;Scientists;Product Managers;Project Managers;Executives;Clients are varied from policing to mining to medical,Moderate;Expert,Hourly,Analysis;Summarization;Learning;Research,Collaborative,I feel mostly lucky but we have a lot of non productive meetings & may have several things on the go- so can be difficult to focus.,I'm learning my craft & sometimes I feel like there isn't enough time to truly learn a lesson.,More time for research.,,That my design decisions aren't just pulled from thin air!,More mentorship,More practical online- structured courses,Mike Bostock;Alberto Cairo;Nathan Yau;Amanda Cox;NYT,Much more,male,36 - 45,Europe,white,Private sector
3/2/2017 2:59:48,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Researcher,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Intern,Analysis;Machine Learning;Summary/Overview;Exploration,Embedded in another team,ggplot2/Pandas Charts;General charting libraries;Completely custom,No,No Specific Roles,10,35,40,0,5,D3;Other Python;matplotlib,I'm able to choose my own tools.,Embedded in a tool,Line Chart;Bar Chart;Flow Diagram;3D Chart;Raster plot,Engineers;Scientists,Moderate,Weekly,Analysis;Summarization;Learning;Research,Subordinate,The amount of grunt work I have to do to be able to do my research.,Translating my ideas into code.,Having an assistant to help me.,Acquire/create better skills/tools.,How easy the basic stuff is and how hard the advanced stuff is.,The ability to have a shorter iteration period between my ideas and their manifestation.,More creation of shareable tools- if that's possible?,Mike Bostock;Bret Victor;Steven Wittens,Same,male,25 or younger,Asia,white,Private sector
2/27/2017 14:00:20,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Freelancer,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Hired to do data visualization,Contractor,,,,,,80,5,0,10,5,Plotly;D3;WebGL;Other Javascript;React,,Dashboard,Line Chart;Bar Chart;Flow Diagram;3D Chart;scatter plot;SPLOM;Sankey;parallel coordinates,Analysts;Engineers;Scientists,,,Analysis;Learning;Research,Collaborative,I wish I knew more tech & design,Working with large- established tools can be a tad mundane sometimes- when there isn't as much room (demand) for pushing the boundaries.,,More room for researchy moonshots; not as a candidate for production work- but for exploring the design space- the limits of tools and one's (or the team's) limits; yielding perhaps more exciting- engaging and effective end results in the long term.,The size of its impact on what the ultimate user experiences as value- information- engagement- fun- corporate (or other organizational) image; the constraints and goals of the design space; the dependence of datavis on an overall sensible and working approach from company strategy to service and product management to data capture and management to client marketing and user experience.,Something like Google's 20 personal project time.,I'm mostly interested in cutting edge designs and tools- esp. highly interactive (or customized/responsive) and dynamic things- as well as machine optimization for layout etc. (ie. the opposite of a D3/ggplot made- Illustrator finalized static thing); but I also liked most other topics from dataviz podcasts through Little of dataviz to slightly zany experiments from... khm... I think you know,Mike Bostock;Bret Victor;Vi Hart;Robert Munroe;Mona Chalabi;Marcin Ignac;Elijah Meeks;Irene Ros;Giorgia Lupi;Martin Wattenberg;Fernanda Viégas;Nadieh Bremer;Moritz Stefaner;Stephen Few;Robert Harris;John Burn-Murdoch;Ian Johnson;Nicky Case;Jeffrey Heer;Victor Powell;Benjamin Wiederkehr;Nicolas Belmonte;Steven Wittens;Jan Willem Tulp,Same,male,,Europe,white,Private sector
3/2/2017 10:31:51,8,,Equal Parts School and Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,Graduate Student,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Student,,,,,,30,20,10,10,30,D3;WebGL;Other Javascript;React,I'm able to choose my own tools.,Embedded in a tool,Line Chart;Bar Chart;VR/AR Charting,General Public,Intro;Moderate;Expert,Weekly,Analysis;Learning;Research,Collaborative,,,,Languages. D3/Vega are Javascript. ggplot2/tidy are R (which I dislike). None of the underlying languages are great for representing hierarchies of data/visual elements. Polaris/VizQL (Tableau) tries but is pretty bad. Really need a new language which incorporates D3 data join- tidy data- state management for interactive elements (like Elm/Redux) as fundamental concepts.,Data visualisation compounds the problems with statistics. A lot of work has to go into being sure that people's interpretation of a visualisation is in line with the underlying data.,,,Mike Bostock;Bret Victor;William Cleveland;Lane Harrison;Hadley Wickham;Steven Wittens;Lee Wilkinson;Samuel Huron,Much more,male,26 - 35,USA or Canada,white,Public sector
3/7/2017 8:57:36,8,Other,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,UI engineer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Consultant,,,,,,75,5,0,10,10,D3;Leaflet;Mapbox;WebGL;Other Javascript;React,I'm able to choose my own tools.,Dashboard,Line Chart;Bar Chart;Pie Chart;Treemap;Choropleth Map,Analysts,Moderate,Daily,Analysis;Research,Consultative,Lack of willing from stakeholders and/or users to explore new ways of using computers in their daily jobs- including new tools- technologies- interaction and visualization techniques and designs.,,Do more explorative and experimental solutions. ,,The value of pushing the limits of standard and known practices,Include more prototyping and experimentation in products across the organization and stakeholders,More about creative uses of data and visualization,Mike Bostock;Cesar Hidalgo;Santiago Ortiz;art+com,More,male,36 - 45,Latin America,white,Private sector
2/27/2017 15:46:56,10,PhD,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Manager data analysis,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,IT,10,5,30,10,20,Excel;Other BI;D3;Leaflet;ggplot,We have a set list of tools we're expected to use for data visualization.,Presentations,Line Chart;Bar Chart;Flow Diagram,General Public;Analysts;Executives,Intro,Quarterly,Summarization;Learning,Consultative,,,,,,,Combining visualization with advanced analytics (machine learning/ data mining/ statistics),Mike bostock;D3,Same,male,36 - 45,Europe,,Private sector
3/1/2017 19:52:53,10,Bachelors,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Senior Analyst-Programmer ,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Hired to do data visualization,Consultant,,,,,,40,30,5,20,5,Illustrator;Excel;Power BI;D3;WebGL;Highcharts;Other Javascript;Angular;ArcGIS,I'm able to choose my own tools.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Choropleth Map;Flow Diagram,Analysts;Product Managers;Executives,Moderate,Daily,Analysis;Summarization,Consultative,Lack of investment in R&D and modernization in enterprise.firms could do more,,Big cleanup of fake experts lol,Maybe change way IVisual handles D3.js and external libraries in Power BI Visuals,Never has been a problem for me,More Power BI Visuals flexibility with D3.js,A better communication and follow up from Microsoft team in regards to Power BI Visuals it has been poor so far,Mike Bostock;D3,More,male,46 - 55,USA or Canada,white,Private sector
3/7/2017 8:39:09,1,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,CIO,Data Visualization Role has higher compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Completely custom,Yes,Engineering;Marketing,10,20,5,5,10,Excel;D3;Other Javascript;Angular;Vega,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Flow Diagram,General Public;Analysts;Product Managers;Project Managers;Executives,Expert,Daily,Analysis;Summarization;Learning;Research,Collaborative,Not able to quickly tell a story. long period between idea and result,setting it up ,,,,Faster idea to results,more examples of complex story telling- techniques that can be employed,Mike Bostock;D3;Sebastian Gutierrez;Crossfilter,More,male,46 - 55,USA or Canada,asian,Public sector
2/28/2017 15:15:34,3,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Graphic and Web design,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Completely custom,No,Design;Engineering;Research,10,20,10,40,5,Illustrator;Excel;D3;Other Javascript;PHP,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Choropleth Map,Analysts;Engineers;Executives;Marketing;Clients,Moderate,Daily,Summarization;Research,Consultative,Creating tools (upon request) which end up forgotten and generally unused.,Requests for difficult graphs 'just to see if there's anything interesting' or that I know will be forgotten in a week,Fewer projects so I can focus more time on the quality of each.,Fewer reports/charts so I can focus more time on the quality of each.,How much work certain charts are- that they are not throw away projects.,Clear goals.,Advice on how presentation relates to communication of ideas.,Mike Bostock;Dona Wong,Same,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 16:10:41,10,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,Co Founder / Tech Director,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Summary/Overview;Communication;Marketing;Exploration,Both,Completely custom,Yes,Design;Engineering,40,5,1,40,2,Illustrator;Excel;D3;Leaflet;Mapbox;React;Vega,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Dendrogram;Network Diagram;Choropleth Map;Raster Map;Flow Diagram,General Public;Analysts;Engineers;Executives,Intro;Moderate;Expert,Hourly,Entertainment;Analysis;Summarization;Research,Collaborative,Finding talent- customers,,,,Data visualization is not a business plan,,,Mike Bostock;Tufte;Bret Victor,More,male,36 - 45,USA or Canada,white,Private sector
3/1/2017 1:17:32,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Scientist,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools;General charting libraries,No,Engineering;Research,10,50,10,0,30,Excel;Tableau;Power BI;Qlik;D3;Leaflet;Highcharts;Pandas;Other Python;Angular;Vega,I'm able to choose my own tools.,Dashboard;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Treemap,Analysts;Engineers,Moderate;Expert,Weekly,Analysis;Summarization,Consultative,Management lack of vision and understanding,Not enough time for data viz. Data Science/Engineer colleagues do not see the value of it.,Better infrastructure for faster analysis,More collaboration with design environments,The added value data viz brings.,Better prepared at selling the added value of data viz,The strategic advantages of data viz. A data viz syllabus so the knowledge is well structured and formalized.,Mike Bostock;Tufte;Bret Victor,More,male,26 - 35,Europe,white,Private sector
2/27/2017 12:51:11,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Visualization Designer,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Engineering,40,0,10,30,20,Illustrator;Excel;D3;ggplot;Other R,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Infographics;Network Diagram;Flow Diagram;Chord diagram,General Public;Analysts;Product Managers;Executives;Account managers;Marketing,Intro,Weekly,Entertainment;Analysis;Learning,Consultative,Often the quickest way to get the point across is through simple bars and lines- but I no longer get enthusiastic about building those,Mostly dashboards- while I want to do more creative stuff,Helping out the marketing team more to create one-of-a-kind creative data visualizations,Explore the more artful side,How much time it takes to think of a good design and even more how long it takes to implement- especially interactivity,More diversity- not just dashboards,"Like is now more common in UX/Web design- how can I create measurable ""factors of success"" for a data visualization? How can I show them that the visualization works and how well",Mike Bostock;Tufte;Giorgia Lupi,Same,female,26 - 35,Europe,white,Private sector
2/27/2017 20:32:25,1,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Senior Software Engineer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Product,Embedded in another team,Completely custom,No,Design;Engineering;Product Management,50,5,0,10,0,D3;Other Javascript;React,I'm able to choose my own tools.,Dashboard;Email,Bar Chart;Pie Chart;Infographics,Executives;Personnel Managers,Intro;Moderate,Daily,Analysis;Summarization,Consultative,There's a data analytics team that's supposed to be reducing our big production database into something more consumable for analytics and visualization- but there are lots of roadblocks that keep that from getting off the ground.,We're driven by Product / customer desires- and frankly they're a lot more simplistic requests than what I know I can really provide.,I actually really love working here.,I wish the importance of dataviz would be recognized to the point that they would break it off into its own center of expertise in the company.,,,,Mike Bostock;Elijah Meeks,More,male,46 - 55,USA or Canada,white,Private sector
3/8/2017 12:37:41,4,PhD,Mostly Self-Taught,Intended to work in data visualization,No,Doctoral Student,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Student,,,,,,10,20,10,50,10,Illustrator;Excel;D3;Processing;Mapbox;Other Javascript;QGIS,I'm able to choose my own tools.,Dashboard,Line Chart;Bar Chart;Infographics;Treemap;Choropleth Map,General Public;Scientists,Moderate,Monthly,Summarization;Learning,Collaborative,Finding interesting ideas that are worthwhile to pursue.,Difficulty of creating javascript visualizations.,,I'd work with a super-javascript developer who could take my ideas and make them a reality magically.,The difficulty and time-intensiveness of creating quality visualizations.,Me becoming a better programmer.,I do a lot of JS. I wish I could learn more about developing robust applications. Too often tutorials seem to end at the produced visualization. But how to create a changeable- interactive visualization- cleanly structured and coded?,Mike Bostock;Elijah Meeks;Alberto Cairo;Kim Rees;Tufte,Less,male,26 - 35,USA or Canada,white,Academic
2/27/2017 16:01:34,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom;Excel,No,Research,10,20,10,10,50,Excel;D3;Pandas;Other Python,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Treemap;Choropleth Map;Raster Map,Analysts;Project Managers;Executives,Moderate;Expert,Daily,Analysis;Summarization;Learning;Research,Consultative,Expectation of capability vs. time,d3 is so much fun but is perhaps too vast to ever 'master',take some of the pressure away and have more time to assess work,have more time- and more time to learn,I don't currently have this problem- in my previous job however- there were many people that were data illiterate and had to stare at bar charts for a couple of minutes before they could comprehend what it meant. Now if anything those I show my visualizations to know what it conveys faster than I do- despite having made it!,More colleagues that do data viz to discuss ideas with,,Mike Bostock;Elijah Meeks;Nadieh Bremer;Micah Stubbs,Much more,male,25 or younger,Europe,white,Private sector
2/27/2017 12:34:25,3,,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Consultant,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration;Product,Separate data visualization team,Business Intelligence Tools;Completely custom,No,Consulting vertical,70,20,0,50,80,Tableau;D3;Other Python,I'm able to choose my own tools.,Dashboard;Static Web Page;Email,Line Chart;Bar Chart;Infographics;Network Diagram;Choropleth Map;Grid;other types if stuff & things,General Public;Analysts;Engineers;Scientists;Medical Professionals;Product Managers;Project Managers;Executives;Lawyers;musicians,Intro;Moderate,Daily,Entertainment;Analysis;Learning;Research,Collaborative,(not) working in a team project.,Tableau,More d3,Different design esthetic,My creative process. They see early stages like a lump of clay- and it doesn't fire their imagination- like it does mine ,Mo money ,"Getting beyond the d3 syntax stuff- and into frameworks (css/html) to help build pages/dashboards. I mean lightweight stuff- not flavor of the week shit (react- angular- reflux- redux- and whatever $sexy company might be using). I mean stuff like a lightweight (no J query/minimal js) bootstrap etc. Nice to have a way to instantiate widgets and attach callbacks.
Basically-more support around the stuff that's around the svg/canvas dom element.",Mike Bostock;Elijah Meeks;Nadieh Bremer;Shirley Wu;Ian Johnson;Kai Chang;Jerome Cukier,Same,male,36 - 45,USA or Canada,multi,Private sector
2/28/2017 7:44:34,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Analytics Architect,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Engineering;Marketing;IT;sales,10,10,10,,20,Excel;Tableau;Microstrategy;D3;ggplot;Other R;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Infographics;Treemap;Dendrogram;Network Diagram;Choropleth Map;Flow Diagram,Analysts;Engineers;Product Managers;Project Managers;Executives,Intro;Moderate,Monthly,Analysis;Summarization;Learning,Collaborative,,,,,,,,Mike Bostock;Elijah Meeks;Shirley Wu;David McCandless;Tufte;Jacques Bertin,More,male,46 - 55,USA or Canada,asian,Public sector
2/27/2017 12:59:19,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Visualization Engineer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Hired to do data visualization,Full-time,Analysis;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Engineering,30,0,0,20,10,Excel;Qlik;D3;Leaflet;Mapbox;WebGL;Other Javascript;React;Angular,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page,Line Chart;Bar Chart;Pie Chart;Dendrogram;Network Diagram;Flow Diagram,Analysts;Engineers;Product Managers;Project Managers;Executives,Intro;Moderate,Daily,Analysis;Summarization,Consultative,Poor technical leadership; not enough senior developers or leadership with strong development background.,Very time consuming to get good results for custom visualizations. Have to manage time expectations.,Entirely or majority onshore development team instead of dealing with variable quality offshore developers.,Less integration with proprietary Bi tools.,They think that design can happen before getting hold of a data set.,Internet Explorer dies a quick death.,,Mike Bostock;Elijah Meeks;Susie Lu;NYT;FiveThirtyEight;Tufte,Less,male,26 - 35,Europe,white,Private sector
2/27/2017 20:07:51,6,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Product Manager,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries,No,Design;Engineering,5,0,0,10,5,Excel;D3;Mapbox;ggplot,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart,Product Managers;Executives,Moderate;Expert,Monthly,Analysis;Summarization,Subordinate,,,,,,,More discussion of workflows instead of just tools- promoting visualization for exploratory analysis instead of just presentation,Mike Bostock;Hadley Wickham,More,male,26 - 35,USA or Canada,asian,Private sector
2/28/2017 6:43:46,1,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,Yes,Data Visualization Analyst,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Marketing,Embedded in another team,Business Intelligence Tools;General charting libraries;Completely custom,No,Research,80,0,0,10,10,Excel;Tableau;D3;Other Javascript;ggplot,I'm able to choose my own tools.,Dashboard,Bar Chart;Choropleth Map,General Public;Scientists;Medical Professionals,Moderate,Monthly,Analysis;Summarization;Research,Consultative,Dealing with the IT framework of the parent organization.,Lack of clear use cases.,,,,,More about structuring/feeding data for visualizations and more about good design practices for data vis based web applications.,Mike Bostock;Hadley Wickham;Chris Viau;Tamara Munzner,Much more,male,26 - 35,USA or Canada,white,Not-for-profit
2/28/2017 12:32:08,4,Bachelors,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Visualization Designer / Developer,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Both,ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Engineering,60,10,10,10,10,Excel;D3;Leaflet;Mapbox;WebGL;Other Javascript;ggplot;React,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Presentations,Line Chart;Bar Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map;Flow Diagram,General Public;Analysts;Engineers;Product Managers,Moderate,Daily,Analysis;Summarization;Learning;Research,Consultative,blurred line between design / viz,custom code takes a long time,more interesting vis,break out of the box,,PR issues ;),how to do nonstandard vis- making better supported,Mike Bostock;Hadley Wickham;NYT,Much more,male,26 - 35,USA or Canada,white,Private sector
2/28/2017 22:33:56,5,Technical School,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Software Engineer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Marketing;Exploration,Embedded in another team,Completely custom,No,Engineering;Marketing;Data science,60,0,0,20,10,D3;Pandas;Other Python,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard,Bar Chart;Treemap;Network Diagram;Flow Diagram;Scatterplot,Analysts;Engineers,Moderate;Expert,Daily,Analysis;Learning,Collaborative,Time pressure -too much to do,Time pressure - would like to learn more.,,Spend more time making cleaner viz,Difficulty in creating viz,More devs,,Mike Bostock;Ian Johnson;Elijah Meeks;Tamara Munzner;Andy Kirk,Much more,male,56+,USA or Canada,white,Private sector
2/27/2017 17:47:33,5,PhD,Mostly Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,Postdoctoral Researcher,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Summary/Overview;Exploration;Research,Both,ggplot2/Pandas Charts;Completely custom,No,Research,20,20,20,20,20,Illustrator;D3;Leaflet;ggplot;Other R;React,I'm able to choose my own tools.,Dashboard,Line Chart;Dendrogram;Network Diagram;Choropleth Map;Raster Map,Scientists,Expert,Quarterly,Analysis;Summarization;Learning;Research,Collaborative,Lack of collaboration and interest within my university department. Need to outreach to other Institutes/centers/etc.,Data visualization is not taken seriously within scientific research. I constantly see maps- charts- etc representing results- but that are actually misleading without the explanation of the scholar having done the research.,Develop a sense of how to use images to do scientific research- and to communicate results. I am in the geography department of a major American university- but almost nobody ever makes a map. And when they do- it is more an illustration that actual content.,,They don't get how time consuming it is!,,,Mike Bostock;Jacques Bertin;Alan McConchie;Amanda Cox,Much more,,26 - 35,USA or Canada,white,Public sector
3/6/2017 20:23:24,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Partner,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Consultant,,,,,,10,10,20,20,40,Excel;Tableau;D3;Processing;ggplot;Other R;Pandas;Other Python;Vega;Visdown.amitkaps.com,I'm able to choose my own tools.,Static Web Page;Presentations,,General Public;Analysts;Engineers;Scientists,Expert,Quarterly,Analysis;Learning;Research,Consultative,Lack of simple tools,Need better process to teach,Make simple tools,Bring more design theory in it.,Inspired but Cautious,Simpler Tools,More process articles than viz critique,Mike Bostock;Jeffrey Heer;Tamara Munzner;S Anand-Gramener,Much more,male,36 - 45,Asia,asian,Private sector
2/27/2017 14:19:16,3,Bachelors,Mostly Self-Taught,Intended to work in data visualization,Yes,Senior Data Analyst,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Research;IT,20,10,30,20,20,Excel;Tableau;Other BI;D3;Mapbox;Other Javascript;ggplot;Other R;Other Python;SAP Business Objects/Design Studio,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map;Raster Map,Analysts;Engineers;Product Managers;Project Managers;Executives,Moderate;Expert,Monthly,Analysis;Summarization;Research,Consultative,The tools I use are not fully integrated with our production systems. ,Lack of action on insights.,I'd like a toolkit that's integrated with all of our data sources.,I'd like more research time.,There is a tendency for those consuming the work to be less interested in analysis and more focused on reporting- which is less insightful.,,,Mike Bostock;Kim Rees;Giorgia Lupi;Hadley Wickham;Stephen Few;Scott Murray;Nicholas Felton,Same,male,36 - 45,Europe,,Private sector
3/1/2017 14:43:07,5,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Research,30,20,20,10,20,Excel;D3;Leaflet;Mapbox;Other Javascript;ggplot;Pandas;Other Python;QGIS,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Treemap;Choropleth Map;Raster Map;Flow Diagram;Scatter plot ,General Public;Politicians,Moderate,Daily,Analysis;Summarization;Learning;Research,Consultative,Demand is so high there is not enough time to innovate.,Would like more time to broaden skill set and explore new approaches.,More time to experiment. I have lots of ideas- but only enough time to work on one or two at a time in the background.,Less friction for trying new things.,When it's done really well- the effort and thinking that goes into a visualisation is not obvious- the message just cuts straight through- so the people who benefit the most from it don't correctly value it.,More time to experiment.,Actually the community is pretty great at the thing I really value- which is knowledge sharing.,Mike Bostock;Lynn Cherny;Andy Kirk,Much more,male,36 - 45,Europe,white,Public sector
3/1/2017 20:01:14,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Marketing;Research,10,20,20,0,20,D3;WebGL;ggplot;Other R,We have a set list of tools we're expected to use for data visualization.,Documents;Presentations;Email,Line Chart;Bar Chart;Dendrogram;Choropleth Map;Flow Diagram,Analysts;Engineers;Scientists;Project Managers;Executives,Intro;Moderate;Expert,Monthly,Entertainment;Analysis;Summarization;Learning;Research,Consultative,,,more opportunity for experimenting with webGL and D3,,,more fulfilling client work,,Mike Bostock;Martin Wattenberg;Fernanda Viégas,More,male,36 - 45,,,Private sector
3/1/2017 15:17:33,3,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Owner,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Hired to do data visualization,Consultant,,,,,,25,10,5,15,5,D3;Leaflet;Mapbox;WebGL;Other Javascript;Pandas;Other Python;Vega;QGIS,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Email,Line Chart;Bar Chart;Network Diagram;Choropleth Map;VR/AR Charting,Engineers;Product Managers;Executives,Intro,,Analysis;Summarization;Research,Collaborative,not enough time,Trade iff between time- simplicity and usefulness,More research time,Stop coding them,,,business use cases over news/entertainment,Mike Bostock;Moritz Stefaner;Elijah Meeks,Same,male,26 - 35,Asia,,Private sector
2/28/2017 0:13:16,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Research,10,40,20,2,10,D3;ggplot;Other R;Angular,I'm able to choose my own tools.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Network Diagram;Choropleth Map,Analysts;Engineers;Scientists;Project Managers;Executives,Intro;Moderate;Expert,Daily,Analysis;Summarization;Research,Collaborative,Access to data,Lack of best practicus fior data viz reusable components in MVC,More vis- less data curation,More web dev support,Subconcious details do make a difference,Web dev support,Design- web dev best practices,Mike Bostock;Nadieh Bremer,More,male,26 - 35,Europe,white,Private sector
3/7/2017 13:17:23,1,Bachelors,Mostly Self-Taught,Intended to work in data visualization,Yes,Full Stack Developer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing,Embedded in another team,Business Intelligence Tools;Completely custom,Yes,Design;IT,40,0,0,20,0,Excel;D3,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Infographics,Engineers,Expert,Weekly,Analysis,Consultative,Lack of long term vision,Personal lack of skill,More input into decisions about company direction,Learn more of the fundamentals,How long it takes ,Do more skills training as part of the job,,Mike Bostock;Nadieh Bremer,More,male,26 - 35,Oceania,white,Private sector
2/27/2017 20:19:47,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Director Data Visualization,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Marketing;Exploration,Both,Business Intelligence Tools;General charting libraries;Completely custom,No,Design;Marketing,40,50,5,15,,Tableau;Microstrategy;D3;Other Javascript;React;Angular,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Presentations,Line Chart;Bar Chart;Treemap;Choropleth Map;Flow Diagram,General Public;Analysts;Product Managers;Executives,Intro;Moderate;Expert,Monthly,Analysis;Summarization;Learning;Research,Consultative,Lack of help from other teams,Lack of understanding of impact good viz practices can have on deliverables,More vizzing!!!!',Easier capability to whatever tool I want depending on requirements ,Impact that good viz practices have on quality and useability of deliverables,More vizzing!!!!,How to leverage an array of tools from BI to custom to create a suite of deliverable types my team can build,Mike Bostock;Nadieh Bremer;Anya A'Hearn;Alberto Cairo;Nathan Yau;538;Polygraph;Periscopic,Much more,male,26 - 35,USA or Canada,white,Public sector
2/27/2017 12:33:16,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Visualization Engineer,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;General charting libraries;Completely custom,No,Engineering,20,30,0,40,10,Tableau;D3;Highcharts;Recharts;Other Javascript;React,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations;Email,Line Chart;Bar Chart;Choropleth Map;Flow Diagram;Heat Map,Analysts;Engineers;Project Managers;Executives,Moderate;Expert,Weekly,Analysis;Summarization,Subordinate,Data prep takes a long time,garbage in- garbage out,Higher data quality & pipeline building,More interesting charting types,Charting types outside of line/bar charts,more data engineering support,,Mike Bostock;Nadieh Bremer;Elijah Meeks,Much more,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 14:21:11,1,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Electronics Engineer,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Contractor,,,,,,20,10,30,10,30,D3;ggplot;Other R,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents,Line Chart;Treemap;Network Diagram;Choropleth Map,General Public;Analysts;Engineers;Scientists,Moderate,Quarterly,Analysis;Summarization,Subordinate,People thinks is like making excel chart,Learning curve of languajes,,,Little differences ha make a chart communicate,,time they spend and how the put cost to creations,Mike Bostock;Nathan Yau,Much more,male,36 - 45,Latin America,,Public sector
3/1/2017 11:00:43,7,Bachelors,Mostly Self-Taught,Intended to work in data visualization,Yes,Software Developer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Summary/Overview;Exploration,Embedded in another team,Completely custom,No,Design;Engineering,50,10,0,20,20,D3;Other Javascript;Other Python;React;Custom Go,I'm able to choose my own tools.,Embedded in a tool;Dashboard,Line Chart;Network Diagram,General Public;Engineers;Product Managers;Project Managers;Executives,Intro;Moderate,Daily,Analysis;Summarization,Subordinate,The indecisiveness. We jump too quickly from one goal to another. Leads to burnout pretty easily.,Expectations versus time provided. Aging visualization infrastructure needs quite a bit of work- is given medium-high priority- but no time.,Transparency and explanations for the shifting- which would help. Also- just being able to have a clear roadmap would be nice.,More time to fix tech debt and a clear vision of where we want to go in terms of managing all the data we do have.,It's under-appreciated. The visualizations are there to draw in customers and provide at-a-glance monitoring for those using the product- but it's treated only as a flashy add-on.,Documentation. Holy moly- we need more documentation.,More advice in general. The leaders feel unapproachable- especially if one isn't a pro.,Mike Bostock;Nathan Yau,Much more,other,26 - 35,USA or Canada,multi,Public sector
2/28/2017 18:21:52,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Consultant,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Consultant,,,,,,1,,,,,Excel;D3,I'm able to choose my own tools.,Dashboard;Static Web Page,Bar Chart;Infographics;Network Diagram,General Public,Intro,Monthly,News,Subordinate,Mobile reaponsiveness,,,,,,,Mike Bostock;Nathan Yau;Tufte,Much more,female,26 - 35,Asia,asian,Private sector
3/2/2017 8:31:28,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Data and Technology Director,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Communication;Marketing;Exploration,Separate data visualization team,Business Intelligence Tools;ggplot2/Pandas Charts,Yes,IT,20,10,10,10,50,Illustrator;Excel;Tableau;Leaflet;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations;Email,Bar Chart;Pie Chart;Choropleth Map;Raster Map,Analysts;Product Managers;Project Managers;Executives;customers,Intro,Weekly,Analysis;Summarization;Learning;Research;business development,Subordinate,Dealing with misunderstandings of the data,being under valued in the level of time and energy it takes to create quality visuals,compensation,timelines,How hard it is,trust level,increased doc is helpful- tutorials are great,Mike Bostock;Nathan Yau;Giorgia Lupi;Stefanie Posavec,Much more,male,26 - 35,USA or Canada,white,Not-for-profit
3/2/2017 10:22:55,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Senior Analyst,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,IT,15,0,5,5,40,Excel;D3;Other Javascript,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Presentations;Email,Line Chart;Bar Chart;Network Diagram;Choropleth Map,General Public;Analysts;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Weekly,Entertainment;Analysis;Summarization;Learning;Research,Consultative,Cleaning Data,Lack of flexibility in tools,More freedom to produce visualizations with different tools,,They underestimate the amount of effort that goes into a good visualization,Make my role a dedicated data viz position,how to make a case for a dedicated data viz position- and what those positions look like,Mike Bostock;Nathan Yau;Kaiser Fung,More,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 12:25:50,4,PhD,Mostly Self-Taught,Intended to work in data visualization,Yes,Cartographer / Journalist / Programmer,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Consultant,,,,,,10,10,10,5,5,D3;Leaflet;Other Python;csvkit;gensim,I'm able to choose my own tools.,Static Web Page;print :),Infographics;Network Diagram;Choropleth Map,General Public;Scientists,Moderate;Expert,,Entertainment;Learning;Research,Consultative,Poor money and menial tasks,Not doing enough,More interesting stuff,Get better at visual esthetics,How hard it is,Grants for public interest research (software and contents),Methodology issues,Mike Bostock;Otto Neurath;Marie Neurath;Jacques Bertin,Much more,male,46 - 55,Europe,,Mixed
2/28/2017 14:12:45,6,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Software Developer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Modeling;Research,Both,General charting libraries;Completely custom,No,IT,55,50,50,50,50,Excel;D3;Leaflet;Mapbox;Other Javascript;Other MVC;ArcGIS;SQL Server,I'm able to choose my own tools.,Embedded in a tool;Web apps: ASP.NET MVC,Line Chart;Bar Chart;Pie Chart;Choropleth Map;Raster Map;3D Chart;Real time maps,General Public;Analysts;Engineers;Scientists;Executives;Govt funding agencies,Moderate;Expert,Weekly,Analysis;Research;Decision-making,Consultative,Lack of proper Q&A forums for the data visualization sources I'm using.,,Have more time to do MY OWN project (e.g.- mobile apps) instead of client's,Faster processing for large amount of data; but that's technology limitation.,I don't care; they love it whenever it's done; it gets a lot of funding offers.,Better Forum venue; so I can ask someone when I run into trouble. The developers seem to use Twitter- which isn't ideal. Something like the Microsoft developers' network would be nice.,,Mike Bostock;Rich Donohue,Much more,female,,USA or Canada,,Public sector
2/27/2017 15:34:02,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Software Engineer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Summary/Overview;Communication,Both,Completely custom,No,Engineering,60,10,10,10,10,D3;Other Javascript,I'm able to choose my own tools.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Treemap;Network Diagram;Heatmap,General Public;Engineers,Expert,Hourly,Analysis;Summarization,Consultative,,Slow development. A lot of code for little output.,,,The amount of data manipulation- planning- and coding it takes to produce a custom visualization.,More people with data visualization experience,,Mike Bostock;Stephen Few,Same,male,26 - 35,USA or Canada,white,Private sector
3/2/2017 13:40:21,4,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,HCI Specialist,Data Visualization Role has same compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools;General charting libraries,No,IT,40,10,,10,40,Tableau,We have a set list of tools we're expected to use for data visualization.,Dashboard;Scrollytelling,Line Chart;Bar Chart;Pie Chart;Treemap;Choropleth Map;Flow Diagram,General Public;Analysts;Project Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis,Collaborative,Resistance to data viz in some parts of the university,People insisting on tables,,,,,,Mike Bostock;Tableau Zen Masters,Same,male,36 - 45,USA or Canada,white,Public sector
3/2/2017 3:37:53,10,PhD,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Data Visualization Consultant,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Consultant,,,,,,50,2,3,25,20,D3;Other Javascript;React,I'm able to choose my own tools.,Dashboard;Static Web Page,Line Chart;Bar Chart;Pie Chart;Choropleth Map;Heatmap,General Public;Analysts;Engineers;Project Managers;Executives;Researchers,Moderate,Weekly,Entertainment;Analysis;Summarization;Learning;Research,Collaborative,Non visualization tasks.,Lack of support with front end and back end work.,All Open Source,All Open Source,It's not trivial.,All Open Source,Higher level tools for collaborative interactive datavis design and construction.,Mike Bostock;Tamara Munzner;Jeffrey Heer,Much more,male,26 - 35,Asia,,Private sector
2/27/2017 15:16:03,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,GIS Programmer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Summary/Overview;Communication;Exploration,Embedded in another team,Completely custom,No,Engineering,50,50,,,,D3;Leaflet;Mapbox;Other Javascript;React,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page,Line Chart;Bar Chart;Pie Chart;Choropleth Map;Raster Map,General Public;Analysts;Scientists;Project Managers;Government officials,Expert,Daily,Analysis;Summarization;Learning;Research,Consultative,Fragile APIs,D3 can be tough. Keeping up with new technologies,Larger team,More for experimenting with unusual visualizations ,Non coders don't appreciate how these visualizations are actually made,Never touching visual studio again ,D3 and other visualization library integration with modern front end technologies ,Mike Bostock;Tom Macwright;Vladimir Agafonkin,Much more,male,26 - 35,USA or Canada,white,Academic
3/7/2017 0:09:35,7,PhD,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Design;Marketing;Research;IT,20,0,60,10,10,Illustrator;D3;WebGL;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map;Parallel coordinates;Radviz;SPLOMs,Analysts;Product Managers;Executives,Moderate,Daily,Analysis;Summarization;Research,Consultative,Data visualization is not taken seriously.,Basic techniques work the best. Advanced techniques have little practical purpose since no-one will understand them without a narrative.,Taking data vis more seriously.,,That it's more than making pretty pictures.,,,Min Chen,More,male,26 - 35,Europe,white,Private sector
2/27/2017 22:27:43,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Developer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Exploration,Separate data visualization team,Completely custom,No,Design;Engineering,80,0,0,10,10,D3;Processing;Leaflet;Mapbox;React,I'm able to choose my own tools.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Network Diagram;Flow Diagram;VR/AR Charting,Engineers;Scientists;Product Managers;Executives,Moderate,Weekly,Analysis;Summarization;Learning,Collaborative,The lack of time to build the visualization ,Explaining the designers on certain limitations due to the data,,,Still a lot of people are very naive when they hear about data visualization and feels only bar charts and pie charts are data visualizations,As a developer would love to be a part of the design process- I would be able to contribute during the initial stages,Anything to everything related to design and development ,Moritz Stefaner,Much more,male,26 - 35,Asia,asian,Private sector
2/28/2017 1:09:09,10,PhD,Equal Parts School and Self-Taught,Intended to work in data visualization,Yes,Freelancer,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Contractor,,,,,,10,60,10,5,15,Excel;Tableau;D3;Mapbox;WebGL;Other Javascript;React,I'm able to choose my own tools.,Static Web Page,Line Chart;Bar Chart;Network Diagram;Raster Map;Scatter plot;particles,General Public,Intro,Yearly,Entertainment;Learning,Consultative,freelance isolation,too much engineering for too little chart,more job security,quicker charts- less programming,how good it is (should work on my self esteem),a local freelancer collective maybe?,more focus on real-world problems- less hype- more honesty about the complicity of datavis in hyping the 'big data will solve everything' narrative,Moritz Stefaner,More,male,26 - 35,Europe,white,Private sector
3/2/2017 13:08:11,7,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,CEO,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Both,Completely custom,Yes,Design;Engineering;IT,50,0,0,20,10,Excel;D3;Processing;Leaflet;Mapbox;WebGL;Other Javascript;React,I'm able to choose my own tools.,Dashboard;Scrollytelling,Line Chart;Bar Chart;Pie Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map;Flow Diagram;3D Chart,General Public;Analysts;Scientists;Executives,Moderate,Weekly,Entertainment;Analysis;Summarization;Learning;Research,Collaborative,Not enough time for all I want/have to do,Not enough skill to code by myslef,,,,more time,sharing good practices,Moritz Stefaner,Much more,female,26 - 35,Europe,,Private sector
3/2/2017 21:09:41,10,Bachelors,Equal Parts School and Self-Taught,Intended to work in data visualization,Yes,Data Visualisation Specialist,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Machine Learning;Communication;Marketing;Exploration;Tools,Separate data visualization team,General charting libraries;Completely custom,Yes,Design;Engineering,5,0,0,90,5,Excel;D3;Leaflet;Mapbox;Other Javascript;React;QGIS,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations,Choropleth Map;Custom,General Public;Analysts,Intro;Moderate;Expert,Daily,Analysis;Summarization;Learning;Research,Consultative,Awareness/understanding of what datavis is,,,,,,,Moritz Stefaner,Much more,female,,,,Private sector
2/27/2017 13:02:42,4,Other,Mostly Self-Taught,Intended to work in data visualization,Yes,Data Scientist,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Analytics,20,30,10,10,30,Tableau;Other BI;D3;ggplot;Shiny,I'm able to choose my own tools.,Dashboard;Scrollytelling;Presentations,Line Chart;Bar Chart;Treemap;Network Diagram;Choropleth Map;Flow Diagram,Analysts;Engineers;Product Managers;Executives,Moderate,Daily,Analysis;Summarization;Learning,Consultative,Data access,Uphill battle to grow team,More time doing design/viz,Have more freedom to experiment ,"Stuck in ways and ""just want to see the data"" or claim ""I'm not an analyst""",Less meetings. More work. ,Continue to share and lead,Moritz Stefaner;David McCandless;Andy Kirk,More,male,26 - 35,,,Private sector
3/1/2017 21:22:33,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Visualization Specialist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Consultant,,,,,,10,10,10,5,5,Plotly;Other BI;D3;Other Javascript;ggplot;Other R;Other Python;Java;Vega;Gephi;Spotfire,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Treemap;Dendrogram;Network Diagram;Scatter Plot,General Public;Scientists;Product Managers,Moderate;Expert,Weekly,Analysis;Research,Consultative,Not enough datavis,Not enough time,Less non-datavis work,,Aesthetics are more important that functionality,More time for datavis,Evidence-based analysis and critique of visualization techniques,Moritz Stefaner;Enrico Bertini;Martin Wattenberg;Robert Kosara;Stephen Few;Tufte;Alberto Cairo;Jeffrey Heer;Mike Bostock;Andy Kirk;Kaiser Fung,More,male,46 - 55,Oceania,white,Private sector
2/27/2017 12:55:16,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,CEO Head of Visualization,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Communication;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,Yes,Design;Engineering;Research;strategy,50,0,0,5,0,Excel;Tableau;Processing,I'm able to choose my own tools.,Static Web Page;Documents;Presentations;native applications;installations,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram;Choropleth Map;Raster Map;Flow Diagram;too many to recall,General Public;Analysts;Scientists;Executives;policymakers,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Consultative,hard to work on different subject matter all the time / getting up to speed with domain experts,not having enough time,have unlimited funding,I wish I could understand R,,money,,Moritz Stefaner;Giorgia Lupi;Stefanie Posavec;Eric Rodenbeck;Robert Kosara;Wes Grubbs;Andy Kirk;Fernanda Viégas;Martin Wattenberg,More,female,46 - 55,USA or Canada,white,Private sector
2/27/2017 12:46:31,6,Bachelors,Mostly Self-Taught,Intended to work in data visualization,Yes,Data Experience Designer,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Contractor,,,,,,90,90,90,90,90,Illustrator;Excel;Tableau;D3;Processing;WebGL;Other Javascript;Pandas;Other Python;React,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page,Line Chart;Bar Chart;Infographics;Treemap;Dendrogram;Network Diagram;Flow Diagram,General Public;Analysts;Engineers;Scientists;Product Managers;Project Managers;Executives;Marketing;Magazines,Intro;Moderate;Expert,Weekly,Entertainment;Analysis;Summarization;Learning;Research,Consultative,don't really have any- but doing administration is not my favorite activity,,even better balance between client work and personal projects,luxury problem I guess: an even better balance between client work and personal projects (too many (project) ideas),,,case descriptions- process descriptions- behind the scenes look etc. are always best,Moritz Stefaner;Jer Thorp,More,male,36 - 45,Europe,white,Private sector
2/28/2017 0:58:52,8,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Associate Professor,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Communication;Teaching;Research,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom;Network Visualization;Graphics,No,Research;Teaching,20,15,15,0,5,Excel;Gephi;vosviewer,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Network Diagram,General Public;Executives;Students;researcherd,Intro;Moderate,Weekly,Analysis;Learning;Research,Subordinate,Not enough time to learn,I can't use great libs because no time to learn,More freedom to explore domains outside of the scope of my industry,I'd make javascript a robust language,That it takes time- especially web based,,,Moritz Stefaner;Lynn Cherny;Jan Willem Tulp,More,male,36 - 45,Europe,white,Not-for-profit
2/27/2017 12:56:09,2,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Consultant,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Consultant,,,,,,20,0,20,20,40,Illustrator;Plotly;D3;ggplot;Pandas,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Infographics;Network Diagram;Choropleth Map,Executives;Clients,Intro,Weekly,Analysis;Summarization;Learning;Research,Consultative,Data prep,,More viz- less prep,More time to learn other tools,That it involves a great many choices.,,Better networking opportunities to interact with other data viz professionals.,Nadieh Bremer,Much more,female,46 - 55,USA or Canada,white,Private sector
2/27/2017 13:14:25,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Self-Employed Website Designer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Contractor,,,,,,0,0,0,55,0,D3;Other Javascript;Sketch.app,I'm able to choose my own tools.,Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart,Education clients,Moderate,Yearly,Analysis;Summarization;Learning;Fundraising,Consultative,,,,,,,,Nadieh Bremer,Much more,male,36 - 45,USA or Canada,white,Private sector
2/27/2017 13:46:09,4,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,Freelance Data Visualization Engineer,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Contractor,,,,,,,,,,,D3;ggplot;google spreadsheets,I'm able to choose my own tools.,on websites,Bar Chart;Dendrogram;scatterplot;matrix,General Public;Analysts;Engineers;Scientists,Moderate;Expert,Weekly,Entertainment;Analysis,Collaborative,,Finding organizations big enough to have a team of data vis pepole,,,,,more on meaningful exploratory visualizations (where immediate interpretation is not the most important thing),Nadieh Bremer,More,,,,,
2/27/2017 14:08:34,3,Bachelors,Mostly Self-Taught,Intended to work in data visualization,Yes,Data Visualizer (freelancer),Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Other,Analysis;Communication;Marketing,Both,Completely custom,Don't Know,I'm a freelancer,80,2,2,6,10,D3;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Network Diagram;Scatterplot;radar chart;chord diagram,General Public;Analysts,Intro;Moderate,Monthly,Analysis;Summarization,Consultative,,,More time for the design part- with real data ,,,My skills improvement,Design and technical inspiration. ,Nadieh Bremer,Same,female,36 - 45,Europe,white,Mixed
2/27/2017 20:33:58,3,,Equal Parts School and Self-Taught,Intended to work in data visualization,Yes,Digital Storyteller,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Contractor,,,,,,40,20,5,10,25,Illustrator;Excel;Tableau;Plotly;D3;Leaflet;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Infographics;Choropleth Map;Raster Map,General Public;Analysts;Engineers;Product Managers;Project Managers;Executives,Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Collaborative,Time,My own lack of ability,Compensation,Size of audience,How long it takes,More realistic deadlines,Skill tutorials,Nadieh Bremer,Much more,male,26 - 35,USA or Canada,white,Not-for-profit
2/28/2017 1:09:56,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Lead BI Developer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Communication,Separate data visualization team,Business Intelligence Tools;Completely custom,Don't Know,Marketing;BI,20,20,10,10,5,Excel;Power BI;Qlik;D3,I'm able to choose my own tools.,Dashboard;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Choropleth Map;Flow Diagram;3D Chart,Analysts;Executives,Moderate;Expert,Daily,Analysis;Summarization;Learning,Collaborative,,,,,,Time!,,Nadieh Bremer,Same,male,36 - 45,Europe,white,Private sector
2/28/2017 1:56:13,1,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,Yes,Data Analyst,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Sales,Embedded in another team,Business Intelligence Tools;Graphics,No,Research,30,10,20,30,10,Illustrator;Excel;Tableau;D3;Processing;ggplot;Vega,I'm able to choose my own tools.,Static Web Page;Documents,Line Chart;Bar Chart;Pie Chart;Infographics,Product Managers;Project Managers;Clients,Intro;Moderate,Daily,Analysis;Research,Consultative,Lack of appreciation- and therefore- training for high-level data vis,I have to do everything myself. People not understanding data vis.,Show my data vis to senior mangament,Learn more custom code. Make the process as quick as possible,Time needed to construct the right visualisation,More time and resources for learning,How to do quantitative analysis as well as design - together,Nadieh Bremer,Much more,male,25 or younger,Europe,asian,Private sector
3/1/2017 12:42:49,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Technical Project Officer,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,General charting libraries;Completely custom;Graphics,No,Engineering;Research;IT;Business,2,30,0,5,20,Excel;Other BI;D3;Other Javascript,We have a set list of tools we're expected to use for data visualization.,Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Infographics;Flow Diagram,General Public;Analysts;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Daily,Analysis;Summarization;Learning;Research,Subordinate,We don't know the data from a functional point if view,Not having easy to use tools to build the visualisation.,Better clients,More skills to finish them properly,The importance of beauth,Better position in the hierarchy,More technically detailed blogposts,Nadieh Bremer,Much more,male,26 - 35,Europe,white,Public sector
3/7/2017 10:47:00,0,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Consultant,,,,,,10,0,40,10,40,Excel;Power BI,I'm able to choose my own tools.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap,General Public;Executives,Intro,Monthly,Analysis;Summarization;Research,Consultative,Data quality,Data quality,Better overall understanding of how data should be handled,More time spend on actual analysis and visualization,Structure and quality of data,,Creative ideas,Nadieh Bremer,More,male,25 or younger,Europe,,Private sector
3/1/2017 8:08:11,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Lecturer,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Teaching;Research,Embedded in another team,ggplot2/Pandas Charts;Completely custom,No,Design;IT,30,0,30,20,20,D3;Leaflet;ggplot;Other R;Pandas,I'm able to choose my own tools.,Static Web Page;Presentations,Line Chart;Bar Chart;Treemap;Network Diagram;Choropleth Map;Flow Diagram,General Public;Students,Intro;Moderate,Weekly,Entertainment;Learning,Collaborative,The logistics of running courses often eat up more time than developing content.,I don't have enough time to build involved projects (quarters are short).,More time to develop robust/thoughtful/impactful work (though this will come with experience),Easier to find more impactful datasets to work with.,The blend of design and development,More time to develop involved projects.,A larger focus on visualizing socially relevant data -- less time spent building widgets that are beautiful/funny/intriguing but detached from the current political context.,Nadieh Bremer;Jim Vallandingham;Mike Bostock;Hadley Wickham,More,male,26 - 35,USA or Canada,white,Public sector
2/28/2017 6:42:30,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Visualization Manager,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Engineering;Marketing;Research,60,5,0,10,10,Tableau;D3;Mapbox;Other Javascript;ggplot;Pandas;React;Angular,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram;Choropleth Map;Flow Diagram,Analysts;Executives,Intro;Moderate,Weekly,Analysis;Summarization;Learning;Research,Consultative,Lack of other people doing visualization,Poor understanding of technologies and applications- improper infrastructure,Have access to more training- best practices ,Work on a team of visualizers versus alone,Difficulty in massaging data for use ,Understand the different tools for data visualization by larger entities ,Moving from beginning to intermediate,Nadieh Bremer;Mike Bostock;Mona Chalabi,Less,female,26 - 35,USA or Canada,asian,Private sector
3/2/2017 14:47:54,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Senior Improvement Analyst,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Excel,No,Decision Support,25,0,25,0,50,Excel;Tableau;ggplot;Other R;Excel,I'm able to choose my own tools.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Choropleth Map;slopechart;condegram,Analysts;Medical Professionals;Project Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization,Consultative,Spending too much time preparing unnecessary- unused reports.,Not being able to install/update programs on my computer (eg. RStudio),Less time doing repetitive- unnecessary reports. More time optimizing current systems & exploring data. Move away from paper-based culture.,Move towards digital & interactive visualizations rather than flat PDFs & PowerPoint.,It takes time! I don't press a magic button to produce visualizations.,,Data visualization for hospital & healthcare professionals,Nadieh Bremer;Nathan Yau;Shirley Wu;Mona Chalabi,More,female,26 - 35,USA or Canada,white,Public sector
2/27/2017 12:25:33,4,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Engineer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Engineering;Research,5,50,45,0,,Illustrator;Tableau;D3;ggplot;Pandas,I'm able to choose my own tools.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Flow Diagram;Heatmaps,General Public;Analysts;Engineers;Project Managers;Executives,Moderate,Daily,Analysis;Summarization;Decision making,Consultative,My lack of bandwidth to work on the various projects ,I wish I had more time for it,More technical mentorship,More customized to our problem spaces ,That it could be better if I had more time for it,If I were smarter,More things like Nadieh and Shirley are doing with explaining the development process ,Nadieh Bremer;Shirley Wu;Ian Johnson;Elijah Meeks;Philippe Rivière,Much more,male,26 - 35,USA or Canada,white,Private sector
3/2/2017 11:39:47,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Head - Desk & Production,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Communication,Separate data visualization team,Business Intelligence Tools,No,Design;Research,20,10,10,5,15,Excel;Tableau,I'm able to choose my own tools.,Embedded in a tool,Line Chart;Bar Chart;Pie Chart;Infographics;Flow Diagram;3D Chart,General Public,Moderate,Daily,Learning;Research,Consultative,Not enough people focussed on data prep.,Requirements are often vague.,,Get into more tools and languages,What's possible- what's not.,,What technologies to adopt.,Nate Silver,Less,male,26 - 35,Asia,asian,Not-for-profit
2/27/2017 19:42:51,2,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,Yes,Data Specialist,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Separate data visualization team,ggplot2/Pandas Charts;Completely custom,Yes,Engineering,30,,10,10,50,Excel;Plotly;ggplot;Other R;Pandas,I'm able to choose my own tools.,Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Network Diagram,Project Managers;Executives,Intro;Moderate,Quarterly,Learning,Consultative,Sole analyst on the team so managing work flow,Lots of bespoke work,I'd standardize things more,More time to do it,How much time it takes to do certain tweaks,Agile throughout the org,,Nathan Yau,Much more,female,26 - 35,USA or Canada,hispanic,Not-for-profit
2/27/2017 19:54:56,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Co-founder,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,ggplot2/Pandas Charts;Completely custom,Yes,Design;Research,10,60,80,10,10,Plotly;D3;Leaflet;Pandas;Other Python;React,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Dendrogram;Choropleth Map;Flow Diagram,General Public;Analysts;Executives,Intro;Moderate,Weekly,Analysis;Summarization;Learning;Research,Consultative,,,,,,,,Nathan Yau,More,male,25 or younger,USA or Canada,,Private sector
2/28/2017 20:23:39,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Project Coordinator,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Contractor,,,,,,20,0,5,20,10,Illustrator;Tableau;Plotly;ggplot;Other R;ArcGIS;Other GIS,I'm able to choose my own tools.,Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map;Raster Map;Flow Diagram,General Public;Analysts;Product Managers;Project Managers;Executives,Intro;Moderate,Weekly,Analysis;Summarization;Research,Subordinate,Pay,Projects are often too simple and one-off- not enough time to develop engaging long form dataviz,More emphasis on dataviz,More interactive elements,The benefit gained from investing more time/resources into dataviz,Currently a student- I need a full time position to develop better products,Pushing the importance of data visualizations to consulting companies,Nathan Yau,Much more,male,25 or younger,USA or Canada,white,Not-for-profit
3/1/2017 11:19:45,1,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Mathematical Statistician,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Summary/Overview;Communication;Marketing,Both,Business Intelligence Tools;General charting libraries;Completely custom,No,Design;Marketing;Research;IT,0,0,80,0,0,Excel;Tableau;ggplot;Other R;ArcGIS;SAS VI,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics,General Public,Intro;Moderate;Expert,Monthly,Entertainment;Analysis;Summarization;Learning,Subordinate,Repetitive nature of job,I mostly work in verifying the visualization. Difficulty in conveying statistical uncertainty.,Job is a good one- but after 10 years I am ready for a change.,Ability to do more of it.,Some upper management do not realize that good visualization cannot be done with cookie cutter solutions. They are often unique or mostly custom made. This makes implementing them into the regular data dissemination chain challenging.,,,Nathan Yau,Much more,male,36 - 45,USA or Canada,white,Public sector
3/1/2017 12:35:31,1,Bachelors,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Operations Analyst,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Both,Business Intelligence Tools,No,IT,20,30,10,0,40,Tableau;Pandas;Other Python,We have a set list of tools we're expected to use for data visualization.,Presentations,Line Chart;Bar Chart;Pie Chart;Choropleth Map,General Public;Project Managers;Executives,Intro,Weekly,Analysis;Summarization,Consultative,My organization is very set in its ways and unwilling to try or learn new things (even if it improves our projects),Lack of freedom in visualizations (not allowed to use anything more complicated than a table or choropleth at most times),I would like to do more data science (machine learning- EDA- etc.),I would make more explanatory data visualizations and add more interactivity (eg with D3.js),That it's just as important to make a memorable data visualization as it is to make a table summarizing the data.,If my team was more willing to train themselves in data science,How data visualizations can lead to actionable results,Nathan Yau,More,female,25 or younger,USA or Canada,asian,Private sector
3/1/2017 14:00:07,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Director of Research,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Completely custom,No,Research,5,2,2,2,10,Excel,We have a set list of tools we're expected to use for data visualization.,Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics,General Public;Analysts;Project Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Consultative,Boss doesn't have time for Research,lack of tools,Report to a different person in the org,more tools,you can't make a pie chart without numbers just for the graphic (no- i'm not joking),tableau,excel tips,Nathan Yau,More,female,26 - 35,USA or Canada,white,Private sector
3/1/2017 15:30:05,2,PhD,Mostly Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,Retired,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Other,Analysis;Communication;Exploration,Both,General charting libraries,Don't Know,Research,10,0,1,5,20,Excel;Leaflet,I'm able to choose my own tools.,Static Web Page;Documents;Presentations;Email,Line Chart,General Public;socioloists;anthropologists,Intro;Expert,Yearly,Learning,Consultative,My skill is too rudimentary for my vision.,My colleagues are so steeped in text with tables presentations- and don;t yearn fo more visual approaches.,An expert data visualizer would be brought onto the team.,I would get really solid training before continuing with a new project.,That many people are more visully oriented than text oriented. We need BOTH media to commnuicate effectively to larger audiences.,Education,Educational opportunities concentration on data visualization for young people inside and outside of schools,Nathan Yau,More,female,56+,USA or Canada,white,Private sector
3/1/2017 16:25:27,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Business Architect,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,IT;ad hoc;tends to hang off analysis and strategy roles,5,5,5,5,5,Excel,I'm able to choose my own tools.,Documents;Presentations;Email;In the process of implementing a tool with an interactive portal,Line Chart;Bar Chart;Pie Chart;Infographics;Network Diagram;Flow Diagram,Analysts;Engineers;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Consultative,organisation not mature enough to value/exploit benefits of decent data management and subsequent strategic planning,ability to collate / record / access the good data,higher level of influence over strategic planning,more control over information management function,what you need as a base to get the best results,heh- org-wide agreement on data management and the will to follow through but that's a long-term culture change and not a job-specific fix. the one change that will make my job better is the enterprise architecture tool we're implementing that will act as repository for my most critical data and will also do a lot of the data vis that I have to crib together right now.,Loving the discussions about the quality / usefulness of various different types of visualisations- really appreciate seeing new ways to represent / communicate data- and the discussions of various tools are great too,Nathan Yau,More,Other,36 - 45,Oceania,white,Public sector
3/1/2017 17:37:17,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Visualization Engineer,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,Design;Engineering;IT,20,10,0,30,40,Illustrator;Excel;Tableau;Power BI,We have a set list of tools we're expected to use for data visualization.,Dashboard;Scrollytelling;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap,Analysts;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Daily,Summarization;Learning;Research,Collaborative,Not being able to use my dataviz expertise. Generally- have to do what the internal customer wants even if it's not best practice,People don't realize how much work it takes- not always seen as valuable,Make it a more important part of the organization/company - more emphasis,More tools that don't require coding (e.g. build D3 charts without code),the amount of data prep/wrangling that is needed before you can do the visuals,More importance from Top Management on dataviz and its benefits,How to get started- how to get inspired- how to build up your skillset- examples,Nathan Yau,Same,male,26 - 35,USA or Canada,asian,Private sector
3/2/2017 5:37:10,4,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Research Scientist,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Separate data visualization team,ggplot2/Pandas Charts,No,Research,10,0,10,0,10,ggplot;Other R,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Pie Chart,Scientists,Intro,Weekly,Analysis;Summarization;Learning;Research,Consultative,Data management,Learning the code,"Better integration between database and statistical analyses to be visualized
",Become more proficient.,Why,Proficiency,Step-by-step.,Nathan Yau,Much more,male,36 - 45,USA or Canada,white,Public sector
3/2/2017 9:37:58,10,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Property Analyst,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Completely custom,No,Design;Marketing,10,10,10,5,15,Excel;Leaflet;Mapbox;Other Python;ArcGIS;QGIS;Other GIS,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map;Flow Diagram,General Public;Analysts;Project Managers;Executives;Legislators,Intro;Moderate,Quarterly,Analysis;Summarization,Subordinate,Inability to experiment with cutting edge software packages or other tools: Enterprise policy prevents most user installations of programs; onerous process to add to approved program list.,Inconsistencies in data quality/integrity produced by colleagues necessitate extensive cleanup and thwarts implementation of automated visualization processes.,Better support for accessing- implementing- and maintaining technical resources (e.g. exceptions to enterprise policy- hiring low-level clerical staff for data entry/cleanup- hiring/contracting low-level programmers/developers to improve web presence/integration).,Improve its visibility (pun intended) within our organization to engage other divisions/departments.,The amount of inglorious toil involved in producing the final deliverable from questionable data sets.,More agile implementation of new technology,Strategies for justifying value of data vis specialists to management.,Nathan Yau,More,male,36 - 45,USA or Canada,white,Public sector
3/2/2017 11:17:41,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Senior Director of Analytics,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Other,Analysis;Machine Learning;Marketing,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Design;Analytics,5,5,65,0,25,Excel;Tableau;ggplot;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart,Analysts;Executives,Intro;Moderate,Weekly,Analysis;Summarization;Learning,Subordinate,execs always wanting more analysis faster,Time to easily create d3 plots,larger team or realistic expectations,easier to product beautiful- interactive plots (like tableau) but open source,beautiful plots aren't an accident,more staff,more info on learning d3,Nathan Yau,Same,male,26 - 35,USA or Canada,,Private sector
3/2/2017 14:41:40,4,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Associate Specialist ,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts,No,Research,25,0,15,0,60,ggplot;Other R;Pandas,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Infographics;Dendrogram;Choropleth Map;3D Chart,Scientists;Medical Professionals,Moderate,Weekly,Analysis;Summarization;Learning;Research,Subordinate,A lack of understanding of the data from superiors ,Explaining away of the results,More freedom to choose which analysis to perform,The audience,,Different managament,How to adapt visualizations for non data people,Nathan Yau,More,male,26 - 35,USA or Canada,white,Academic
3/2/2017 16:28:14,6,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Senior Prospect Development Analyst,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Summary/Overview;Communication;Exploration,Both,Business Intelligence Tools,No,Marketing;Research;IT,10,0,15,5,20,Illustrator;Excel;Tableau;ggplot;Other R;ArcGIS,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Dendrogram;Choropleth Map,Analysts;Project Managers;Executives,Moderate,Monthly,Analysis;Summarization,Collaborative,lack of advancement opportunities/job growth,poor metadata,more autonomy,more opportunity to learn other tools,visualization is an analysis tool- we almost exclusively use it for communication/reporting out,stronger leadership,a community to access- listserv? common webpage? I don't know of something like this,Nathan Yau,Much more,male,26 - 35,USA or Canada,white,Not-for-profit
3/2/2017 18:39:40,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Head of Market Intelligence,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Communication,Embedded in another team,Business Intelligence Tools,No,,15,10,10,5,10,Excel;Pandas;Other Python,I'm able to choose my own tools.,Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;3D Chart,General Public;Analysts;Engineers;Executives;Traders,Moderate;Expert,Weekly,Analysis;Learning;Research,Consultative,Limited time to learn ,Lack of curiosity by the rest of the team to understand data visualization,,Faster computers,The effort it takes to produce good material.,Sallary,Books,Nathan Yau,Much more,male,36 - 45,Latin America,hispanic,Private sector
3/3/2017 8:42:21,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Research Associate,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Marketing;Research,10,10,20,10,50,Illustrator;Excel;ggplot;Other R,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Dendrogram;Choropleth Map,General Public;Scientists;Medical Professionals,Intro;Moderate;Expert,Monthly,Analysis;Summarization;Learning;Research,Collaborative,,Not having set visualization principles and best practices across divisions/people,,,That it's not just about looking pretty- but also not misrepresenting the data (and telling the story clearly). ,,,Nathan Yau,More,male,26 - 35,USA or Canada,white,Not-for-profit
3/7/2017 8:52:55,5,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Data Visualisation Engineer,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Marketing,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Engineering,9,30,30,1,30,Excel;Tableau;Plotly;D3;ggplot;Pandas,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations,Line Chart;Bar Chart;Infographics;Choropleth Map,Product Managers;Project Managers;Executives,Intro;Moderate,Monthly,Analysis;Summarization;Learning,Subordinate,constant ad hock requests,it is never a priority,clear priorities and no more ad hock requests,it would be public and not hidden within the organisation,the benefits and usefulness of investing time and effort into creating the best visualisation for the purpose ,clear priorities and less ad hock data requets,how to make data visualisation a first class citizen within an organisation,Nathan Yau,Much more,male,26 - 35,Europe,white,Private sector
3/8/2017 11:40:59,7,Bachelors,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,CEO,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Consultant,,,,,,15,10,25,10,40,Excel;Tableau;Power BI;Qlik;ggplot;Other R,I'm able to choose my own tools.,Dashboard;Scrollytelling;Presentations,Line Chart;Bar Chart;Treemap;Dendrogram;Choropleth Map;VR/AR Charting,Project Managers;Executives,Intro,Weekly,Analysis;Summarization;Learning,Consultative,Tool pricing not decreasing as user base increases,interop between tools,better state of initial data,it's always the management lack of understanding,,Companies like rapidminer and Tableau charge way too much for their tools,"discussions on the ""supernova"" of change we are seeing more in the foreground",Nathan Yau,More,male,56+,USA or Canada,white,Not-for-profit
3/1/2017 11:21:04,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Analyst,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,Marketing;Research;BI,20,5,25,10,40,Excel;Power BI;D3;ggplot;Other R;Chart.JS,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Infographics;Treemap;Network Diagram;Flow Diagram,Analysts;Engineers;Product Managers;Executives,Moderate,Daily,Analysis;Summarization;Learning;Research,Collaborative,Data quality,Limitations of Power BI,The data input of other teams. ,More resources for guidelines across tools- like the grammar of graphics. ,The underlying data structure. ,An easier data structure to report off of. ,"How to structure your data and guidelines for how ""big"" data can get before models need to be reworked. ",Nathan Yau;Andy Kriebel,More,male,26 - 35,USA or Canada,white,Private sector
3/1/2017 11:07:42,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Digital Analyst,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Marketing,5,0,5,33,5,Excel;D3;ggplot;Other R;Gephi,I'm able to choose my own tools.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Network Diagram;Flow Diagram,Product Managers;Executives;Designers;marketers,Intro;Moderate,Monthly,Analysis;Summarization;Learning,Consultative,Low buy-in,Lack of data infrastructure,More cross-training with team members,Better tools- processes- and infrastructure,It's precise info that means something- not just feel-good marketing,Data infrastructure,How to prep data effectively,Nathan Yau;Tufte;538,More,female,26 - 35,USA or Canada,white,Public sector
3/1/2017 16:29:57,,Masters,Mostly from School,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Product,5,0,10,25,60,Excel;Tableau;ggplot;Other R;R Shiny,I'm able to choose my own tools.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Infographics;Network Diagram;Choropleth Map;Flow Diagram;Survival Curves and ROC Curves,Analysts;Product Managers;Executives,Moderate,Weekly,Analysis;Summarization,Collaborative,Short term company vision,Data transformation and wrangling. Multiple acquisitions with slow integration into one platform. ,Pay,Have more time to produce intermediate visualizations for my own team. ,The caveats and assumptions behind the data,All our data in one area,How to be creative and get better and choosing what type of graphic suits your data ,Nathan Yau;Hadley Wickham,More,female,25 or younger,USA or Canada,white,Private sector
3/5/2017 7:07:24,4,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Data Marketing Analyst,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries,No,Marketing;IT,5,15,30,5,45,Excel;Highcharts;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Documents;Email,Line Chart;Bar Chart;Choropleth Map,General Public;Executives,Intro;Moderate,Weekly,Analysis;Summarization;Learning;Research,Consultative,,"One of our senior executives doesn't appreciate data viz and considers herself a ""spreadsheet person."" So I am discouraged from having fun with viz and extending beyond the basics.",More colleagues who work on data viz so that I can have more creative minds around- more mentorship- and a larger voice in front of senior leadership. I am the only person who does data viz in-house.,More training- more opportunities to play with data and develop products.,"They think it's ""pretty"" but not essential. ",A data team in its own consolidated unit with a complementary set of skills.,Self-teaching tools. Marketing-specific data viz. What non-data executives want to see from a data viz staff person.,Nathan Yau;Hadley Wickham,More,female,26 - 35,USA or Canada,white,Not-for-profit
3/1/2017 14:41:12,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Senior Analytics Specialist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,IT;strategy and innovation,20,20,20,10,30,Excel;Tableau;D3;Leaflet;Other Javascript;ggplot;Other R;ArcGIS,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Network Diagram;Choropleth Map,Analysts;Engineers;Project Managers;Executives,Intro;Moderate,Daily,Analysis;Summarization;Learning,Consultative,poor organisational culture,vast majority of users don't really care,i would work for a different company,more time to be able to devote to data vis,it's not just making a chart. it's finding the story/insights in the data and building a visualisation to tell the story,more support from management,,Nathan Yau;Hadley Wickham;Tufte,More,male,26 - 35,Oceania,white,Public sector
3/1/2017 11:14:35,3,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Researcher,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Contractor,,,,,,30,0,25,5,40,ggplot,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Network Diagram;Raster Map;3D Chart,General Public;Analysts;Project Managers;Executives,Moderate,Weekly,Analysis;Summarization;Research,Consultative,Differences between different technologies (R- Python- Javascript),Getting the data ready,more money,Integrate d3,Don't realise how long it takes,Knowing more languages,,Nathan Yau;Hadley Wickham;Rudis,More,male,26 - 35,Latin America,white,Private sector
3/4/2017 10:46:46,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Senior Information Designer,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Separate data visualization team,Business Intelligence Tools;General charting libraries;Completely custom,No,Design;Marketing;Research,50,0,0,40,10,Illustrator;Excel;Tableau;Processing;Highcharts;Other R;Powerpoint,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap,Analysts;Medical Professionals;Product Managers;Project Managers;Executives,Moderate;Expert,Monthly,Analysis;Summarization;Research,Consultative,No investment in new approaches,,,moving from static to interactive,it takes time,,,Nathan Yau;Mike Bostock;Amanda Cox,More,female,26 - 35,USA or Canada,white,Private sector
3/2/2017 0:05:42,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview,Both,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries,No,Research,10,30,30,0,30,Leaflet;Highcharts;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Email,Line Chart;Bar Chart;Choropleth Map,Product Managers,Moderate,Monthly,Analysis;Summarization;Learning,Consultative,There are no design thinking fellows arround,Lack of time to master d3.js - etc.,More data visualization- less data crunching,Don't know,,Having web developers inhouse,Everything is good I suppose- no need for big changes,Nathan Yau;Mike Bostock;Tufte,Much more,male,,Europe,white,Private sector
2/28/2017 13:28:07,2,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,UI Designer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration;Product,Embedded in another team,Completely custom,Yes,Design,25,0,0,70,5,D3;Other Javascript;Other Python;Contour from Forio,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Simulation or Game,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Flow Diagram;Scatter;bubble;maps,General Public;Medical Professionals;Product Managers;Project Managers;Executives;Business Students;Educators;Corporate Training,Intro;Moderate;Expert,Daily,Analysis;Learning;Research,Collaborative,Not having adequate data/content before the design process,Constantly pushing design software to the limit- no great way to prototype visualizations beyond static mockups or InVision.,Have more time with my team to collaborate on brainstorming for new visualization projects,Have a better tool to use to mockup and prototype visualizations. All the prototyping tools out there seem to be geared towards simple mobile apps and not complex interactive software.,That it takes a long time to organize information/content/data correctly in order to be able to make sense of it and design the most appropriate visualization.,More time and attention to developing visualizations,More talks at technology/design/dev conferences- more focus on how to make visualizations accessible- and how to deal with complex visualizations on responsive/mobile platforms.,Nathan Yau;Nadieh Bremer;Tufte,Much more,female,26 - 35,USA or Canada,multi,Public sector
3/7/2017 5:48:45,0,Bachelors,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Business Analyst,Data Visualization Role has higher compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing,Separate data visualization team,Business Intelligence Tools,Yes,Design;Engineering;IT,0,5,0,0,5,Excel,We have a set list of tools we're expected to use for data visualization.,Email,Line Chart;Bar Chart,Analysts,Expert,Quarterly,Summarization,Collaborative,,Could be a core function of the job and applied going forward- but company built out visualization capabilities and put it in the hands of customers instead- removing any chance for in house experiments,More applied analysis and more cutting edge software,Do it in work more frequently,,Better tools - stuck doing any visualization in excel. Only have R desktop license without R Studio as a secondary option.,more research and experiment articles rather than implementing or applying libraries- because for me- I'm in a large tech company so it'll be light years (in tech years) before I can implement any of that in my day job.,Nathan Yau;Nate Silver,Much more,male,25 or younger,USA or Canada,white,Private sector
3/2/2017 10:54:38,8,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Sales & Market Analyst,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing,Embedded in another team,Business Intelligence Tools,No,Marketing;Research;IT,33,0,0,10,20,Excel;Power BI,I'm able to choose my own tools.,Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart,Executives,Intro;Moderate;Expert,Monthly,Analysis;Summarization;Learning;Research;Decision-making,Consultative,Stressful deadlines- when executives do not grasp the time and effort it takes to refine and depict data in useful- actionable ways.,When my computer crashes,,I'd have more time to learn other programming tools- like R etc. As part of my job.,"It takes large blocks of uninterrupted time and attention to achieve. And- that even if I look like I'm not ""doing"" anything- or I'm taking a walk- it's to clear my mind and reflect on the work. Data work is recursive- and requires rest and reflection to be sure it progresses smoothly and in interesting directions.",Better recognition - better pay?,,Nathan Yau;NYT;Wolfram Alpha,More,male,26 - 35,USA or Canada,multi,Private sector
3/1/2017 14:07:38,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Statistical Programmer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis,Embedded in another team,Modeling,No,Research,25,10,25,,10,Illustrator;SAS,,Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Dendrogram,Medical Professionals,Expert,Weekly,Analysis;Research,Collaborative,confusing journal specifications,Lack of variety ,,I would like to learn to do animated graphics,,,,Nathan Yau;Sanjay Matange;Hadley Wickham;NYT,Much more,female,56+,USA or Canada,white,Public sector
3/1/2017 18:46:23,6,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Marketing Research Analyst,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools,No,Design;Marketing;Research,20,0,0,5,10,Excel;Other BI;D3;Other Network Visualization Suite,I'm able to choose my own tools.,Dashboard;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Treemap;Dendrogram;Choropleth Map,Executives;Marketers;Sales Executives,Intro;Moderate,Daily,Analysis;Summarization;Research;Sales,Consultative,"The people I support know they should ""use data"" but don't know why or how.",The data is insanely messy,I'd have my choice of BI tools.,I'd make beautiful dashboards to go to for regular data pulls- and then I could spend more time doing advanced/strategic analysis & visualization!,It's limited by the quality of the underlying data.,Better support from the BI tool we use,How to explain things to folks with the math / data viz intelligence of a two-year-old,Nathan Yau;Stephen Few;Cole Nussbaumer Knaflic;Alberto Cairo;David McCandless;Tufte,Much more,female,26 - 35,USA or Canada,white,Public sector
3/1/2017 0:44:13,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Partnerships MI & Control Manager,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Both,Business Intelligence Tools,No,IT,10,0,0,5,15,Tableau,I'm able to choose my own tools.,Dashboard;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap,General Public;Analysts;Product Managers;Executives,Moderate,Daily,Analysis;Research,Collaborative,Lack of executive sponsorship,Trying to find time to learn as well as work,More DV!,Adopt a personal brand,The value of clear and simple presentation of data,Investment by line management,Already have so much. Couldn't ask for more.,Neil Richards,Much more,male,36 - 45,Europe,white,Private sector
2/28/2017 1:44:54,10,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,Senior Information Designer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Summary/Overview;Communication;Marketing,Embedded in another team,Completely custom,Yes,Design,35,0,5,80,15,Illustrator;Excel;Applescript - MySQL,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Flow Diagram;3D Chart,General Public;Analysts;Engineers;Scientists;Medical Professionals;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Daily,Entertainment;Analysis;Summarization;Learning;Research,Collaborative,Not doing enough data viz,Not enough data,More data viz,,The time and consideration put into things,Less branding/marketing work,,Nicholas Felton,More,male,26 - 35,Europe,white,Private sector
3/2/2017 12:09:39,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Consultant,,,,,,50,20,5,15,10,Excel;Tableau,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Documents,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Raster Map;Flow Diagram,Analysts;Engineers;Medical Professionals;Product Managers;Executives,Moderate;Expert,Daily,Analysis;Summarization,Collaborative,Lack of open source tools,Not enough collaboration with end users,Direct contact with end users,Code more,The ability visualization has to teach,Better questions to answer with data ,Start looking at VR and AR data visualization seriously,Nicholas Felton,More,male,26 - 35,USA or Canada,hispanic,Private sector
3/2/2017 6:35:50,5,Bachelors,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Associate,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,Don't Know,Design;Engineering;Marketing;Research;IT,30,10,40,15,5,Excel;Tableau;Microstrategy;Power BI;Qlik;Plotly;D3;ggplot;Other R;Pandas;Other Python;QGIS;Other Network Visualization Suite,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Raster Map;Flow Diagram,Analysts;Medical Professionals;Product Managers;Project Managers;Executives,Intro;Moderate,Weekly,Analysis;Summarization;Learning,Consultative,Not enough focus on analytics and data visualization,Lack of training on the tools,Better visualization tools & training,Allocate more project time to be able to develop effective data visualizations,How important a good visualization is in communicating results and insights,Centralized tools & training,How to focus on why data visualization is important and the impact it can have,Nicky Case,Much more,male,25 or younger,USA or Canada,asian,Private sector
2/28/2017 11:28:16,3,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,Software Engineer,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Engineering,50,50,0,0,0,D3;Mapbox;WebGL;Other Javascript,I'm able to choose my own tools.,Dashboard,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram;Choropleth Map,General Public;Analysts;Engineers;Scientists;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Daily,Analysis;Summarization,Consultative,Product managers,I build a generic visualization platform- and I don't get to know very much about the data that I am working with.,I would be doing work that faced the public more often.,,They really really think pie charts are great.,,,Nicolas Belmonte,More,male,25 or younger,USA or Canada,white,Private sector
2/27/2017 13:26:15,3,,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Technical director,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Both,Business Intelligence Tools;General charting libraries;Completely custom,No,Design;Engineering;Research,80,0,10,10,0,Excel;Tableau;Power BI;Qlik;Plotly;D3;WebGL;Highcharts;Other Javascript;Other R;Angular,I'm able to choose my own tools.,Dashboard;Static Web Page;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Choropleth Map;Flow Diagram;VR/AR Charting,Analysts;Executives,Expert,Daily,Analysis;Summarization,Collaborative,Lack of innovation ,Time,Freedom to innovate ,,Why it is necessary ,,,Niklas Elmqvist;Elijah Meeks;Andy Kirk,Much more,male,26 - 35,USA or Canada,white,Public sector
2/28/2017 12:26:12,6,Technical School,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Technical Writer / UI Tester-Reviewer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Contractor,,,,,,10,5,0,30,5,Illustrator;Photoshop,I'm able to choose my own tools.,Embedded in a tool;Documents,Bar Chart;Infographics;Network Diagram;Flow Diagram,Engineers;High tech mfg employees,Moderate,Quarterly,Learning;optimizing use of our products,Subordinate,Resources: time/money/mgmnt support for doing adequate job & money for SW,,Management buy-in of importance of data visualization. ,Simple tools vs. complex do-all SW.,While many like the results- many don't know the talent or imagination it takes.,More resources. Then management prioritization of those resources.,Education aimed at managers that require them to explain how visualization helps (or not) so they understand their own biases. Secondary; examples and case studies.,Noah Iliinsky,Same,male,56+,USA or Canada,white,Public sector
3/2/2017 13:15:41,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Technology Consultant,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Contractor,,,,,,80,0,0,0.05,15,Tableau;D3,We have a set list of tools we're expected to use for data visualization.,Dashboard,Line Chart;Bar Chart;Choropleth Map;scatterplots,Product Managers;Executives,Intro,Weekly,Decision making,Subordinate,Visualization is becoming a commodity talent and often outsourced if it's tool based.,How to scale a visualization so that it endures with time,Compensation,The perception that it's easy,That it requires expertise in concept drafting and development- data mechanics- data engineering- and design. Tools like Tableau make them think it's really easy. And if all you want to do is create a bar chart of some simple rows of data then it is.,If visualization were valued the way data engineering is,,NYT,Same,female,46 - 55,USA or Canada,white,Public sector
3/3/2017 15:07:32,4,Bachelors,Mostly Self-Taught,Intended to work in data visualization,Yes,Freelance Data Visualization,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Consultant,,,,,,20,10,10,40,10,Illustrator;Plotly;D3;Other Javascript;quadrigramm,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page,Bar Chart;Infographics,General Public,Intro,Weekly,Entertainment;Summarization,Consultative,poorly payed,lack of developer knowledge,work with others (developers- data scientists),have more time to learn d3,that is trial and error based,have better access to documentation (bl.ocks- etc),how do you charge your clients being freelance? hourly? by project? ,NYT,Much more,male,26 - 35,Latin America,white,Not-for-profit
2/27/2017 12:40:32,7,Bachelors,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Data+Design Lead,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,Yes,Design;Engineering;Marketing;Research;IT,25,15,10,30,20,Excel;Tableau;D3;Leaflet;Mapbox;WebGL;ggplot;Pandas;React;Vega,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram;Choropleth Map;Raster Map;Flow Diagram;3D Chart,General Public;Analysts;Executives,Intro;Moderate;Expert,Weekly,Entertainment;Analysis;Summarization;Learning;Research,Consultative,People expect help from me due to my wide breadth of knowledge- but i often run into problems that I can't really find help with,Visualization is always the last thing done- meaning that data preparation delays always shorten time for VIS development,More time to collaborate,,I'm not just building Tableau. And what I build can not just be replicated in Tableau by low-cost resources.,Data is always available before projects,How to bring data and design together from a teaming standpoint ,NYT;Boucoup,Much more,male,26 - 35,USA or Canada,white,Private sector
2/28/2017 9:03:05,4,Masters,Mostly Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,Principal Data Scientist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Contractor,,,,,,5,40,20,5,30,Plotly;D3;ggplot;Other R;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations;Blogs,Line Chart;Infographics;Network Diagram;Choropleth Map;Line Map;Slopegraph,General Public;Analysts;Engineers;Scientists,Intro;Moderate;Expert,Weekly,Entertainment;Analysis;Learning;Research,Consultative,Lack of organizational focus,Not enough of a focus on it,Do more data visualizations,Make it more programmatic,How time consuming it is,More focus - doing fewer projects with higher quality,,NYT;Tufte,Much more,male,25 or younger,USA or Canada,multi,Private sector
2/28/2017 1:46:15,3,Technical School,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Project Manager,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools;General charting libraries;Completely custom,No,Design;Engineering,10,5,0,5,10,Excel;Tableau;D3;Highcharts;React;Angular,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Treemap,Analysts;Product Managers;Executives,Expert,Weekly,Analysis;Summarization;Learning;Research,Consultative,Lack of budget/time to produce the immersive visualisations I would like,Lack of budget/time to produce the immersive visualisations I would like,More time for research/learning,I am a project manager so create initial visualisation scope/ideas and work with clients/designers to create. ,As an ex finance professional I have a wider experience of data analusis than my immediate colleagues. ,more time!,Understanding new tools / frameworks - and matching best toolsets to requirements. ,NYT;Mike Bostock,Much more,male,46 - 55,Europe,white,Private sector
2/28/2017 14:58:43,6,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Graphic artist data visualisation ,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Journalism,Separate data visualization team,Completely custom,No,Visuals,100,0,0,100,50,Illustrator;Excel;Tableau;D3;Leaflet;Mapbox;WebGL;Other Javascript;React;QGIS,I'm able to choose my own tools.,Scrollytelling;Static Web Page;News,Line Chart;Bar Chart;Treemap;Network Diagram;Choropleth Map,General Public; News readers,Intro;Moderate,Weekly,Entertainment;Analysis;Learning,Consultative,,Dataviz not recognised as important as other ways to tell stories,Remote working as a daily practice ,,,,,NYT;Moritz Stefaner;Mike Bostock;Pitch Interactive;Periscopic;Washington Post;Andy Kirk;FT,Same,male,36 - 45,Europe,white,Media
3/4/2017 16:03:37,8,,Mostly Self-Taught,Intended to work in data visualization,Yes,Interactive Graphics Editor,Data Visualization Role has same compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Journalism,Both,Completely custom,Yes,Design;Engineering;Journalism,30,30,2,30,30,Illustrator;Excel;D3;Leaflet;Highcharts;Other Javascript;QGIS,I'm able to choose my own tools.,Scrollytelling,Line Chart;Bar Chart;Infographics;Treemap;Choropleth Map;Raster Map;Flow Diagram,General Public,Moderate,Daily,News and information,Collaborative,Lack of communication with management and editors. ,Lack of communication with management and editors. ,I'd like to have a stronger editor/reporter relationship for guidance and collaboration.,I'd like to have a stronger editor/reporter relationship for guidance and collaboration.,We're all pretty informed and get along well- actually. But our editorial process could be strengthened.,Stronger collaborative relationships.,Transparency about how ther teams are organized- how projects are reported and edited.,NYT;Washington Post,More,male,36 - 45,USA or Canada,white,Public sector
2/28/2017 1:31:28,4,Masters,Mostly from School,Intended to work in data visualization,Yes,Data Visualisation Designer,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;Completely custom,Yes,Design,60,10,0,30,10,Illustrator;Excel;Tableau,I'm able to choose my own tools.,Dashboard;Documents,Line Chart;Bar Chart;Infographics;Treemap;Network Diagram;Flow Diagram,Analysts;Product Managers;Project Managers;Executives,Intro,Daily,Analysis;Summarization;Research,Subordinate,Helping rich people or bad people becoming richer and richer,Rare chances of experimenting,More ethical clients,More freedom,Tableau is not data visualization,Better clients,Using for more ethical and social projects,Office for Creative Research,Less,female,26 - 35,Europe,white,Private sector
2/27/2017 16:32:09,1,Masters,Mostly Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,PhD Student / Research Assistant,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Student,,,,,,10,0,10,40,40,Illustrator;Excel;Processing;Other Javascript,I'm able to choose my own tools.,Documents;Presentations;videos,Infographics;Dendrogram;Flow Diagram,General Public,Moderate,Yearly,Learning;Research,Subordinate,Frustating evaluation of work,Bad software and hardware equipement,More freedom on methods / results,More interactive,Creativity ,Better software and hardware equipment,Sharing methods and experience (rises and pitfalls) ,Pedro Miguel Cruz,More,male,36 - 45,Europe,white,Public sector
3/2/2017 8:44:08,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Senior Data Engineer,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Hired to do data visualization,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Engineering,10,30,5,5,20,Excel;Tableau;D3;Leaflet;Mapbox;ggplot;Other R;Pandas;Other MVC;ArcGIS;Other GIS,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Network Diagram;Choropleth Map,Analysts;Engineers;Executives,Intro;Moderate;Expert,Daily,Analysis;Summarization;Learning,Consultative,Infrastructure and planning.,Lack of infrastructure and policy guidance.,More time doing research and solving problems- less other-duties-as-assigned.,More time developing visualizations. More time to do R&D with tools like Mapbox and d3.js.,Our Data Science projects should be managed like a non-profit manages Grants.,Would like to get more time for R&D and spend less time in the land of red tape.,I love recipes. And series that start at beginner and progress through more advanced topics. ,Periscopic;Mapbox;Tufte;Mike Bostock,Much more,male,36 - 45,USA or Canada,white,Public sector
3/2/2017 11:28:51,10,Other,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Freelancer,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Contractor,,,,,,15,15,15,15,40,D3;Processing;WebGL;Other Javascript,I'm able to choose my own tools.,Embedded in a tool;Scrollytelling;Static Web Page,Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map;Raster Map,General Public;Executives,Intro;Moderate,Weekly,Analysis;Learning;Research,Consultative,Convincing people stories can be best told with visualization- getting buyin on atypical viz design,Schedule,More time to execute/more money,more of it.,"""Just making the chart/map this way"" isn't a great piece of feedback",Pipe dream- but a better sense from clients that they understand the field?,,Periscopic,Much more,male,36 - 45,USA or Canada,multi,Private sector
3/3/2017 9:16:59,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Solution Developer,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Embedded in another team,Business Intelligence Tools;Completely custom,No,Analytics,40,0,10,10,10,Excel;Power Pivot,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Infographics,Product Managers;Operations Managers,Moderate;Expert,Monthly,Analysis;Learning;Research,Collaborative,Lacking accurate and complete data- with little ability to change process to ensure more accurate data,Streamlining the end user experience to be quicker and more user friendly,More time spent on long term improvements to outputs I have previously created.,"
More time spent on long term improvements to outputs I have previously created.",We require accurate and complete data- and time investments on their end regarding day-to-day data entry is necessary to facilitate that.,,More visualization solutions that are geared towards changing data- rather than a finalized data set- with a finite # of subsections.,PowerPivotPro.com,More,male,26 - 35,USA or Canada,white,Public sector
2/28/2017 11:43:50,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Assistant physician at University Hospital,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Consultant,,,,,,5,5,5,5,20,Excel;ggplot,I'm able to choose my own tools.,Documents;Presentations;Scientific articles,Line Chart;Bar Chart;Box-plot,Medical Professionals,Moderate;Expert,Monthly,Analysis;Learning;Research,Consultative,Time spent is not properly paid for.,Some people do not realize how hardware was to get the job done,I would choose to be a part-time medical data analyst and physician the other half.,To have more adequately registered health records.,The comprehension of statatistical procedures.,,Implement as a real career- yet from distinct backgrounds ,R,Much more,male,46 - 55,Latin America,white,Mixed
2/27/2017 15:38:07,4,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior research scientist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,ggplot2/Pandas Charts;Modeling,No,Research,5,25,30,2.5,30,ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Documents;Presentations;Email,Line Chart;Bar Chart;Scatter; frequency poly; density; box; dotplot; ,Analysts;Medical Professionals,Moderate;Expert,Monthly,Analysis;Summarization;Research,Consultative,Fragmented tooling across PIs I work for make it hard to get a fairly standard work flow,Lack of appreciation among others for time involved to produce a publication ready figure,Pay,Standardize workflow across different projects- to the extent possible,Time required to produce publication quality viz- even if it is simple ones,More investment in CE and conference attendance ,,R Studio,More,male,36 - 45,USA or Canada,white,Not-for-profit
3/6/2017 13:31:25,5,PhD,Mostly from School,Intended to work in data visualization,No,Research Scientist,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Separate data visualization team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,Yes,Research,20,0,20,50,0,Excel;Tableau;D3;Processing;Pandas;Java,I'm able to choose my own tools.,Embedded in a tool;Presentations,Line Chart;Bar Chart;Infographics,Analysts;Scientists;Medical Professionals,Expert,Daily,Analysis;Summarization;Research,Collaborative,,,,,,,,Robert Kosara,Much more,male,,,,Not-for-profit
2/27/2017 21:26:57,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Application Engineer ,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Engineering;Marketing;Research,30,50,0,20,0,Excel,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents,Line Chart;Bar Chart;Treemap;Choropleth Map;Raster Map,Analysts;Engineers;Product Managers;Project Managers;Executives,Moderate,Daily,Analysis;Summarization,Collaborative,Lack of integration between tools ,Overly broad requirements and nit-picking critique - leading to crosstabs ,More coding ,More time with other platforms ,How much time it takes to design and build things that actually work ,More time to try new tools and frameworks ,"More published analysis- discussion about how visualization helps communicate- less time spent on ""making pretty things"" for their own sake ",Robert Kosara,More,male,26 - 35,USA or Canada,white,Private sector
2/28/2017 1:46:28,9,PhD,Mostly Self-Taught,Intended to work in data visualization,No,Freelance data scientist,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Consultant,,,,,,10,10,5,5,20,Excel;Tableau;D3;Other Javascript;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents,Line Chart;Bar Chart;Infographics;Choropleth Map;Heatmap;ISOTYPE,General Public;Analysts;Executives,Intro;Moderate,Monthly,Analysis;Summarization;Learning,Consultative,Hard to get enough contracts solely for visualization. Perception of visualization by potential customers and funding agencies is biased : they think it does not require particular skills- or it is not sufficiently innovative in itself.,"Time for data prep- in particular difficulty to ""industrialize"" data prep (i.e. develop tools that can be reused in other projects). Same for data visualization itself- in particular in D3 : I end up developing many of the same things over and over again.",Get data visualization mandates delivered to my doorstep ;),More ways to industrialize data prep and viz.,They confuse visualization with bar charts and scatter plots. They don't understand it's a valuable tool for analysis- complimentary to data mining and machine learning.,As a freelancer- prospect is time-consuming and frustrating. I'd sometimes better have someone else doing it for me.,"Advice on how to ""sell"" data visualization to customers + to research funding agencies.",Robert Kosara;Alberto Cairo;Enrico Bertini;Moritz Stefaner;Stephen Few;Tufte,Much more,male,36 - 45,Europe,white,Mixed
2/28/2017 9:01:47,0,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Data Analyst,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools,No,IT,10,10,0,10,70,Excel;Power BI,We have a set list of tools we're expected to use for data visualization.,Dashboard;Static Web Page;Documents,Line Chart;Bar Chart,Project Managers;Cohorts,Intro,Monthly,Summarization,Collaborative,Getting past data issue,Getting tools required,Get the time to develop out products,More exploratory time,Excited about it not sure if they buy into it,Tools and development time,,Robert Kosara;Enrico Bertini;Moritz Stefaner;Kirill Eremko,Much more,male,56+,USA or Canada,white,Mixed
2/27/2017 14:06:44,6,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Lead Data Visualization Scientist,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration,Both,ggplot2/Pandas Charts;Completely custom,No,Engineering;Research,50,15,10,20,5,D3;Leaflet;Other Javascript;Other Python;Angular,I'm able to choose my own tools.,Embedded in a tool,Bar Chart;Dendrogram;Network Diagram,Analysts;Engineers;Scientists,Moderate;Expert,Weekly,Analysis;Research,Consultative,Individual projects often need visualization at some point- but often times this is not recognized during the project planning/proposal process. It is often recognized later in the project- meaning that opportunities to grow the visualization side of the business are limited.,Many people don't understand the expertise (i.e. visualization science and best practices) that go into designing good visualizations- and those people think designing a good visualization is just a mixture of putting yourself in your users' shoes- creating attractive graphics- and using your intuition.,Have visualization be recognized as a core requirement during project inception- in order to have more control in shaping and growing visualization work in the company.,Better skill with making visualizations attractive- so that the visualizations would be more eye catching and useful from a marketing perspective.,That there is a wealth of knowledge derived from scientific studies used to guide visualization design; that visualization can require just as much expertise as something like machine learning.,Ability to create web-based visualization tools with less time spent writing and debugging non-business logic code (e.g. Docker files- backend APIs- process management logic- etc.).,In my experience- most people already see the value of visualization- but I would like to hear advice on how to communicate to people that visualization is a deep and broad field; it's more complex and requires more skill than simply copying examples from D3's website and pasting your data into them.,Robert Kosara;Jeffrey Heer;Tamara Munzner;Mike Bostock,More,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 19:36:58,3,PhD,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Professor and Researcher,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Communication;Research,Separate data visualization team,Completely custom,Don't Know,Design;Research,20,10,20,40,10,Illustrator;Excel;Java,I'm able to choose my own tools.,Scrollytelling;Documents;Presentations,Treemap;Network Diagram;Flow Diagram,Scientists,Moderate,Monthly,Learning;Research,Consultative,Lack of equipment,Lack of acknowledging the importance of the subject,Means of communications and data sharing,The perception about its use,The link between data visualization and design subjects.,The way other scholars thinks about design and data visualization,Discussions about the expresive role of data visualization and its effect on people,Roberto García,More,female,36 - 45,Latin America,white,Public sector
2/27/2017 14:10:20,4,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,Software Engineer,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Consultant,,,,,,20,10,10,10,30,Illustrator;Excel;D3;Mapbox;WebGL;Other Python;React,I'm able to choose my own tools.,Dashboard;Static Web Page,Line Chart;Bar Chart;Infographics;Treemap;Dendrogram;Network Diagram;Choropleth Map;Raster Map;Flow Diagram;3D Chart;VR/AR Charting,Analysts;Engineers;Scientists;Medical Professionals;Product Managers;Project Managers;Executives,Intro;Moderate,Weekly,Analysis;Summarization;Research,Consultative,Need more time to implement instead of doing data processing,Need more time to implement instead of doing data processing,Need more time to implement instead of doing data processing,Need more open source frameworks for visualizing in AR and VR,data processing is not as fun,Agreement on data viz pipeline to work with other engineers to make process more fun- seamless. Design respected and choice of frameworks unquestioned.,Share more use cases for frameworks startups and big companies are doing for data viz for internal or external customers. ,Rosstin Murphy,Much more,female,26 - 35,USA or Canada,asian,Private sector
3/8/2017 15:02:04,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Visualization Developer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Consultant,,,,,,60,0,10,20,10,D3;Leaflet;Mapbox;WebGL;Other Javascript;Angular;Other MVC;QGIS,I'm able to choose my own tools.,Scrollytelling;Static Web Page,Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map;Sankey diagram;Sreamgraph,General Public;Scientists;Medical Professionals;Project Managers,Expert,Daily,Summarization;Learning;Research;Lobbying,Collaborative,Not having benefits as a contractor/freelancer/consultant.,Keeping up with the constantly changing javascript libraries.,Being able to publish once for all OSs- browsers- devices- platforms.,,,,,Santiago Ortiz,More,male,56+,USA or Canada,hispanic,Private sector
3/4/2017 18:13:30,6,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Exploration,Both,ggplot2/Pandas Charts;General charting libraries;Completely custom,Yes,Engineering,50,100,100,10,50,D3;Leaflet;Highcharts;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents,Line Chart;Bar Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map,General Public;Analysts;Scientists;Executives,Expert,Monthly,Entertainment;Analysis;Summarization;Research,Consultative,Data cleaning,Picking the right viz,I need a csv editor,Educating users in different types of data viz,Different viz types tell different stories ,Open data in good formats ,Remakes,Santiago Ortiz;Andy Kirk;Alberto Cairo,Much more,male,26 - 35,Latin America,hispanic,Private sector
2/27/2017 13:57:06,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Visualization Engineer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Summary/Overview;Communication;Exploration,Embedded in another team,Completely custom,No,Design;Engineering,10,10,0,20,0,D3;Leaflet;Mapbox;WebGL;Other Javascript;React,I'm able to choose my own tools.,Custom application,Infographics;Treemap;Flow Diagram,General Public;Analysts;Engineers;Scientists,Moderate,Hourly,Analysis;Summarization;Learning,Collaborative,Lack of vision,Not enough visualisation,More ambitious design and visualisation goals,Do it more often,That it exists and how to use it,,"Integrating data visualisation into the core of application designs- deprecating stilted ""UX/UI"" ""Research"" and ""Testing"" based on a terrible initial selection of interaction patterns.",Santiago Ortiz;Bret Victor,Much more,male,26 - 35,USA or Canada,,Not-for-profit
2/27/2017 14:21:34,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Software Developer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Summary/Overview,Embedded in another team,General charting libraries;Completely custom,No,Engineering,30,10,0,0,5,D3;Highcharts;Other Javascript;React,I'm able to choose my own tools.,Dashboard,Line Chart;Bar Chart;Bullet Chart,Executives,Moderate,Weekly,Analysis;Summarization,Consultative,Understaffed and under appreciated front-end team,Getting React & D3js to play nicely,Salary increase,More code support,The intricate complexity of it,Hiring a data visualization expert,More meetups,Scott Murray,More,male,26 - 35,USA or Canada,white,Private sector
3/7/2017 10:09:51,3,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,Web Developer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview,Embedded in another team,General charting libraries;Completely custom,No,Design;Engineering,15,50,0,10,0,Plotly;D3;WebGL;Other Javascript;React,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard,Bar Chart;Network Diagram;Scatterplot,Analysts;Scientists;Medical Professionals,Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Collaborative,,Not enough opportunities to practice data vis,Get rid of open office floor plan,More say in what forms of data vis are used,The difficulty of creating programmatic day visualizations that can handle a wide variety of data ,Remove open office floor plan,Perhaps more collaborative and volunteer opportunities for data vis,Sebastian Gutierrez;Mike Bostock;Andy Kirk;NYT,More,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 12:37:41,6,Technical School,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Data Visualization Designer,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Product,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Research,75,10,10,75,10,Illustrator;Excel;D3;Processing;WebGL;ggplot;Pandas;Other Python;React,I'm able to choose my own tools.,Presentations;Product prototypes,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Flow Diagram;VR/AR Charting;Ive been doing some vr flow simulations for a product experience,General Public,Intro,Daily,Entertainment;Analysis;Summarization,Consultative,No one really gets visualization other than the charts they see in excel,Data access- cleanup and analysis is exhausting and slow,I should be paid more honestly. Im on the UX team where I have more control on the final product- but less compensation. Ive found working on engineering teams means some UX designer will ignore my informed judgement- but im starting to think the salary reduction is not worth it.,I wish I had spent more time studying linear algebra. ,That there are not pre-canned solutions for communication. I think everyone wants me to tell them what chart to use. I feel like that is the most boring conversation in the world in viz.,im not sure i even want to do this anymore. ,i wish we discussed the merits of more difficult to measure metrics on visualizations impact on perception- attention and behavior. If I hear about pie charts and angles one more time I'll die.,Shan Carter,Same,male,26 - 35,USA or Canada,white,Private sector
3/7/2017 18:53:02,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Content Designer/Strategist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration;Open Data,Embedded in another team,General charting libraries;Completely custom,No,Design;Engineering,30,0,0,85,0,Excel;Google Sheets,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Documents;Presentations;custom applications,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Choropleth Map;Flow Diagram,General Public;Analysts;law enforcement;journalists;criminologists,Intro;Moderate;Expert,Monthly,Analysis;Summarization;Learning;Research,Collaborative,,,,,,,,Shawn Allen;Jen Lowe;Patricio Gonzalez Vivo,More,,,,,Public sector
3/2/2017 6:16:29,7,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Research Associate,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Exploration,Embedded in another team,ggplot2/Pandas Charts;General charting libraries,No,Engineering,30,30,20,10,10,Excel;Plotly;D3;Leaflet;Highcharts;ggplot,I'm able to choose my own tools.,Embedded in a tool;Documents;Presentations;Email,Line Chart;Bar Chart;Dendrogram,Engineers;Scientists,Expert,Monthly,Analysis;Summarization;Research,Collaborative,payment,"time consuming to get ""wanted"" results",remove Windows from the planet,make it more interactive easily,things take time ...,"implementation of data science on a ""higher level""",,shiny;ggplot;Plotly;Leaflet,More,male,46 - 55,Europe,white,Public sector
2/27/2017 17:16:09,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Consultant,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Consultant,,,,,,25,30,10,20,20,Illustrator;D3;Processing;React;Other MVC,I'm able to choose my own tools.,Dashboard;Scrollytelling;Static Web Page;Presentations,Line Chart;Bar Chart;Infographics;Treemap;Choropleth Map;Steamgraph,General Public;Engineers;Product Managers;Executives;Clients,Intro;Moderate,Hourly,Entertainment;Analysis;Summarization;Learning;Research,Consultative,React,React,React,React,That splitting the components of the visualization too much makes them hard to work with in terms of animation,Switching to Vue,How to migrate between versions,Shirley Wu;Nadieh Bremer;Elijah Meeks,Much more,female,36 - 45,USA or Canada,white,Mixed
2/28/2017 2:18:02,5,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Marketing,Separate data visualization team,General charting libraries;Completely custom;Excel;Graphics,Yes,Design,30,10,0,80,2,Illustrator;Excel;Plotly;D3;WebGL;Other Javascript;React,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Choropleth Map;Flow Diagram,General Public;Analysts;Engineers;Scientists;Medical Professionals;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Weekly,Entertainment;Analysis;Summarization;Learning;Research,Collaborative,Client's lack of ambition or taste,My lack of developer/data science skills (I'm a designer),Do more data visualization ,Use more advance data visualization methods,,Learn more about Data vis and UX,Helping designers use tools to produce data vis,Signal Noise,More,male,26 - 35,Europe,white,Private sector
2/28/2017 9:52:11,3,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Editor ,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Contractor,,,,,,,,,,,Excel;Processing;ArcGIS;Gephi,I'm able to choose my own tools.,Presentations,Bar Chart;Choropleth Map,General Public;Analysts;Scientists,Expert,,,,,,,,,,,Stamen,Much more,,,,,
2/28/2017 9:23:42,10,PhD,Mostly Self-Taught,Intended to work in data visualization,No,,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Contractor,,,,,,10,40,,15,20,Excel;D3;Leaflet;Mapbox;ArcGIS;QGIS;Gephi,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Treemap;Dendrogram;Network Diagram;Choropleth Map;network map,self; historical researchers,Moderate,,Learning;Research,Collaborative,web development frameworks,visualization takes back seat to data modeling and preparation,better pay,,,,,Stamen;Mapbox,More,male,56+,USA or Canada,white,Not-for-profit
2/27/2017 12:52:04,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Crime Analyst,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Both,Business Intelligence Tools;Excel,No,Research,10,5,0,0,85,Illustrator;Excel;Tableau;ArcGIS,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Choropleth Map;Raster Map,General Public;Analysts;Executives,Intro;Moderate,Monthly,Analysis;Summarization,Subordinate,,,,,,,,Stephanie Evergreen,More,male,26 - 35,USA or Canada,white,Public sector
3/1/2017 11:12:08,7,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Senior Research Analyst,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Summary/Overview;Communication;Reporting,Embedded in another team,Business Intelligence Tools,No,Research,25,5,20,5,50,Illustrator;Excel;Tableau;ArcGIS,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Choropleth Map,General Public;Executives;Board members;Operations team,Intro,Quarterly,Analysis;Summarization;Learning;Research,Consultative,Need for additional training,Coworkers do not understand what is possible,More time spent making maps,Learn how to do more sophisticated data visualizations,The work that goes into them,More training,tips/advice - I love Stephanie Evergreen's newsletter,Stephanie Evergreen,Much more,female,26 - 35,USA or Canada,white,Not-for-profit
3/2/2017 10:56:09,1,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Research Associate,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Summary/Overview;Communication;Exploration,,Excel,No,Design;Marketing,20,0,20,5,20,Excel,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics,General Public;Scientists;Early Childhood Educators and Managers,Intro;Moderate,Quarterly,Summarization;Learning;Research,Consultative,Lack of innovation and agility,Lack of willing collaboration from those with data that is needed to better inform and shape visualizations,,I need more design training. I struggle with report layout design and color selection.,It is a collaborative effort and requires them to think more about what they are trying to say. They don't want to think about it- they just want to put it on a slide a be done with it. ,,,Stephanie Evergreen,Same,male,26 - 35,USA or Canada,white,Public sector
3/6/2017 12:29:44,8,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Social Researcher,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;Completely custom,No,Research,20,,,10,20,Excel;Tableau;D3;ArcGIS,I'm able to choose my own tools.,Dashboard;Scrollytelling;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map,General Public,Intro,Monthly,Learning;Research,,work on too many different projects- never feel like i have enough time to devote to any of them,wish i had more time to devote to doing it,be more focused on data viz,be more creative in the look,achieving a simple- well-designed data viz product takes more time than a cluttered one,more hard money funding (from the university) for my position,more that involves map design and innovative ways to display geographic data other than the choropleth map,Stephanie Evergreen;Alberto Cairo,More,female,26 - 35,USA or Canada,white,Public sector
3/1/2017 17:44:30,4,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Evaluation Associate,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Communication;Exploration,Both,Business Intelligence Tools,No,Research;IT;Evaluation,10,0,15,10,25,Excel;Tableau,We have a set list of tools we're expected to use for data visualization.,Documents;Presentations,Line Chart;Bar Chart;Infographics,Analysts;Medical Professionals;Executives,Intro;Moderate,Monthly,Analysis;Summarization,Subordinate,What I do and what I am needed to do are different than my job description and how I am compensated. My job description has little to do with dataviz and so there is little formal opportunity to grow. However- I am still known as the dataviz guy.,I have to scrounge for tools other than Excel.,My title.,I would actually have a subscription to Tableau instead of scrounging trial versions off Coursera.,Like building a survey or conducting research- people assume that they can just build a dataviz and that it means exactly what they want it to mean.,I would love some time and training in R so I could be less behind in the times.,What mix of data science/data engineering/statistics are most desirable and marketable.,Stephanie Evergreen;Tufte,More,male,26 - 35,USA or Canada,white,Not-for-profit
2/27/2017 13:15:37,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Business Intelligence Developer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Journalism,Embedded in another team,Business Intelligence Tools;General charting libraries,No,Engineering,20,80,0,0,0,Excel;Tableau,I'm able to choose my own tools.,Dashboard;Email,Line Chart;Bar Chart,Analysts;Project Managers;Executives,Intro,Weekly,Analysis;Summarization;Learning,Collaborative,so much to do- so little time,getting clear requirements,more colleagues,more time for workshops and requirements gathering,the power of simplicity,no time spent on operations,"guides for workshopping / requirements gathering. more focus on the ""meat and potatoes"" types of dashboards and vizes that most people spend 80 of their time on- instead of peripheral data sets and problems that people can't relate to",Stephen Few,More,male,36 - 45,Europe,white,Private sector
3/1/2017 23:40:35,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data-Analyst,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Other,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;General charting libraries,No,Design;Research,50,10,10,10,20,Excel;Tableau;Highcharts;Other R;QGIS,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Scrollytelling,Line Chart;Bar Chart;Choropleth Map;Raster Map,General Public;Analysts;Executives;policy makers,Intro,Monthly,Summarization;Learning,Consultative,procrastination,lack of creativity to develop mew products,more teaching- tutoring other people in data visualization,less time needed for management to approve of visualizations,requires a great deal of creative procrastination,less deadlines,how to overcome lack of creativity/productivity,Stephen Few,Same,male,26 - 35,Europe,white,Public sector
3/3/2017 15:51:56,10,Other,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,System Architect,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Building Energy /Operation Analysis,Both,Business Intelligence Tools;Completely custom,No,Operations,40,30,15,10,10,Tableau;DgLux;SkySpark;Niagara;SQL,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Flow Diagram;Clustered Charts;ScatterPlot,General Public;Engineers;Project Managers;Executives;Energy Managers,Intro;Moderate;Expert,Daily,Analysis;Summarization;Learning;Research,Consultative,understanding of value from customers internal and external,data quality ,more access to learning resources,I'd love to be able to move the data and modeling into a 3d space that i could visually manipulate it :) ,the value proposition- and proper implementation,better communication,,Stephen Few,Same,female,46 - 55,USA or Canada,multi,Private sector
3/4/2017 17:09:59,10,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Consultant,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Consultant,,,,,,50,10,10,10,20,Excel,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;dot plot scatterplot,Product Managers;Executives,Moderate;Expert,Weekly,Analysis;Summarization,Consultative,Slow change in people's mindsets,Data quality,Learn R,Better ETL,Effectiveness is better than illustration,More manager support,Situation evaluation,Stephen Few,Much more,male,46 - 55,Europe,white,Private sector
3/7/2017 7:57:31,10,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,Infographic Designer,Data Visualization Role has higher compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Communication;Exploration,Embedded in another team,Graphics,No,Design,20,0,5,70,5,Illustrator;Excel;Other Network Visualization Suite,I'm able to choose my own tools.,Scrollytelling;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Dendrogram;Network Diagram;Raster Map;Flow Diagram,Analysts;Executives;Court,Moderate,Weekly,Analysis;conveying,Collaborative,To many hours behind screen,Too little time,design more,hire somebody to do it,The amount of time the prices takes,Assistent,,Stephen Few,Less,male,46 - 55,Europe,white,Private sector
2/28/2017 16:19:22,10,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Marketing;Research,5,40,10,5,40,Tableau;ggplot;Gephi,I'm able to choose my own tools.,Dashboard;Presentations,Line Chart;Bar Chart;Treemap;Dendrogram;Network Diagram,Analysts;Scientists;Product Managers;Project Managers,Intro,Monthly,Research,Collaborative,Too many etl,Noone cares about it,More project oriented,Know d3,That it's useful,,,Stephen Few;Alberto Cairo,More,male,26 - 35,Europe,white,Private sector
2/27/2017 13:11:28,10,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Vice President IT and Analytics,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,Yes,IT;Business Intelligence and Data Science,20,1,20,5,1,Illustrator;Tableau;ggplot;Other R,I'm able to choose my own tools.,Dashboard;Presentations,Line Chart;Bar Chart;Treemap;Network Diagram;Choropleth Map;Raster Map;Flow Diagram;scatter plot;lollipop;dot plot with jitter;hex map ,General Public;Analysts;Executives,Moderate;Expert,Daily,Analysis;Summarization,Consultative,the structure and organization of the underlying data,the structure and organization of the underlying data,More time spent doing data visualization,want to be able to iterate faster with tools like Tableau but have more expression in design than these tools allow,,,,Stephen Few;Alberto Cairo;Andy Kirk,More,male,36 - 45,USA or Canada,white,Private sector
3/2/2017 1:11:58,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,PhD Student / Scientist,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Communication,Embedded in another team,ggplot2/Pandas Charts,No,Research,20,10,30,5,20,Leaflet;Other R;Other GIS,I'm able to choose my own tools.,Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Choropleth Map;Raster Map,General Public;Scientists,Intro,Weekly,Analysis;Research,Consultative,I'm supposed to do more science instead of data analysis,,software output the target,,Many never learned basic general charting principles,,,Stephen Few;Alberto Cairo;Cole Nussbaumer Knaflic,Same,male,26 - 35,Europe,white,Public sector
2/27/2017 12:43:19,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Owner / Information Designer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Contractor,,,,,,5,5,5,50,15,Illustrator;Excel;D3;Mapbox,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents,Line Chart;Bar Chart;Infographics;Network Diagram;Choropleth Map,General Public;Scientists;nonprofits,Intro;Moderate,Weekly,Analysis;Summarization;Learning,Collaborative,Communicating to organizations why they would want to use dataviz / how it could benefit them.,Communicating the occasional complexity of the dataviz creation process.,More time for professional development.,To be faster so I can experiment a little more within contract constraints.,That quite a bit of thought goes into the work - it isn't just slap-dash graphing.,Clients willing to fund more time and pursue something more original.,Public education on data literacy.,Stephen Few;Alberto Cairo;Heather Krause,Much more,female,26 - 35,USA or Canada,white,Mixed
2/27/2017 16:33:43,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Director of Data & Design,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Consultant,,,,,,,,,,,Excel;Tableau;D3;Leaflet;Mapbox,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Documents;Presentations,Line Chart;Bar Chart;Choropleth Map;Flow Diagram;Sankey,General Public;Analysts;Project Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning;Explanation,Collaborative,Administration tasks take up too much time,Keeping up with the latest tools and technologies can be exhausting. Explaining to a client why a 3D chart on a globe is probably not very effective.,More time to explore and experiment.,More time to explore and experiment.,That going from effective to professional takes way more time than you think even though only small things are being changed.,Less administration,How can you become a part of the community- especially if you're not good with twitter?,Stephen Few;Alberto Cairo;Moritz Stefaner;Amanda Cox;Lena Groeger;Kim Rees,More,male,36 - 45,USA or Canada,white,Private sector
2/27/2017 13:25:33,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,BI analyst,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Communication;Exploration,Both,Completely custom,No,Design;Engineering,10,5,0,0,60,Tableau;Plotly;Pandas,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Flow Diagram,Analysts;Project Managers,Moderate,Monthly,Analysis;Summarization,Consultative,Preset chart types are limiting,Not doing enough of it,Being able to produce more visualizations,Freedom around tools- use for internal tool,Importance of considering pre-attentive attributes,Focus on visuals for internal consumption as opposed to external,Lessons learned after dashboards/visuals implementation- usage etc,Stephen Few;Alberto Cairo;Nadieh Bremer,Much more,male,26 - 35,USA or Canada,white,Private sector
3/1/2017 11:31:17,8,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Specialist in Health Metrics,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,Research;Public Health Areas,20,5,60,10,30,Tableau;Mapbox;ArcGIS;QGIS,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Treemap;Choropleth Map;Raster Map;Flow Diagram;Scatter plot;Boxplot;Slopechart;Dotplot,General Public;Analysts;Scientists;Medical Professionals;Project Managers;Executives,Moderate,Weekly,Analysis;Summarization;Learning;Research,Collaborative,Managers and some peers don't recognize the contribution we can do to reach the strategic objectives of the organization,"1) Some people prefer type of charts and use of color scheme that are not suitable to effectively communicate the key message.
2) Some times- people don't understand and are not able to interpret some type of charts- e.g. boxplots- scatter plots.",Strengthen the collaboration with peers and encourage the team work,"1) Share skills- knowledge- ideas- and results with peers.
2) Improve/encourage active interaction with the target audience ",How relevant is transforming data in information and insight- and the relevance of data visualization to communicate key messages- insight and stories.,Recognize the value of data science- analysis and visualization,,Stephen Few;Alberto Cairo;Nathan Yau,More,male,46 - 55,USA or Canada,hispanic,Not-for-profit
3/1/2017 11:18:10,10,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Communication;Exploration,Both,GIS;Completely custom,No,,50,10,10,20,10,Illustrator;Excel;ggplot;ArcGIS,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Infographics;Choropleth Map;Raster Map;Flow Diagram,General Public;Scientists,Intro,Monthly,Analysis;Summarization;Research,Collaborative,Few understand the importance of design,Few understand the importance of design,I would like people to understand that not only the content is important,Give me more time,They see it as something superfluos ,"Leaders saying ""design is king!""",,Stephen Few;Alberto Cairo;Stephanie Evergreen;Tufte,Much more,male,36 - 45,Europe,white,Not-for-profit
2/28/2017 2:29:58,4,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Business Analytics Consultant,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Exploration,Embedded in another team,Business Intelligence Tools,No,IT,20,45,0,5,30,Excel;Tableau;Power BI;Qlik;D3;Pandas;Other Python,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Treemap,General Public;Analysts;Product Managers;Project Managers;Executives,Intro;Moderate,Weekly,Analysis;Summarization,Consultative,Lack of documented business rules,Too few are interested in learning how to read other visualizations than tables and barcharts,Do the same work- but sit within another department so be closer to the end users and not IT,Have more freedom in how the final visualization look like,How much effort it is backend to create the final visualization.,More time for creativity,Best practices- challenges with provided feedback- ,Stephen Few;Andy Kirk;Alberto Cairo,More,male,26 - 35,Europe,white,Private sector
3/2/2017 6:50:41,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Reporting Services and Information Strategist,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools,No,Engineering;IT,20,20,10,10,10,Excel;Power BI,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Flow Diagram,Medical Professionals;Project Managers;Executives,Moderate;Expert,Daily,Analysis;Summarization;Learning;Research,Collaborative,Dirty or unreliable data,Deciding which visual to use,,,How difficult it is,,,Stephen Few;Cole Nussbaumer Knaflic,More,male,36 - 45,USA or Canada,white,Private sector
2/28/2017 2:54:19,6,,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Operations Analyst,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Communication;Exploration,Both,Business Intelligence Tools;Excel,No,Insurance,30,10,20,,10,Excel;Qlik;Other BI,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Presentations,Line Chart;Bar Chart;Infographics;Flow Diagram,Analysts;Executives;Internal Business owners ,Expert,Monthly,Analysis;Summarization;Decision making ,Consultative,Data clarity ,Tools,Less bureaucracy ,Better tools ,Time it takes to analyse data,Less politics between senior management ,,Stephen Few;Cole Nussbaumer Knaflic,More,female,46 - 55,Europe,white,Private sector
3/1/2017 12:24:53,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Director of Market Intelligence,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis,Embedded in another team,Business Intelligence Tools,No,Research,5,15,0,0,20,Excel;Tableau,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;boxplot,General Public;Analysts;Engineers;Executives,Moderate,Monthly,Learning,Consultative,need a skilled data visualization (beyond how the tools work),I can't work the tools well enough,i'd have a high level data visualization person on staff,it would be more elegant- cleaner,how much effort goes into it,,where can i find people that truly understand the art/science of data viz not just the tools,Stephen Few;Tufte,Much Less,male,36 - 45,USA or Canada,white,Private sector
3/5/2017 23:34:10,9,Bachelors,Mostly Self-Taught,Intended to work in data visualization,Yes,Data Visualization Manager/ Practice Head,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Exploration;Product,Separate data visualization team,Business Intelligence Tools;Completely custom,Yes,Design,50,0,,40,10,Illustrator;Excel;Tableau;Microstrategy;Power BI;Qlik;D3;Angular,We have a set list of tools we're expected to use for data visualization.,Dashboard;Scrollytelling;Documents;Presentations;Mobile BI Applications,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Choropleth Map;Flow Diagram,Analysts;Executives,Moderate;Expert,Daily,Analysis;Research;For taking Business Decisions,Consultative,Getting right skill set to do Data Visualization work,Maintaining a perfect balance between UI and Data Representation. Like of understanding to represent data effectively- changing the end user mind set to analyze data effectively- convening end user for selecting appropriate use of visualization ,Get rid of visualization limitations of the BI tools. Each BI tool has it own capabilities and limitations it would be good to have a separate visualization platform which works on BI tools.,Maintain a perfect balance between Data Visualization best practices and managing end users look and feel requirements,Most of them feel Data Visualization is just enhancing look and feel of dashboard and mobile application where as DV is all about representing data effectively. ,BI vendors needs to be matured enough to come with more advance visualizations which represents large amount data effectively consuming lesser real estate.,Lead by examples.Most of the thought leaders talk about DV and everybody appreciates importance of it but there very less visualization or dashboard- BI apps examples which shows a perfect balance between UI and DV and what works well from end user preservative. ,Stephen Few;Tufte,Much more,male,36 - 45,Asia,asian,Private sector
2/28/2017 13:35:44,5,,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,ggplot2/Pandas Charts;General charting libraries;Excel,No,Insights,15,10,34,1,40,Excel;Plotly;Leaflet;ggplot;Other R,I'm able to choose my own tools.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Treemap;Choropleth Map,Analysts;Fundraisers,Moderate,Monthly,Analysis;Summarization,Subordinate,Computer memory,Tools for deployment,Clearly delineated projects,More robust style templates,The effort required for good work,Greater client understanding of charts that aren't a bar or line,Better tutorials on how to deliver and deploy interactive charts,Stephen Few;Tufte;Bob Rudis,More,male,36 - 45,Oceania,white,Private sector
2/27/2017 18:09:18,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Visualization Analyst,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview,Embedded in another team,Business Intelligence Tools,No,Design;Engineering;Marketing;Research;IT,60,0,0,10,30,Tableau,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Static Web Page,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Scatterplot,Analysts;Executives,Moderate,Monthly,Analysis;Summarization,Consultative,Data prep- clients not understanding their own data,Clients want crosstabs because they don't trust the visuals. Also clients who insist on bad chart types. ,,,I spend the majority of my time getting to know the data and shaping/wrangling/cleaning it. And a small portion of time vizzing. ,Comp. ,,Stephen Few;Tufte;David McCandless;Andy Kriebel;Ryan Sleeper,Same,male,26 - 35,USA or Canada,white,Private sector
2/28/2017 8:05:45,4,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Software Engineer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Summary/Overview;Communication;Exploration,Embedded in another team,Completely custom,No,Engineering,25,25,0,0,25,D3,I'm able to choose my own tools.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Pie Chart,General Public;Project Managers;Executives,Moderate,Weekly,Analysis;Research,Consultative,Lack of professionalism,Too wide of an audience,My wage,,,,More on dashboards,Stephen Few;Tufte;Nathan Yau,More,male,26 - 35,USA or Canada,hispanic,Private sector
2/27/2017 21:58:13,5,Bachelors,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Viz Engineer,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Engineering;Marketing;Research;IT,55,10,5,10,20,Tableau;Qlik;D3;Highcharts;Recharts;React,We have a set list of tools we're expected to use for data visualization.,Dashboard;Scrollytelling;Static Web Page;Email,Line Chart;Bar Chart;Choropleth Map;Flow Diagram,General Public;Analysts;Engineers;Scientists;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Daily,Entertainment;Analysis;Summarization;Learning;Research,Collaborative,Stuck pumping out Tableau dashboards instead of custom viz.,Length of time and complexity in creating custom charts and dirty data.,More collaboration- constructive criticism and feedback on viz/dashboards. Training for end users to understand the benefits and patterns of different chart types.,Less time doing Data Engineering and more time developing custom viz and learning new JavaScript libraries.,Appreciation for insights when looking at multi dimensional data in a viz compared to a table. Lack of patience to understand and learn different chart types.,Constructive criticism on existing viz- similar to how artist negatively and positively judge work.,Platform agnostic and focus on effective and impactful viz.,Stephen Few;Mike Bostock,Much more,male,26 - 35,USA or Canada,native,Private sector
3/2/2017 3:38:32,8,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,head off interactive reporting department,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Marketing;Exploration,Separate data visualization team,Business Intelligence Tools,No,IT,75,5,0,10,10,Other BI,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Treemap;Network Diagram,General Public;Analysts;Engineers;Project Managers;Executives,Moderate;Expert,Daily,Analysis;Summarization,Collaborative,the changement management for people that use excel for years and don't see at first look the adavntage of dat visualization tools,the low flexibility of the tools,,having more control in the tools i used,the added value against the traditionnal BI & excel,having a more flexible tool,,Stephen Few;Mike Bostock;Nadieh Bremer,Much more,male,36 - 45,Europe,white,Private sector
3/1/2017 13:04:52,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Analyst,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration;Front line management;Operational Reporting;Research,Embedded in another team,Business Intelligence Tools;Excel,No,Sales;Operations;Actuarial,10,20,10,20,20,Excel;SSRS,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Treemap;Choropleth Map;Flow Diagram;Box Plots;Bullet Charts;Sparklines;Control Charts,Project Managers;Executives;Sales and Operations management,Moderate,Weekly,Analysis;Summarization;Performance Management;Staffing;Financial Reporting,Consultative,Bad data,Inadequate Tools- inadequate time to develop better methods,changing source systems to reduce errors and clean data,would like more time to be spent on design,That data visualizations are only as useful as the data behind them.,Better core systems with better data models and better UI validation,I like to see samples and walkthroughs of different methods used to create solutions,Stephen Few;Nathan Yau,Much more,male,36 - 45,USA or Canada,white,Private sector
3/2/2017 12:45:32,5,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Research Scientist 3,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,Research;IT,30,0,50,20,0,Excel;Tableau;SAS Visual Analytics,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Flow Diagram;Word cloud;Area chart,General Public;Analysts;Project Managers;Executives,Intro;Moderate,Daily,Analysis;Summarization;Learning,Consultative,Having too many projects that each need a little work a lot of times and take forever to finally complete them.,Lack of commitment from leadership on choosing a single tool to which we should most commit our efforts.,Be more focused on a few certain projects,Have a single tool accepted by all in the organization,What data viz can provide them - they think too narrowly,Having a stronger directive on which projects to expend extra effort,A crucial topic is how to get an audience to understand and make the most of a given data visualization,Stephen Few;Nathan Yau,Much more,female,26 - 35,USA or Canada,white,Public sector
3/2/2017 3:17:25,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Performance Officer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,Business support,10,10,10,10,40,Excel;D3;ArcGIS,We have a set list of tools we're expected to use for data visualization.,Documents,Line Chart;Bar Chart;Infographics;Flow Diagram,General Public;Teachers;Managers,Moderate,Monthly,Analysis;Summarization;Learning;Research,Collaborative,Reporting through routine rather than need,Access to tools is limited,More time for experimentation with new tools and techniques,More time available to focus on data vis.,That anything other than a default chart is worth spending time on.,Training in tools and techniques,Ideas,Stephen Few;Purna Duggirala;Nathan Yau,More,male,36 - 45,Europe,white,Public sector
2/27/2017 20:44:57,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,BI Solution Architect,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Consultants (we're small),20,60,0,5,15,Excel;Tableau;Power BI,We have a set list of tools we're expected to use for data visualization.,Dashboard;Scrollytelling;Documents;Presentations,Line Chart;Bar Chart;Treemap;Network Diagram,Depends on the client (I'm a consultant),Moderate,Daily,Analysis;Summarization,Consultative,Using cutting edge tools means they are buggy and not always feature-rich,Other team members don't understand the design process- so quality and aesthetic of data viz varies across team members.,,Make Power BI visualizations better.,Data viz is really the only UI clients see. They don't care how we wrote out ETL or built our data mart. ,,More on exploratory data viz and how to do this in large organizations (provide tools- teach others),Stephen Few;Storytelling with Data;Andy Kirk,Same,female,26 - 35,USA or Canada,hispanic,Private sector
3/3/2017 2:19:07,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Digital Marketing ,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Communication;Marketing,Embedded in another team,Business Intelligence Tools,No,Marketing;IT,20,5,0,30,0,Excel;Tableau;Power BI;Other BI,We have a set list of tools we're expected to use for data visualization.,Dashboard;Scrollytelling;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Flow Diagram;VR/AR Charting,Analysts;Executives,Moderate,Weekly,Analysis;Summarization;Learning;Research,Subordinate,Stakeholders understanding the time it takes,Lack of components in some of the BI tools,Choice of tools myself instead of organisation choosing,Choice of tools myself instead of organisation choosing,Time,more d3 programming support,More courses,Stephen Few,Same,male,46 - 55,Middle East & Africa,white,Private sector
2/28/2017 2:33:25,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Director ,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Consultant,,,,,,20,0,10,20,50,Excel;Tableau,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap,General Public;Analysts;Project Managers;Executives,Expert,Quarterly,Analysis;Summarization;Learning;Research;Decision making,Consultative,Insecure work flow as part of being freelance,Data preparation - professional tools are really expensive ,More secure workflow in data visualisation industry,Better data preparation systems ,I'm the only employee,More secure workflow,How your skill wider community to data viz,Tableau,More,male,36 - 45,Europe,white,Mixed
3/1/2017 11:57:54,2,Bachelors,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration;Mapping;Sales,Both,Business Intelligence Tools;Completely custom,Yes,Design;Engineering;Marketing;Research;Sales,80,,10,,10,Excel;Tableau;ggplot;Other Python;MATPLOT,I'm able to choose my own tools.,Dashboard;Documents;Email,Line Chart;Bar Chart;too many to list here,Engineers;Product Managers,Expert,Weekly,Analysis;Research;Decision making,Collaborative,the tools don't match the speed of my analysis,I have no artistic skills :(,,Make it faster to iterate,How good it could be compared to what the tools allow it to be,,why people save data in PDF,Tableau,Same,male,46 - 55,USA or Canada,multi,Private sector
3/2/2017 6:42:32,1,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Senior Analyst,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Separate data visualization team,Business Intelligence Tools,No,Analytics Department,50,,,,25,Excel;Tableau;ggplot;Other R,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Treemap;Choropleth Map,Project Managers;Executives;salesforce,Moderate;Expert,Weekly,Analysis;Summarization;Research,Consultative,battling the perception that analysis=reporting,"most common response is ""Great! Can we see the list behind that?""",more cooperative time with my own team,more depth,how complicated it is to line up the data and how bad the data actually is,easier access to supervisor,,Tableau,Same,female,36 - 45,USA or Canada,white,Not-for-profit
3/8/2017 13:51:41,10,PhD,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Staff Scientist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools,No,Research,30,0,20,10$,10,Illustrator;Excel;Tableau;Other R;Cytoscape,I'm able to choose my own tools.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Treemap;Sankey;Tile Chart;Scatter Plot;Trellis Plot,Scientists,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Collaborative,Administrative duties,buy-in from management,I would increase my collaborations,I would be able to publish interactive visuals to peer reviewed journals.,How useful it is.,increased buy-in for interactive visualizations,emphasis on using data visualizations for data exploration and analysis,Tableau,Much more,female,46 - 55,USA or Canada,white,Public sector
3/2/2017 9:37:47,6,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Director,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools;Graphics,No,Marketing;Research;IT,10,0,0,5,15,Excel;Tableau;Powerpoint,I'm able to choose my own tools.,Dashboard;Scrollytelling;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics,General Public;Analysts;Executives,Intro,Monthly,Analysis;Summarization;Learning;Research,Subordinate,time it takes to design,time to learn,dedicated data viz staff,make it top priority,It takes time,dedicated staff,how to communicate effectively,Tableau Zen Masters,Much more,female,36 - 45,USA or Canada,,Not-for-profit
3/4/2017 14:34:43,8,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools,No,Engineering;Research,20,20,30,,30,Excel;Tableau;Plotly;Pandas;Other Python,We have a set list of tools we're expected to use for data visualization.,Dashboard;Presentations,Line Chart;Bar Chart;Pie Chart;Flow Diagram,Analysts;Engineers;Executives,Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Consultative,No real code sharing repository,Not everyone understands how long it takes to tweak,Better communication and sharing approaches,Get faster at iterating- more reusable work,How long it takes,Better communication,Sharing work- how to develop viz as teams,Tableau Zen Masters,Same,female,26 - 35,,,Private sector
2/27/2017 18:33:31,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Data Architect,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,IT,10,20,10,10,30,Excel;Tableau;Power BI;Mapbox,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart,General Public;Analysts;Engineers;Executives,Moderate,Daily,Entertainment;Analysis;Learning,Collaborative,,"Other ""priorities"" that aren't as fun",More Data Viz,More time to dedicate to it,The need for shared data connections,,Center of Excellence discussions,Tableau Zen Masters;Tableau Ambassadors;Tableau,Much more,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 14:09:24,7,PhD,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Research Associate,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Exploration,Both,ggplot2/Pandas Charts;General charting libraries;Completely custom,Yes,Research,10,5,5,15,10,Excel;Tableau;D3;Processing;Other Javascript;ggplot;Other R;Java;Vega,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Choropleth Map;Raster Map,General Public;Scientists,Expert,Monthly,Summarization;Research,Collaborative,Alienation of labor as a product of capitalism as a mode of labor relations.,"Reliance on design ""folklore"" rather than empirical evidence of effectiveness.",Pretty much a complete rebuild of academia as a concept- from the top down.,"Being able to present vis as a creative and rhetorical endeavor instead of ""just"" engineering.","The importance of avoiding ""fishing expeditions-"" but really having strong statistical arguments and justifications for examining data in specific ways.",A movement away from one-time/one-audience bespoke vis tools- and towards more general frameworks.,More discussion of the ethics of the improper presentation of data. How bad vis can actually impact decision-making and policy for the worse.,Tableau;Jeffrey Heer;Tamara Munzner,Much more,male,26 - 35,USA or Canada,white,Public sector
2/27/2017 20:26:51,2,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Researcher,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis,Separate data visualization team,Completely custom,Don't Know,Research,25,15,15,15,30,Processing;Leaflet;ggplot;Other R;Pandas;Other Python,I'm able to choose my own tools.,Static Web Page;Documents;Gallery ,Line Chart,Analysts;Scientists,Expert,Weekly,Analysis;Research,Collaborative,Missing data ,Small display media ,Greater focus on vis,Focus on building software rather than one-off projects ,That it requires expertise ,More patient users ,,Tamara Munzner,Much more,male,26 - 35,USA or Canada,white,Public sector
2/28/2017 12:30:48,10,PhD,Mostly Self-Taught,Intended to work in data visualization,No,Research Scientist in Visual Analytics,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration;Research,Embedded in another team,Business Intelligence Tools;Completely custom;Modeling,Don't Know,Engineering;Research,100,0,2,0,1,Tableau;D3;Java,I'm able to choose my own tools.,Embedded in a tool;Research papers and Research prototypes,Treemap;matrices and heatmaps,Analysts;Engineers;Scientists,Expert,Hourly,Analysis;Learning;Research,Collaborative,implementing standard functionalities from scratch due to tool limitations,data preparation- handling large data,collaborate closer with smart machine learning experts,increase reusability,it takes a lot of work- good designs while simple are not trivial to reach,easier ways to get- clean- and handle large data ,seriously reflecting on how to integrate vis with machine learning,Tamara Munzner,Same,male,26 - 35,USA or Canada,middle-eastern,Private sector
3/4/2017 10:44:20,7,PhD,Mostly Self-Taught,Intended to work in data visualization,No,UI and Data Science Expert,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Hired to do data visualization,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration,,Completely custom;General charting libraries,Yes,Design;Engineering,5,20,10,20,5,Excel;Tableau;D3;WebGL;Pandas;React;Vega,I'm able to choose my own tools.,Embedded in a tool,Line Chart;Bar Chart;Network Diagram;Flow Diagram;streamgraph,Analysts;Executives,Moderate;Expert,Daily,Analysis;Research,Consultative,implementing trivial UIs consumes lot of time,try to convince others ,more independence to decide the final design,having more time to research new ways of representing the same data,effectiveness and expressiveness dimensions in the visualization design,more independence for deciding the final design ,more discussion about the relationship between Machine Learning and Visualization,Tamara Munzner,Much more,male,26 - 35,Europe,white,Private sector
3/7/2017 11:38:39,3,,Equal Parts School and Self-Taught,Intended to work in data visualization,Yes,Researcher ,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Exploration,Both,Completely custom,Yes,Design;Engineering,35,35,10,10,10,D3;Other Python;Phovea ,I'm able to choose my own tools.,Embedded in a tool,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram,Analysts;Scientists;Medical Professionals,Intro;Moderate;Expert,Weekly,Research,Collaborative,Getting a dataset for publications,Data preparation ,Less useless meetings ,,,Easier data preparation ,,Tamara Munzner,Same,male,26 - 35,Europe,white,Public sector
2/27/2017 13:01:32,3,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Software Engineer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,General charting libraries;Completely custom,No,Engineering,5,5,0,20,0,D3;Highcharts;Other Javascript;Java;React,I'm able to choose my own tools.,Dashboard;Web application,Line Chart;Bar Chart;Pie Chart;Network Diagram,Analysts;Engineers,Expert,Daily,Analysis;Research,Collaborative,Dealing with legacy code,Vis mostly for marketing/sales purposes rather than end user,Working more on broader architecture,Bigger focus on user tasks,That it's not (just) about cool pictures,More focus on why we do what we do.,Welcome people into vis community- especially people for whom vis will not be their primary focus.,Tamara Munzner;Ben Shneiderman,More,male,36 - 45,USA or Canada,white,Private sector
2/27/2017 22:16:11,5,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Content Developer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Communication;Exploration,Embedded in another team,Completely custom,No,Design;Marketing;Research;IT,60,20,10,30,20,D3;Other Javascript,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations,Line Chart;Bar Chart;Infographics,General Public;Scientists;Project Managers,Intro;Moderate,Hourly,Entertainment;Learning;Research,Collaborative,The diversity of tasks that I'm asked to do,Ambiguous requirements from bosses,clearer mission,more data viz people on the team,what data viz is,Clearer description of tasks and expectations,Frontiers of data viz,Tamara Munzner;Enrico Bertini,More,male,26 - 35,USA or Canada,asian,Not-for-profit
3/1/2017 20:27:21,5,Other,Mostly Self-Taught,Intended to work in data visualization,Yes,Data Visualization Scientist,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Separate data visualization team,Completely custom,Yes,Research,65,10,5,10,10,D3;Other Javascript;React,I'm able to choose my own tools.,Dashboard;Static Web Page;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map;Raster Map;Flow Diagram,Analysts;Engineers;Product Managers,Moderate;Expert,Daily,Analysis;Summarization;Learning;Research,Collaborative,,css,,be a better designer,,,,Tamara Munzner;Mike Bostock;Jeffrey Heer;Ben Shneiderman,More,male,46 - 55,USA or Canada,white,Private sector
3/6/2017 5:26:53,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Creative Director/Founder,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Consultant,,,,,,30,5,0,30,5,Illustrator;Excel;Tableau,I'm able to choose my own tools.,Dashboard;Scrollytelling;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Flow Diagram,General Public;Executives,Intro;Moderate,Weekly,Entertainment;Analysis;Summarization,Collaborative,Finding the right people with the right skills to help me execute my ideas,data quality,,I wish I didn't have to rely on data scientists/coders since I don't have those skills,In most cases- the data doesn't speak for itself...you have to package and present it in a way that inspires action,A more connected community of freelancers,I would love to hear more from other entrepreneurs/freelancers about the business and operations side of things,Tapestry,Same,female,26 - 35,USA or Canada,white,Private sector
3/7/2017 7:52:23,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Scientist,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Research,10,10,40,20,20,Excel;Power BI;Plotly;ggplot;Other R;Pandas;Other Python,I'm able to choose my own tools.,Dashboard;Scrollytelling;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Dendrogram;Network Diagram;3D Chart;Box Plot;Bubble Chart,Executives;Customers,Intro;Moderate,Monthly,Analysis;Learning;Business Decisions,Consultative,Demand is to high- lack of human resource,Building info-graphics- we often find ourselves spending time building out info-graphics by screenshotting images in a dashboards. Having info-graphic templates would be helpful.,How much time it takes to clean the data,more templates,garbage in -> garbage out.. no matter how great a data visualization tool is- if you don't have good data- scope of a beautiful dashboard is limited,templates (power bi has partners that create templates like Data Chant),Best way to deliver predictive analysis findings- we have learned this along the way through trial and error but I think others will benefit from this (not only about the predictive piece but also about the bottom line to the audience),Tony Chu,Same,female,26 - 35,USA or Canada,multi,Private sector
2/28/2017 13:55:20,1,Bachelors,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Economic Data Visualization Specialist,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Communication;Marketing,Both,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Research;Analytics,80,0,0,80,10,Illustrator;Excel;Tableau,I'm able to choose my own tools.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map;Flow Diagram,General Public,Intro;Moderate,Daily,Learning;Research,Collaborative,Too much work- not enough time,Quick turnaround,More time for short-term projects,More time to focus on design and narrative,Good design takes time,,Data viz for social good,Upshot;538,Same,female,25 or younger,USA or Canada,,Private sector
3/1/2017 15:03:24,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Engineering;Research;IT,5,10,50,0,10,Illustrator;Excel;D3;Pandas;Other Python;QGIS;Gephi;Cytoscape,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Choropleth Map;Raster Map,Analysts;Engineers;Scientists;Project Managers;Executives,Moderate,,Analysis;Learning;Research,Consultative,,Limited Deployment options,Doing fewer things at a higher quality,I want my work to be more beautiful and compelling,That everyone needs basic data vis training,,The hard problems: conveying uncertainty- dealing with crappy data- high dimensional data- accessibility in vis- graphs- maps- vis education at all levels. I would like to see more bake offs between existing tools and libraries. I would like ,UW;Alberto Cairo;Tableau;Robert Kosara;Lena Groeger,More,male,26 - 35,USA or Canada,white,Public sector
2/27/2017 12:25:16,5,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Assistant Professor,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration,Embedded in another team,ggplot2/Pandas Charts;Completely custom,No,Research,10,10,25,5,30,D3;Processing;ggplot,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Choropleth Map,General Public;Scientists,Expert,Monthly,Analysis;Summarization;Research,Collaborative,,,,,,,,Val Head;Andy Kirk;Alberto Cairo;Hadley Wickham,Same,male,36 - 45,USA or Canada,white,Not-for-profit
3/8/2017 2:34:49,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Researcher,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration,Embedded in another team,Completely custom,Yes,Research,30,5,5,20,15,D3;Other Javascript;Java;Other MVC,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents,Line Chart;Bar Chart;Pie Chart;Dendrogram;Network Diagram;Geographic Map,General Public;Analysts;Scientists;Executives,Moderate,Daily,Analysis;Summarization;Research,Consultative,Old stack- lack of time for refactoring,I am not good enough,More time for profound roadmap,Becoming better at it,The difficulties with the old stack; browser issues,Refactoring for an up-to-date stack,Maintaining old code,Walter Rafelsberger,Same,male,36 - 45,Europe,,Academic
2/27/2017 19:31:10,4,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Other,Communication;Journalism,Separate data visualization team,Completely custom,Yes,Graphics,30,0,10,10,30,Illustrator;Excel;D3;Other Javascript;ggplot,We have a set list of tools we're expected to use for data visualization.,Static Web Page,Line Chart;Bar Chart;Infographics;Treemap;Choropleth Map;Flow Diagram,General Public;Analysts,Intro,Hourly,Entertainment;Analysis;Summarization,,Needing to constantly convince people the value of data visualization- explaining the kind of data required for data visualization- and making people realize that good data visualization takes time to do,Tight deadlines,Having more time to think things through; have others provide feedback on my work,More experimentation with new forms of data visualization,It's just as a legit form of journalism as text and multimedia; needs time to do it right,Having real authority to say no,how to deal with difficult clients- how to convince decision makers value of custom visualizations that are resource intensive,Washington Post;NYT;Moritz Stefaner,More,female,,,,
2/28/2017 14:25:52,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Director,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Marketing;Analytics,20,10,30,10,30,Excel;Tableau;Plotly;D3;ggplot;Other R;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Documents;Presentations;Email,Line Chart;Bar Chart;Raster Map;Statistical visualizations like box plots,Analysts;Engineers;Scientists;Product Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning,Consultative,,,,,It is not all art. There are well-known principles for how people perceive information and those principles should be followed- in general,,,William Cleveland;Amanda Cox;Junk Charts,Same,male,36 - 45,USA or Canada,white,Public sector
2/27/2017 11:03:55,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools;GGPlot/Pandas Charts;General charting libraries;Completely custom,No,Engineering,50,0,0,50,0,D3;Other Javascript;React,I'm able to choose my own tools.,Dashboard;Custom Application,Line Chart;Bar Chart;Other,Analysts;Engineers;Scientists;Product Managers;Executives,Expert,Weekly,Analysis;Summarization;Learning,Consultative,,,,,,,,,Same,female,,USA or Canada,asian,Private sector
2/27/2017 11:53:16,10,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Design Technologist,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication,Separate data visualization team,Completely custom,Yes,Design;Engineering;Research;Other,50,0,5,20,20,Illustrator;Excel;D3;Processing;Leaflet;WebGL;Other Javascript;Other Python;React;Other,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Custom Application,Line Chart;Bar Chart;Network Diagram;Choropleth Map;Raster Map;3D Chart;VR/AR Charting;Other,General Public;Analysts;Engineers;Scientists;Medical Professionals;Product Managers;Executives,Intro;Moderate;Expert,Monthly,Analysis;Summarization;Learning;Research,Consultative,,,,,,,,,Same,male,36 - 45,USA or Canada,white,Mixed
2/27/2017 12:23:30,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,Design,,,,,,Illustrator;Excel;Tableau;Other R,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Presentations;Email,Line Chart;Bar Chart;Network Diagram;Choropleth Map,General Public;Scientists,Moderate,,,,,,,,,,,,More,,,,,
2/27/2017 12:23:36,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Managing Director,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Other,Analysis;Machine Learning;Summary/Overview;Communication,Both,General charting libraries;Completely custom,Yes,All of it,15,25,80,5,25,D3;Leaflet;Mapbox;Highcharts;Other Javascript;React;plain svg,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Dendrogram;Network Diagram;Custom charts;many,General Public;Analysts;Engineers;Scientists;Medical Professionals;Product Managers;Project Managers;Executives,Expert,Daily,Analysis;Summarization;Research,Collaborative,JavaScript- WebPlatform,Many people doing Data Visualization without understanding Data/Statistics/Business (fancy design but crappy data skills),Elm- Haskell,,,Standards,,,Same,male,36 - 45,Europe,,Private sector
2/27/2017 12:24:00,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Engineer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Engineering;Marketing,60,0,10,0,30,D3;ggplot;Pandas,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart,Analysts;Scientists;Product Managers;Project Managers;Executives,Moderate,Monthly,Analysis;Summarization,Consultative,Siloed ,Requirements unclear/changing,Larger team- more collaborative,More communication between me and teams requesting the dataviz,It’s based on their needs and use-cases- they need to communicate what they want/will be using this for.,Increased collaboration and communication,Tips for beginners,,More,male,25 or younger,USA or Canada,asian,Private sector
2/27/2017 12:25:00,10,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,Yes,Freelancer,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,,Consultant,,,,,,30,5,10,10,5,Illustrator;Tableau;D3;Mapbox;Pandas;Other Python;React,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram;Choropleth Map;Raster Map,General Public;Analysts,Intro;Moderate;Expert,Daily,Entertainment;Analysis;Summarization;Learning;Research,Consultative,,Hard to balance one-offs with long-term sustainable developments,,,,,,,Same,male,36 - 45,,,Mixed
2/27/2017 12:25:26,1,,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Business Analyst,Data Visualization Role has higher compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis,Embedded in another team,Business Intelligence Tools,No,Research,5,10,5,3,10,Excel;Tableau;Power BI;Other BI,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Presentations,Line Chart;Bar Chart;Pie Chart;Flow Diagram,Analysts;Project Managers;Executives,Moderate,Daily,Analysis;Summarization,Collaborative,Lack of time for research (d3- JavaScript- wtc),Inconsistent views,More time for self development,The tools I use,They are accounts- ie I have had to explain weighted averages,Training,More advice on the basics for js style libraries - core js,,Much more,male,26 - 35,Europe,white,Private sector
2/27/2017 12:33:15,5,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,Senior Data visualization Designer,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Engineering,50,0,0,100,70,D3;Highcharts;Mode,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations,Line Chart,General Public,Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Collaborative,,,,More of it,People might be stuck in conventional ways of thinking.,Having a team of dataviz people,That our field is still very fresh and a lot of it is still undefined,,Much more,male,26 - 35,USA or Canada,,Private sector
2/27/2017 12:33:44,7,PhD,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Digital Humanities Specialist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Design;Research,10,20,20,10,20,Excel;D3;ggplot;Other R;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Treemap;Network Diagram;Choropleth Map,General Public;Analysts;Scientists,Intro;Moderate,Weekly,Analysis;Summarization;Learning;Research,Collaborative,Lack of resources,Collaborators don't have a great understanding of the difficulties involved- and the importance of design decisions,,,,,,,Same,male,26 - 35,USA or Canada,white,Public sector
2/27/2017 12:35:50,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Insight Developer,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Consultant,,,,,,10,60,8,2,20,Tableau;Power BI;Plotly;D3;Highcharts;ggplot;Other R,I'm able to choose my own tools.,Static Web Page;Presentations,Line Chart;Bar Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map;Flow Diagram,Analysts;Executives,Moderate,Weekly,Analysis,Consultative,Decisions not made from the visualisations,Not good enough,more persuasive,,,,,,Same,male,36 - 45,Europe,white,Private sector
2/27/2017 12:36:19,7,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Business Intelligence Analyst,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,IT,30,10,0,40,10,Excel;Tableau;Microstrategy,We have a set list of tools we're expected to use for data visualization.,Dashboard;Presentations,Line Chart;Bar Chart;Pie Chart,Analysts;Product Managers;Project Managers;Executives,Moderate,Daily,Analysis;Learning;Research,Collaborative,,,,,,,,,More,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 12:39:13,10,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,Information Designer,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Hired to do data visualization,Consultant,,,,,,40,10,10,30,10,Illustrator;Processing;Other Python,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Custom,General Public,Intro;Moderate,Daily,Entertainment;Learning,Consultative,,,,,,,,,Same,male,,USA or Canada,white,
2/27/2017 12:42:13,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Editorial Developer,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Summary/Overview;Communication,Embedded in another team,General charting libraries;Completely custom,No,Design;IT;Editorial,30,0,0,5,15,Excel;D3;Highcharts,I'm able to choose my own tools.,Scrollytelling;Static Web Page,Line Chart;Bar Chart;Choropleth Map;Flow Diagram;Heatmap,General Public,Intro,Monthly,Entertainment;Learning,Subordinate,Not having the assets or skills to tell my own data stories- in many cases.,Getting my code to play nicely with the rest of our content management system.,A greater team emphasis on generating dataviz ideas.,,Other people are lacking in the skills or interest (or both) to create good data stories.,,,,More,male,26 - 35,USA or Canada,white,Not-for-profit
2/27/2017 12:43:45,6,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Director of Data Visualization,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;Completely custom,Yes,org is small.,40,,,40,20,Illustrator;Excel;Tableau;D3;Mapbox,I'm able to choose my own tools.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Infographics;Network Diagram;Choropleth Map,General Public;Analysts;Project Managers;Executives,Intro;Moderate,Weekly,Entertainment;Analysis;Summarization,Consultative,Communication,Access to data,More dataviz requirements,Wider audience,,More data,,,Much more,male,36 - 45,USA or Canada,white,Private sector
2/27/2017 12:45:05,10,Other,Mostly Self-Taught,Intended to work in data visualization,No,Graphic Designer,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Communication,Both,General charting libraries;Completely custom,No,Design,50,0,0,50,5,Illustrator;D3;Other Javascript;Data wrapper;Google sheets,I'm able to choose my own tools.,Static Web Page;Documents,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Choropleth Map;Raster Map,Editorial staff,Intro;Moderate,Weekly,Entertainment,Collaborative,,,,,,,,,Same,male,26 - 35,Europe,white,Private sector
2/27/2017 12:45:50,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Software Developer,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,Completely custom,No,Design;Engineering;IT,10,10,10,10,10,D3,We have a set list of tools we're expected to use for data visualization.,Static Web Page,Line Chart;Bar Chart;Chord Diagram,Analysts;Engineers;Project Managers,Expert,Weekly,Analysis;Summarization;Learning;Research,Collaborative,,,,,,,,,More,male,25 or younger,USA or Canada,white,Public sector
2/27/2017 12:47:32,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Both,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Research;IT,10,40,20,5,25,Excel;D3;Other Javascript;Pandas;Other Python;React,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations,Line Chart;Bar Chart;Pie Chart;Dendrogram,General Public;Scientists,Moderate;Expert,Daily,Research,Collaborative,,,,,,,,,Same,,,,,Public sector
2/27/2017 12:48:15,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Research Computer Scientist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis,Embedded in another team,Business Intelligence Tools;General charting libraries;Completely custom,No,Research,50,50,50,50,80,Tableau;D3;Other Javascript;Other Python;Java,I'm able to choose my own tools.,Embedded in a tool;Documents,Network Diagram;Flow Diagram,Analysts;Scientists,Expert,Quarterly,Analysis;Research,Consultative,,,,,,,,,Much more,male,46 - 55,USA or Canada,white,Public sector
2/27/2017 12:49:02,6,Masters,Mostly Self-Taught,Intended to work in data visualization,No,CTO,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Exploration,Embedded in another team,,Yes,Design;Engineering;Research;IT,50,30,10,0,0,React,I'm able to choose my own tools.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram;Flow Diagram,Analysts;Executives,Moderate,Weekly,Analysis;Exploration/discovery,Collaborative,,,,,,,,,,,26 - 35,Europe,,Private sector
2/27/2017 12:50:52,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Development Operations Associate,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Marketing;Research,10,30,5,0,30,Excel;Tableau;Power BI;ggplot;Pandas;Other Python,I'm able to choose my own tools.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart,General Public;Analysts;Project Managers;Executives,Expert,Weekly,Entertainment;Analysis;Summarization;Research,Consultative,Meeting requirements set by individuals who don't understand the underlying data structure.,Having to do them in Excel,Better data quality,More data viz- more independence with creating data viz.,The importance of non-static data visualizations. Allowing data viz experts to lead data exploration process.,Management change,,,More,male,26 - 35,USA or Canada,,Not-for-profit
2/27/2017 12:52:20,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,ggplot2/Pandas Charts;Completely custom,No,Engineering;IT,,,,,,D3;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Pie Chart;Network Diagram;3D Chart,Analysts;Product Managers;Project Managers,Expert,Daily,Analysis;Summarization;Research,Collaborative,,,,,,,,,More,,,,,Private sector
2/27/2017 12:56:34,9,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,GIS Analyst,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,ggplot2/Pandas Charts;Completely custom,No,IT,10,5,5,10,70,Illustrator;Excel;D3;Leaflet;ggplot,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Choropleth Map;Raster Map;Flow Diagram,General Public;Analysts;Scientists,Intro,Daily,Summarization,Collaborative,"Resistance to innovation in visualisation. Keeping the same format for decades because ""that's how it's always been done""",,More flexibility,More innovation,Don't understand that data viz is a narrative,,I like blogs- especially those outlining thought processes,,More,male,26 - 35,Europe,white,Public sector
2/27/2017 12:58:24,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Visualization Analyst,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Marketing,Embedded in another team,Business Intelligence Tools,No,Analysis,90,5,0,5,,Tableau,We have a set list of tools we're expected to use for data visualization.,Dashboard,Line Chart;Bar Chart,Analysts;Executives,Moderate;Expert,Monthly,Analysis;Summarization,Consultative,,,,,,,,,More,female,25 or younger,USA or Canada,white,Private sector
2/27/2017 12:58:34,5,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,UX Engineer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration,Both,Completely custom,No,Design;Engineering,30,5,5,55,5,D3;Other Javascript;React,I'm able to choose my own tools.,Embedded in a tool,Line Chart;Bar Chart,Analysts;Engineers,Moderate;Expert,Hourly,Analysis;Summarization;Research,Consultative,,,,,,,,,Much more,female,26 - 35,USA or Canada,white,Private sector
2/27/2017 12:59:20,5,Masters,Mostly Self-Taught,,No,Research Software Developer,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Summary/Overview;Communication;Exploration,Separate data visualization team,Completely custom,No,Research;IT,80,10,,5,5,D3;Other Javascript;Other Python,I'm able to choose my own tools.,Web application,Line Chart;Bar Chart;Dendrogram;Network Diagram;Many custom charts,Scientists,Expert,Weekly,Summarization;Learning;Research;Exploration,Collaborative,Not working with other devs/visualizers,Distilling large amounts of data into browser-handleable forms,Work with more people,,,,,,Same,,,,,
2/27/2017 13:03:08,2,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Consultant,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Consultant,,,,,,30,0,20,0,20,Illustrator;Excel;Leaflet;Mapbox;Highcharts;ggplot;Raw;Carto,I'm able to choose my own tools.,Dashboard;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram;Choropleth Map,Analysts;Executives;Marketing Managers,Moderate,Weekly,Analysis;Learning,Collaborative,,,,,that it is important to pay attention to details,,,,More,female,26 - 35,,white,Private sector
2/27/2017 13:03:27,10,PhD,Mostly from School,Intended to work in data visualization,No,Professor,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Communication;Exploration,Both,Completely custom,Yes,Design;Research,5,10,5,10,10,D3;WebGL;Other Javascript;Other R,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Bar Chart;Network Diagram,General Public;Analysts;Scientists,Intro;Moderate;Expert,Weekly,Entertainment;Learning;Research,Collaborative,doing many other things that are not data visualization but are necessary to get to the visualization bit ,not having enough time for it,reduce admin work and focus more on visualization design and research,dedicate more time to it,some see in visualization pretty pictures and do not acknowledge the design- engineering and research involved,develop a visualization focus with reduction of other duties ,how to run projects in networks of diverse but complementary professionals ,,More,male,26 - 35,Europe,white,Public sector
2/27/2017 13:04:18,5,Bachelors,Mostly Self-Taught,Intended to work in data visualization,Yes,Graphics Editor,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Separate data visualization team,ggplot2/Pandas Charts;Completely custom;Graphics;GIS,No,Design,40,0,20,20,20,Illustrator;Excel;D3;ggplot;QGIS,,,Line Chart;Bar Chart;Infographics;Choropleth Map,General Public,Intro,Monthly,Entertainment;Analysis;Summarization;Learning,,,,,,,,,,Same,male,25 or younger,USA or Canada,white,Private sector
2/27/2017 13:04:29,6,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Web Designer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Both,Business Intelligence Tools;General charting libraries;Completely custom,No,Design,,,,,,Excel;D3;Mapbox;Highcharts,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Dendrogram;Network Diagram;Choropleth Map;Raster Map;Flow Diagram,General Public;Executives,Moderate,Monthly,Analysis;Summarization;Research,Consultative,,,,,,,,,,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 13:05:43,10,PhD,Mostly Self-Taught,Intended to work in data visualization,No,Research Scientist,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Student,,,,,,12,14,54,34,7,D3,I'm able to choose my own tools.,Scrollytelling,Bar Chart,Analysts,Intro,Daily,Entertainment;Analysis;Learning;Research,Collaborative,,,,,,,,,,,,,,
2/27/2017 13:06:15,8,PhD,Mostly from School,Intended to work in data visualization,No,Data Visualization Engineer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,Completely custom,Yes,Design;Engineering,80,10,0,10,0,D3;Leaflet;Mapbox;Pandas;Other Python;React,I'm able to choose my own tools.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Dendrogram;Network Diagram;Choropleth Map;Raster Map,Analysts;Engineers;Scientists;Executives,Moderate;Expert,Hourly,Analysis;Summarization,Consultative,I don't like data piping,Integrating them with the app architecture,Having the choice of app architecture,Working with other datavis engineers,Design is just a small part of datavis engineering,Having a clear data API layer instead of recreating it each time,Programming patterns to share charts- integration layer- data layer,,Same,male,36 - 45,USA or Canada,white,Private sector
2/27/2017 13:06:27,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Communications Specialist,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Both,Business Intelligence Tools,No,Research,20,10,0,30,10,Illustrator;Excel;D3;RAW,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram;Choropleth Map;Flow Diagram,General Public;Government,Intro;Moderate,Monthly,Analysis;Learning;decision-making,Consultative,Mostly everything that is _not_ involved in the work of data viz,I'm not a programmer- so my tool use is limited to the GUIs,You mean aside from getting paid more? ,,It took me some time to teach this so it's not true anymore- but the length of time it takes to develop an effective visualization was severely under-appreciated at first.,If I could write code.,More meetups in the Bay Area (but if we're being totally honest: the meetup would have to occur within a few blocks of my home in Oakland since I have a 5 yr old kid and my social capabilities are limited).,,Much more,male,26 - 35,USA or Canada,white,Not-for-profit
2/27/2017 13:11:27,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Institutional Research Analyst,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,,Business Intelligence Tools,No,Research,15,0,15,5,25,Excel;Tableau;SPSS,We have a set list of tools we're expected to use for data visualization.,Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart,General Public;Project Managers;Executives,Intro;Moderate,Monthly,Analysis;Summarization;Learning;Research,Collaborative,Not enough time. Too many projects. ,,,More time to devote ,,,,,Much more,male,26 - 35,USA or Canada,white,Public sector
2/27/2017 13:13:23,3,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Datajournalist,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Communication,Embedded in another team,Completely custom,No,Newsroom,60,8,8,16,8,Illustrator;Excel;D3;Leaflet;Other Javascript;SVG;C#;RDBMS;QGis;,I'm able to choose my own tools.,Newsarticles via CMS (Drupal),Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map;Raster Map,General Public,Intro,,News ,Subordinate,Deadlines- weird decisions,Not enough ambition- lack of skills,Better skilled colleagues ,More storytelling ,I'm a programmer among journalists: they have no clue,Better development of ideas and iterative approach,,,More,male,36 - 45,Europe,white,Public sector
2/27/2017 13:13:32,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Freelancer specializing in data visualization,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Consultant,,,,,,60,0,0,20,20,D3;React,I'm able to choose my own tools.,Scrollytelling;Interactive Web Page,Line Chart;Bar Chart;Network Diagram;Bespoke visualizations,General Public,Intro,,Entertainment;Learning,,Answering email,Data cleaning,Get help in managing client requests and relationships,,That it's more than about making it pretty- and that every component should have a purpose. Also that it's highly exploratory work- in trying to understand the data and how to visualize it.,Better education/training on how to read a visualization,How to communicate a new visualization idea to general public,,Same,female,26 - 35,USA or Canada,,Mixed
2/27/2017 13:22:38,5,PhD,Mostly Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Machine Learning;Exploration,Embedded in another team,ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Research,,,,,,D3;Leaflet;Mapbox;Highcharts;Other Javascript;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Static Web Page,Network Diagram;Choropleth Map;boxplots;scatterplots,General Public;Engineers;Scientists,Moderate,Monthly,Summarization;Learning,Collaborative,,Finding good data,,,,,,,More,male,36 - 45,MIddle East & Africa,white,Public sector
2/27/2017 13:28:02,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Contractor,,,,,,40,50,0,20,10,SSRS,We have a set list of tools we're expected to use for data visualization.,Documents,Line Chart;Bar Chart;Choropleth Map,Project Managers;Executives,Moderate,Daily,Analysis,Consultative,,Not being able to choose my tools ,,,,,,,Same,male,26 - 35,Europe,white,Private sector
2/27/2017 13:32:23,6,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Visual Journalist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Separate data visualization team,General charting libraries;Completely custom,No,Design,33,0,0,33,33,Illustrator;Excel;D3;Leaflet;Mapbox;WebGL;Other Javascript,I'm able to choose my own tools.,Scrollytelling;Static Web Page,Line Chart;Bar Chart;Infographics;Network Diagram;Choropleth Map;Raster Map,General Public,Intro;Moderate;Expert,Weekly,Entertainment;Summarization,Consultative,,,,,,,,,More,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 13:34:18,3,Masters,Mostly Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,creative technologist (freelance),Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Hired to do data visualization,Consultant,,,,,,,,0,,,Excel;D3;Processing;Leaflet;Mapbox;WebGL;Highcharts;Recharts;Other Javascript;React;Other MVC;clojure,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;interactive,Line Chart;Bar Chart;Pie Chart;Treemap;Choropleth Map;Flow Diagram,General Public;Engineers;NGOs,Intro;Moderate,Daily,Analysis;Summarization;Research,Collaborative,finding interesting projects,,so I wouldn't have to worry about clients ;),,,,,,Much more,male,26 - 35,Europe,,Mixed
2/27/2017 13:37:43,,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Exploration,Embedded in another team,General charting libraries;Completely custom,No,Design;IT,40,,,50,10,Illustrator;Excel;Tableau;D3;Highcharts;Other Javascript,I'm able to choose my own tools.,Dashboard;Static Web Page;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Flow Diagram,General Public;Executives;Faculty,Moderate,Monthly,Analysis;Research,Collaborative,Inconsistent goals; stakeholders request visuals before data/content,,more time for prototyping- planning- blueprinting,Would like to increase programming skills to prototype faster,The time involved for creative- effective visualizations,More time to plan and create project plans,,,Same,female,46 - 55,USA or Canada,white,Public sector
2/27/2017 13:41:33,3,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Developer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing,Separate data visualization team,Completely custom,Yes,Design;Marketing;IT,40,10,10,10,10,Illustrator;Excel;D3;Mapbox;WebGL;Other Javascript;React;qgis,We have a set list of tools we're expected to use for data visualization.,Dashboard;Scrollytelling;Static Web Page;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Network Diagram;Choropleth Map;Raster Map;Flow Diagram;3D Chart,General Public;Analysts;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Quarterly,Entertainment;Analysis;Summarization;Learning;Research,Consultative,Lack of creative input/ability to story tell,expectations,more creative input in the whole process,,,,,,More,male,25 or younger,Europe,,Private sector
2/27/2017 13:43:54,6,Masters,Mostly from School,Intended to work in data visualization,Yes,Information Designer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Consultant,,,,,,2,0,0,98,0,Illustrator;Excel,I'm able to choose my own tools.,Embedded in a tool;Scrollytelling;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Flow Diagram,General Public;Scientists,Intro;Moderate,Monthly,Entertainment;Analysis;Research,Collaborative,Content is not interesting or socially valuable. ,Data visualization is a tool but often is treated as a must-have or nice accessory,The scope of it. ,,,,Less tweets that says 'Amazing' in it and way more critical thinking. ,,Same,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 13:48:14,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Research Engineer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Communication;Exploration,Embedded in another team,Business Intelligence Tools;Completely custom,No,Research,10,30,20,5,35,Tableau;D3;Leaflet;Mapbox;WebGL,I'm able to choose my own tools.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Network Diagram;Choropleth Map,General Public;Executives,Moderate,Weekly,Analysis;Summarization,Collaborative,Dataviz is a viewed as subsidiary to data science,Fiew collegues consider it important to convey information about data. ,The organization should have muco more consideration for dataviz practice and results ,Working closer to designers in everyday activity ,Main focus on data science- exploration or navigstion of data is not perceived as useful ,Have timeline of activities more precise ,Dataviz should be part of the entire data procrssing activity- so kuch attention to integration with data science and design.,,Much more,male,36 - 45,Europe,white,Private sector
2/27/2017 13:49:35,0,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Curator,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Both,Business Intelligence Tools;Completely custom,No,Research,20,10,10,10,50,Illustrator;Excel;Tableau;D3;Venngage,I'm able to choose my own tools.,Dashboard;Documents;Presentations,Bar Chart;Pie Chart;Infographics;Network Diagram,Executives;Board Members,Intro,Quarterly,Analysis;Summarization;Learning;Research,Subordinate,Data wrangling,Coding proficiency,,Coding proficiency,,,,,Much more,,,,,Not-for-profit
2/27/2017 13:53:28,4,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Research Specialist,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Research;IT,10,15,10,5,60,ggplot;Other R,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Network Diagram;Flow Diagram,General Public;Scientists;Project Managers;Executives,Intro;Moderate;Expert,Monthly,Learning;Research,Collaborative,Data-based research is- in general- a very new endeavor for my institution- and so there is no established career path outside my current project if I want to remain working here.,Incredible amount of data cleanup work reduces time spent on statistical modeling and visualization design.,Expand my responsibilities past this single project,I would like to gain more experience in interact visualization design.,They do not understand that data-based research and visualization is an iterative process that requires many rounds of discussion and revision.,,,,More,male,26 - 35,USA or Canada,white,Not-for-profit
2/27/2017 13:55:05,3,Other,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Lead UI Developer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools;Completely custom,Yes,Design;Engineering;Research,20,20,10,30,20,Tableau;D3;WebGL,I'm able to choose my own tools.,Dashboard;Static Web Page;Presentations,Line Chart;Pie Chart;Treemap;Network Diagram;Raster Map;Flow Diagram;3D Chart,Analysts;Engineers;Executives,Expert,Daily,Analysis;Learning;Research,Consultative,time constraints ,data formats,,,,,,,,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 13:58:19,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Web Developer,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Communication;Exploration,Both,ggplot2/Pandas Charts;Completely custom,No,Small team of 3 developers at a university lab,60,0,0,40,0,D3;Leaflet,I'm able to choose my own tools.,Embedded in a tool;Static Web Page,Line Chart;Bar Chart;Raster Map,General Public;Scientists,Intro;Moderate;Expert,Monthly,Analysis;Research,Collaborative,,,,,,,,,More,female,36 - 45,USA or Canada,asian,Public sector
2/27/2017 14:00:44,6,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Analyst,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Consultant,,,,,,35,10,10,5,40,Illustrator;Tableau;Plotly;D3;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents,Line Chart;Bar Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map;Flow Diagram,General Public;Analysts,Intro;Moderate,Monthly,Entertainment;Analysis;Summarization;Learning,Consultative,Not enough iteration,Unclear end-user,,,,,,,More,female,26 - 35,USA or Canada,white,Mixed
2/27/2017 14:02:04,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,PhD Student / Researcher,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts;Completely custom,No,Research,10,10,40,5,10,Plotly;D3;ggplot;Other R,I'm able to choose my own tools.,Static Web Page;Documents;Presentations;Shiny Apps,Line Chart;Bar Chart;Network Diagram;Choropleth Map;Scatter plots;Coef plots,General Public;Scientists,Expert,Monthly,Analysis;Summarization;Learning;Research,Collaborative,Not enough time for implementing ideas,Very few creative minds around to share/talk/discuss in real,Make the others more aware of the chances of good data vis,Learn more,The simplicity of messages you can transport with data vis coméared to tables/text,Time,,,More,male,26 - 35,Europe,,Public sector
2/27/2017 14:18:45,6,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Visualization Consultant,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis,Embedded in another team,Business Intelligence Tools,No,IT,60,10,10,20,,Excel;Tableau;Microstrategy;Power BI;D3;Cognos,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram;Choropleth Map;Flow Diagram,Analysts;Engineers;Product Managers;Project Managers,Moderate,Weekly,Analysis;Summarization,Consultative,Technological limitations,I can't choose my own tool,The location,More flexibility,Theyre not exposed to analytics or data visualization so they dont see much value in it,,Discussion and knowledge sharing,,Much more,female,26 - 35,USA or Canada,asian,Private sector
2/27/2017 14:38:44,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Engineering,,,,,,D3;Highcharts;Recharts;Other Javascript;React;Angular;Vega,I'm able to choose my own tools.,Embedded in a tool,Line Chart;Bar Chart;Pie Chart;Treemap,,Intro,Daily,Analysis,Collaborative,,,,,,,,,More,,,,,Private sector
2/27/2017 14:43:16,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Architect,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools,Yes,Finance,50,20,5,5,20,Tableau,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Choropleth Map;Flow Diagram,General Public;Analysts;Executives,Moderate,Daily,Analysis;Summarization;Research;Decision-making,Collaborative,Disparate data sources,,,,How much time it takes to prep data. ,,,,Same,male,26 - 35,USA or Canada,white,Public sector
2/27/2017 14:45:37,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Graphics Director,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Contractor,,,,,,30,20,0,50,,Illustrator;Excel;Tableau,I'm able to choose my own tools.,Dashboard;Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Choropleth Map;Flow Diagram,General Public;Scientists;Medical Professionals,Moderate,Weekly,Analysis;Summarization;Learning;Research,Collaborative,Client not knowing what they want,Skill set ,Time to learn new things,,,More skills ,,,Same,male,46 - 55,Europe,white,Mixed
2/27/2017 14:46:37,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Professor,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,,ggplot2/Pandas Charts;Completely custom,No,,10,20,40,0,,Illustrator;D3;Other Javascript;ggplot;Other R;P5.js,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Network Diagram,Scientists,Expert,Weekly,Analysis;Summarization;Learning;Research,Collaborative,,,,,,,,,More,male,36 - 45,USA or Canada,white,Private sector
2/27/2017 14:50:02,1,Bachelors,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,data science support,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Student,,,,,,10,0,20,0,70,ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics,Analysts;Project Managers,Intro;Moderate,Weekly,Analysis;Summarization,Consultative,data cleaning,rigidity of R,doing less data cleaning,increase flexibility of tools,,more defined projects,ideas on which graphs to make and how step-to-step,,More,male,25 or younger,Europe,white,Private sector
2/27/2017 14:51:32,6,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Senior UX Designer,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Embedded in another team,General charting libraries;Completely custom,No,Design;Engineering,,,,,,D3;Highcharts;Other MVC,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram,General Public;Analysts,Expert,Daily,Analysis;Summarization;Learning;Research,Consultative,,,,,,,,,Same,,,,,Public sector
2/27/2017 14:53:23,5,Masters,Mostly from School,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,PhD student,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Student,,,,,,30,40,90,0,20,ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Dendrogram;Flow Diagram;3D Chart,Scientists;Medical Professionals,Moderate;Expert,Weekly,Analysis;Summarization;Research,Collaborative,technical issues with high performance computing facilities as part of the process of generating data for visualization ,ggplot2 syntax keeps changing as the package gets updated,,,,,,,More,male,26 - 35,USA or Canada,,Not-for-profit
2/27/2017 14:54:43,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,VP of Innovation ,Data Visualization Role has higher compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing,Embedded in another team,Business Intelligence Tools;Completely custom,Yes,Marketing;Research,5,50,10,5,10,Tableau;Other Javascript;React,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart,Analysts;Engineers,Intro;Moderate,Quarterly,Analysis;Learning,Consultative,Educating leadership about data,Access to good data,,,,,,,More,,,,,Private sector
2/27/2017 14:56:15,7,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Chief Architect,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Both,Completely custom,Yes,Engineering,25,30,30,5,5,D3;WebGL;Other Javascript;Julia;Google Docs,I'm able to choose my own tools.,Dashboard;Static Web Page;Presentations;Julia Notebooks,Line Chart;Bar Chart;Pie Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map;Flow Diagram;Clustering/Force Directed,Engineers;Product Managers;Executives,Intro;Moderate;Expert,Daily,Analysis;Summarization;Research,Collaborative,,,,,,,,,Same,male,36 - 45,USA or Canada,asian,Private sector
2/27/2017 15:06:58,10,PhD,Mostly Self-Taught,Intended to work in data visualization,No,Professor,Data Visualization Role has higher compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,,Completely custom;Modeling,No,Marketing;Research,5,0,5,15,15,Excel;WebGL;Highcharts;Other Javascript;Pandas,I'm able to choose my own tools.,Scrollytelling;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Network Diagram;Flow Diagram;3D Chart,General Public;Scientists;Project Managers,Intro,Quarterly,Summarization,Consultative,Clients ,Clients not knowing what questions they have- and/or want answered. ,,Move towards more dynamic visualizations- however that would probably overwhelm clients. ,Simple is hard to do. ,Better sign off of deliverables. Many times folks pretend not getting- so as to delay - requiring many chain of custody reports. ,How to promote the value of,,Same,male,36 - 45,USA or Canada,,Public sector
2/27/2017 15:08:32,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Communication;Marketing,Embedded in another team,Business Intelligence Tools;Completely custom,No,Design;Research,10,10,0,10,3,Illustrator;Excel;Tableau;D3,I'm able to choose my own tools.,Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap,General Public;Analysts;Executives,Moderate,Daily,Entertainment;Analysis;Learning;Research,Collaborative,,,,,,,,,More,male,26 - 35,,,Private sector
2/27/2017 15:21:39,4,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Engineer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Hired to do data visualization,Full-time,Summary/Overview;Communication;Exploration,Embedded in another team,Completely custom,No,Design;Engineering,15,5,0,5,0,D3;React,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool,,General Public;Medical Professionals,Moderate,Weekly,Analysis;Summarization,Collaborative,Not spending enough time doing visualization work,Accumulated tech debt that makes adding new features/visualizations difficult,Be dedicated to visualization code near 100 of the time,Have time to address tech debt,How much more potential there is for communicating insights about our data through visualization(s)!,More time on visualization code,Case studies!,,More,female,26 - 35,USA or Canada,white,Not-for-profit
2/27/2017 15:24:36,8,PhD,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Software Engineer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration;Data Mining,Both,Completely custom,Don't Know,Engineering,60,20,10,10,10,D3;Mapbox;WebGL;deck.gl,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Infographics;Treemap;Dendrogram;Network Diagram;Choropleth Map;Raster Map;Flow Diagram;VR/AR Charting,Analysts;Engineers;Scientists,Intro;Moderate;Expert,Daily,Analysis;Summarization;Research,Collaborative,,,,have engineers read more papers and researchers write more re-useable code,It's our job to demo the value to them.,,Success stories,,Same,male,26 - 35,USA or Canada,asian,Private sector
2/27/2017 15:30:23,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Strategic Performance Analyst,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools,No,Research,15,0,0,0,10,Excel;Tableau;D3,We have a set list of tools we're expected to use for data visualization.,Documents;Presentations,Line Chart;Bar Chart,Analysts;Executives,Moderate,Monthly,Analysis;Summarization;Learning,Consultative,Data integrity questions,Having a tool to share viz's. Currently using images and reports. Will soon have Tableau Server.,,,,,,,Much more,male,25 or younger,Oceania,white,Public sector
2/27/2017 15:48:16,3,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Analyst,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Summary/Overview,Embedded in another team,Completely custom,No,Research,,,,,,D3,I'm able to choose my own tools.,Embedded in a tool,Line Chart;Bar Chart,Scientists,Expert,Weekly,Analysis;Summarization;Research,Consultative,,,,,,,,,Same,,,,,Public sector
2/27/2017 15:49:47,1,Bachelors,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Software Engineer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Marketing,Embedded in another team,General charting libraries;Completely custom,Don't Know,Engineering,30,5,5,30,20,D3;Mapbox;Highcharts;Other Javascript;React,I'm able to choose my own tools.,Dashboard;Static Web Page,Line Chart;Bar Chart;Pie Chart;Infographics,General Public;Product Managers;Project Managers;Executives,Intro,Monthly,Analysis;Summarization,Collaborative,,,,,,,,,Same,male,26 - 35,Latin America,hispanic,Private sector
2/27/2017 15:49:59,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Staff Writer / Reporter,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Communication;Journalism,Embedded in another team,General charting libraries;Completely custom,No,Newsroom,2,0,0,2,1,Illustrator;Excel;D3;Leaflet;Mapbox;Other Javascript;React,I'm able to choose my own tools.,News Org CMS,Line Chart;Bar Chart;Infographics;Choropleth Map;Raster Map;Flow Diagram,General Public,Intro,Monthly,Learning,Consultative,Lack of resources- unclear career path,Limited time,,,,A sustainable business model (I work in journalism),,,More,male,26 - 35,USA or Canada,,Private sector
2/27/2017 15:55:35,4,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Associate,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Communication;Marketing,Embedded in another team,Business Intelligence Tools,No,IT,20,20,5,10,25,Excel;Tableau;Plotly;ggplot;Other R;Other Python,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Flow Diagram,General Public;Analysts;Project Managers;Executives,Moderate,Monthly,Analysis,Subordinate,,,,,,,,,,male,26 - 35,USA or Canada,white,Public sector
2/27/2017 16:03:02,0,,Equal Parts School and Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,Business development manager,Data Visualization Role has same compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Marketing,Embedded in another team,General charts/ plots,No,Marketing,20,0,10,0,20,Excel,I'm able to choose my own tools.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Network Diagram,Analysts;Executives,Intro,Monthly,Analysis;Summarization,Collaborative,,Data that needs a lot of work to clean,More importance to visualizations,Have tableau or similar,Importance,More software options,Importance,,More,male,36 - 45,USA or Canada,hispanic,Private sector
2/27/2017 16:03:02,0,,Equal Parts School and Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,Business development manager,Data Visualization Role has same compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Marketing,Embedded in another team,General charts/ plots,No,Marketing,20,0,10,0,20,Excel,I'm able to choose my own tools.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Network Diagram,Analysts;Executives,Intro,Monthly,Analysis;Summarization,Collaborative,,Data that needs a lot of work to clean,More importance to visualizations,Have tableau or similar,Importance,More software options,Importance,,More,male,36 - 45,USA or Canada,hispanic,Private sector
2/27/2017 16:06:10,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Software Engineer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Both,Completely custom,No,Design;Engineering;Research,50,0,0,15,0,D3;WebGL;Other Javascript;React,I'm able to choose my own tools.,Dashboard;Interactive web pages,Line Chart;Bar Chart;Treemap;Network Diagram;Flow Diagram;3D Chart,Analysts;Engineers;Scientists,Moderate;Expert,Daily,Analysis;Learning;Research,Consultative,,,,,,,,,More,,36 - 45,USA or Canada,,Private sector
2/27/2017 16:08:19,4,,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Consultant,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;General charting libraries,Yes,Design;Engineering;Marketing,10,0,0,0,10,Excel;Tableau;Power BI;Other BI;Google,I'm able to choose my own tools.,Dashboard;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Choropleth Map;Flow Diagram,General Public;Product Managers;Project Managers;Executives,Intro;Moderate,Weekly,Analysis;Summarization;Research,Consultative,,,,,,,,,Same,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 16:12:36,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,ggplot2/Pandas Charts;Completely custom,No,Design;Engineering,20,30,20,0,30,ggplot,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations;Email,Line Chart;Bar Chart;Raster Map;Flow Diagram,Analysts;Engineers;Product Managers;Project Managers;Executives,Moderate,Weekly,Analysis;Summarization,Collaborative,,,,,,,,,Less,female,26 - 35,USA or Canada,,Private sector
2/27/2017 16:15:04,2,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Product Manager / Data Scientist,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Summary/Overview;Communication,Embedded in another team,ggplot2/Pandas Charts;Completely custom,No,Engineering,25,0,0,25,25,D3;ggplot,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents,Line Chart;Bar Chart;Treemap;sunburst,General Public,Moderate,Weekly,Analysis;Summarization,Collaborative,,,,,,,,,More,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 16:24:23,6,,Mostly Self-Taught,Intended to work in data visualization,No,Consultant ,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Contractor,,,,,,70,10,0,10,15,Tableau,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Flow Diagram,Analysts;Executives,Moderate,Weekly,Summarization,Consultative,Inconsistent data across teams(governance),Iterations are so easy- viz never feel finished.,Consistent org viz guidance ,Design guidelines within the organization ,,,,,Same,male,36 - 45,USA or Canada,white,Public sector
2/27/2017 16:24:49,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Marketing Data and Analytics Intern,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Intern,Analysis;Communication;Exploration,Embedded in another team,Business Intelligence Tools,Don't Know,Marketing,90,5,0,0,5,Excel;Tableau,We have a set list of tools we're expected to use for data visualization.,Dashboard;Presentations,Line Chart;Bar Chart;Pie Chart;Flow Diagram,General Public;Project Managers;Executives,Intro,Weekly,Analysis;Learning;Research,Collaborative,Higher ups not utilizing graphs properly,Lack of direction from Director,Better communicstion,Higher usage,It's usefulness through interactivity,A more well rounded team,More amateur help/college level courses,,More,male,25 or younger,USA or Canada,hispanic,Not-for-profit
2/27/2017 16:40:55,3,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Associate Manager Marketing Analytics,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Marketing,Both,Business Intelligence Tools,No,Design;Marketing;Research,25,25,15,5,30,Excel;Qlik,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart,Analysts;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization,Collaborative,,,,,,,,,More,male,26 - 35,USA or Canada,,Private sector
2/27/2017 16:41:48,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,GIS Products and Content Coordinator,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Summary/Overview;Communication;Marketing;Product,Embedded in another team,Business Intelligence Tools;Completely custom,Yes,Design;Engineering;Marketing;IT,10,0,0,70,10,Illustrator;Excel;Tableau;D3;Other Python,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Documents,Infographics;Treemap;Raster Map,Analysts;Engineers;Executives,Intro;Moderate;Expert,Quarterly,Analysis;Summarization,Consultative,,I don't have enough time to properly learn the tricks of data viz,,,,,,,Same,female,25 or younger,USA or Canada,white,Private sector
2/27/2017 16:44:47,3,Masters,Mostly Self-Taught,Intended to work in data visualization,No,,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Exploration,Separate data visualization team,Business Intelligence Tools,No,IT,30,5,0,10,30,Tableau;Qlik;D3,We have a set list of tools we're expected to use for data visualization.,Dashboard;Static Web Page;Presentations,Line Chart;Bar Chart;Pie Chart;sankey,Product Managers;Project Managers;Executives,Moderate,Daily,Analysis;Summarization,Consultative,Tooling,No leadership vision in data visualization,,,,,More open free knowledge,,More,male,26 - 35,Europe,,Private sector
2/27/2017 16:45:46,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Senior Data consultant,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Marketing,Embedded in another team,Completely custom,No,IT,15,50,15,15,5,Excel;D3;Leaflet;Other Javascript;Pandas;Other Python,I'm able to choose my own tools.,Dashboard;Scrollytelling,Line Chart;Bar Chart;Treemap;Network Diagram;Sankey,General Public;Executives,Expert,Daily,Analysis,Consultative,,,,,It is a specialised job,,,,More,male,26 - 35,Asia,asian,Private sector
2/27/2017 17:10:52,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Software Developer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Engineering;Marketing;Research;IT,20,15,5,20,30,Excel;Tableau;Microstrategy;D3;Leaflet;Mapbox;Highcharts;Other Javascript;Pandas;Other Python;React;Vega,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Dendrogram;Network Diagram;Raster Map;Flow Diagram;3D Chart,Analysts;Engineers;Scientists;Project Managers;Executives,Intro;Moderate;Expert,Monthly,Analysis;Summarization;Learning,Consultative,Limited time,Access to users,Easier data access ,BI server ,Need for data engineering,High level support to get data access faster ,Open-source bi,,More,male,26 - 35,USA or Canada,white,Public sector
2/27/2017 17:36:25,6,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Analytics Manager,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Separate data visualization team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;IT,40,0,10,10,15,Illustrator;Excel;Tableau;Qlik;D3;React,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram;Flow Diagram,General Public;Analysts;Scientists;Product Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Research,Collaborative,,,,,,,,,More,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 18:03:24,7,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,BI detpt manager,Data Visualization Role has higher compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools;Completely custom,No,Design,15,15,5,3,1,Excel;Other BI;D3,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Flow Diagram,Executives,Intro;Moderate,Weekly,Summarization,Consultative,Coordination with other deptartments,Political positions guide data visualisation,Centralize BI outside of direct reporting,More analysis- less explanation,Importance of clearly consumed data in timely manner,More resources assigned ,Best practices in all forms,,More,male,26 - 35,Europe,white,Private sector
2/27/2017 18:04:56,1,Other,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Business Data Analyst,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Excel,No,Planning & Business Svcs,10,15,5,5,50,Excel;Custom Dashboard,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Flow Diagram,General Public;Analysts;Project Managers;Executives,Moderate,Daily,Summarization;Learning;Tracking progress on individual projects and organization-wide workload,Subordinate,Being asked to provide instantaneous org info without having clean/full data to rely on. Simple inquiries take forever to answer accurately if they can be at all.,Data in multiple places and in conflict; spending so much time vetting the data for vizualization; lack of relevant data being tracked.,Have control over all project data input.,Have more time to discover better ways to show it than excel bar charts.,Where data comes from and how it is handled en masse by string-searches for reporting and percentages.,Permission to actually take the time to develop our data input tools,,,More,female,26 - 35,USA or Canada,white,Public sector
2/27/2017 18:05:35,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Developer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Engineering,30,20,0,20,15,D3;Leaflet;WebGL;Other Javascript;React;Angular,I'm able to choose my own tools.,Dashboard;Static Web Page,Line Chart;Bar Chart;Pie Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map;3D Chart,Product Managers;Executives,Moderate,Daily,Analysis;Summarization,Collaborative,,,,,,,,,More,,,,,Private sector
2/27/2017 18:27:50,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Communication;Exploration,Both,Business Intelligence Tools;Completely custom,No,Design,10,0,10,40,30,Illustrator;Excel;Tableau;D3;Leaflet;Mapbox;Other Javascript;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page,Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map,General Public,Intro,Hourly,Entertainment;Analysis;Summarization;Learning,Collaborative,,,,,,,,,Much more,male,36 - 45,USA or Canada,hispanic,Public sector
2/27/2017 18:27:54,7,,Mostly Self-Taught,Intended to work in data visualization,No,Designer,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Design;Engineering;Marketing,55,5,5,30,5,Illustrator;Excel;D3;Processing;Other Javascript;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics,General Public;Analysts;Executives,Moderate,Monthly,Analysis;Learning,Consultative,Difficulty of getting publicity for work.,Difficulty of getting publicity for work.,Expand the topics explored by visualizations.,Increase the use of more abstract visualizations.,The value of customization for each visual.,Remove concerns about making client data public.,How to publicize work better,,More,male,26 - 35,,white,Private sector
2/27/2017 18:56:58,7,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Analyst,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview,Embedded in another team,Business Intelligence Tools,No,Analytics,15,,15,,10,Excel;Power BI,I'm able to choose my own tools.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Infographics;Flow Diagram,Analysts;Product Managers,Moderate,Daily,Analysis;Summarization;Research,Consultative,Time constraints,Other priorities ,More resources ,,the level of complexity behind the visualisation,more resource,,,More,female,26 - 35,Oceania,white,Private sector
2/27/2017 19:12:11,8,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,President,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Hired to do data visualization,Consultant,,,,,,25,10,0,5,10,Excel;D3;Other Javascript;Other Python,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart,General Public;Analysts;Engineers,Intro,Daily,Learning,Consultative,Data visualization is not valued highly enough,Feels like an add-on to data projects rather than integral part,Make data visualization more valued,Better case studies on ROI,How many data visualizations they interact with on a daily basis ,More of a focus on business case studies from the community,What are business wins they have seen and/or been part of,,Much more,male,36 - 45,USA or Canada,hispanic,Private sector
2/27/2017 19:15:00,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Professor,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Exploration,Embedded in another team,ggplot2/Pandas Charts;Completely custom,No,Research,10,0,10,0,10,Excel;D3;Leaflet;Mapbox;ggplot;Other R;Pandas;Other Python;Carto;ArcGIS;QGIS,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map,Analysts;Scientists,Expert,Yearly,Analysis;Research,Collaborative,Too many administrative chores- too much data monkeying,Too many tools that change too often,More time to focus on getting properly skilled in particular tools,,How demanding it is keeping up with changing tools and standards,,,,Same,male,46 - 55,USA or Canada,white,Public sector
2/27/2017 19:23:39,4,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Assistant director ,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing,Both,ggplot2/Pandas Charts,No,Marketing;Research,10,5,5,0,5,Excel;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Documents;Presentations,Line Chart;Bar Chart;Pie Chart,Analysts;Project Managers;Executives,Expert,Monthly,Analysis;Summarization;Learning,Collaborative,Lack of usage of my info ,Having to explain simple plots ,More data focused bosses ,More data focused bosses ,Why it matters ,Time to focus ,,,More,male,26 - 35,USA or Canada,white,Public sector
2/27/2017 19:35:41,9,,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,President,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Consultant,,,,,,30,3,10,3,20,Excel;Tableau,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Treemap;Dendrogram;Flow Diagram,General Public;Analysts;Executives;Public officials,Intro,Monthly,Analysis;Summarization;Learning;Research,Consultative,Not enough time in the day,Still requires too much time for data prep,,,,Being able to afford more help,More open support of public data,,Same,male,56+,USA or Canada,,Mixed
2/27/2017 19:38:37,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Researcher,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Excel;Graphics,No,Planning,5,5,0,10,10,Illustrator;Excel,We have a set list of tools we're expected to use for data visualization.,Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map,General Public;Analysts;Project Managers;Executives,Intro,Monthly,Summarization,Subordinate,Lack of opportunities to visualize ,Lack of tools ,More data and tools,Interactive not just static infographics,The complexity in creating the infographics ,Better tools and data,Examples. Workflows. Ideas,,More,male,26 - 35,USA or Canada,white,Public sector
2/27/2017 19:42:16,10,Bachelors,Mostly from School,Ended up doing data visualization as a requirement of the job,No,Architect,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Capability,Both,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom;GIS,No,Design;Engineering;Marketing;Research;IT;Science,20,20,20,20,20,Tableau;D3;Processing;Leaflet;Mapbox;WebGL;Other Javascript;Other Python;ArcGIS;QGIS,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;PNG;SVG;geoTIFF;Map,Line Chart;Bar Chart;Network Diagram;Choropleth Map;Raster Map;Flow Diagram;3D Chart;VR/AR Charting;4D animations,General Public;Analysts;Engineers;Scientists;Medical Professionals;Product Managers;Project Managers;Executives;NGO's,Intro;Moderate;Expert,Hourly,Analysis;Summarization;Information Exploitation;Situation Awareness,Collaborative,Asshat sales people,,,,"Magic ""just happens"" apparently",$$$,,,Much more,male,36 - 45,USA or Canada,white,Private sector
2/27/2017 19:55:52,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Print and Interactive Designer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Communication,Separate data visualization team,Business Intelligence Tools;General charting libraries;Completely custom,No,Design,10,20,0,65,5,Illustrator;Excel;D3;Leaflet;Highcharts;Other Javascript;Other Python;Chart Tool,I'm able to choose my own tools.,Static Web Page,Line Chart;Bar Chart;Infographics;Choropleth Map,General Public,Intro,Daily,Entertainment;Learning;News,,,,More time to explore/learn,,I think they understand the importance- but resources for beefing up the team are nonexistent. ,More subscribers,,,Same,male,36 - 45,USA or Canada,white,Public sector
2/27/2017 19:56:26,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Research & Analytics Strategist,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Research,40,20,20,20,100,Illustrator;Excel;Tableau;Plotly;D3;Processing;Leaflet;ggplot;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Dendrogram;Network Diagram;Choropleth Map;Raster Map,General Public;Analysts;Medical Professionals;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning,Consultative,"Being asked ""so what does the data show you"" instead of being asked specific questions or objectives",Internal team members who object to advanced or complicated data viz because they lack domain knowledge to interpret the info. They are not the final audience- as the client _does_ have the domain knowledge necessary.,Earlier collaboration in the projects or client conversations in order to better understand needs prior to starting data analysis.,,The absurd amount of time it takes to prep the data,,"There's too much focus on machine learning and not enough focus on actual business applications and usage. it feels like a lot of ""procrastination through preparation"". As data science skills diffuse into other professions- the ability to influence business decisions and apply domain knowledge are going to be what keeps people employed. ",,Much more,male,26 - 35,USA or Canada,,Private sector
2/27/2017 19:59:27,5,Bachelors,Mostly Self-Taught,Intended to work in data visualization,Yes,Data Visualization Expert,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools;Completely custom,Yes,IT,50,20,10,10,10,Illustrator;Excel;Tableau;Qlik;Plotly;D3;Mapbox,I'm able to choose my own tools.,Dashboard,Line Chart;Infographics;Treemap;Network Diagram;Flow Diagram;3D Chart,General Public;Medical Professionals;Product Managers;Executives,Moderate,Daily,Entertainment;Analysis;Summarization;Learning;Research,Consultative,I want to vis everything,,,More design skill,,More more learning,,,Much more,female,26 - 35,Europe,white,Public sector
2/27/2017 19:59:41,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Both,ggplot2/Pandas Charts;Completely custom,No,Research,20,40,20,5,15,Excel;D3;ggplot;Other R;Pandas;Angular,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Dendrogram;Flow Diagram,Scientists;Medical Professionals,Intro;Moderate,Weekly,Analysis;Summarization;Learning;Research,Consultative,Explaining scope of the job to others,Getting data in correct format ,,,Need for visualization ,Understand more importance of visualization and data collection practices. ,,,Same,male,,USA or Canada,,Not-for-profit
2/27/2017 20:02:00,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Director ,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts,No,Design;IT,10,15,5,10,15,Tableau;D3;ggplot;Other R;Gephi,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Documents;Presentations,Line Chart;Bar Chart;Dendrogram;Network Diagram;Flow Diagram,Analysts;Project Managers;Executives,Intro;Moderate,Monthly,Analysis;Summarization,Consultative,,,,,,,,,More,male,26 - 35,USA or Canada,,Private sector
2/27/2017 20:11:09,1,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Interactive Producer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,General charting libraries;Completely custom,No,Design;IT,45,5,0,20,5,Excel;D3;Leaflet;Mapbox;Highcharts;Other Javascript,I'm able to choose my own tools.,Static Web Page,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Choropleth Map;Flow Diagram,General Public;Analysts;Project Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Collaborative,Not enough time to focus on creating custom interactives. ,Creating visuals for research/policy oriented audiences. ,Larger team,More streamlined workflow. ,How much time it takes to create good visuals. ,Streamlined work processes. ,,,Same,female,25 or younger,USA or Canada,white,Not-for-profit
2/27/2017 20:13:38,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Designer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Graphics,No,Design,50,0,0,100,10,Illustrator;Excel;Mapbox,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Choropleth Map;Flow Diagram,General Public;Analysts,Intro;Expert,Quarterly,Analysis;Summarization;Research,Consultative,Little time to invest in pushing visualization ,Uninteresting data,Bigger investment in creating interesting stories t,,It can drive the story not just support it ,,The fundamentals but also uncoventionsl types of visualizatoond ,,More,male,26 - 35,USA or Canada,,Private sector
2/27/2017 20:20:00,4,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Lead Front End Developer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,General charting libraries;Completely custom,No,Engineering,10,0,0,10,0,D3;Other Javascript,I'm able to choose my own tools.,Dashboard,Line Chart;Bar Chart;Pie Chart,Scientists,Expert,Weekly,Analysis;Research,Subordinate,,,,,,,,,More,male,46 - 55,USA or Canada,,Private sector
2/27/2017 20:29:03,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Technical Services Librarian,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Embedded in another team,Excel,No,Marketing;Research,5,25,0,7.5,15,Illustrator;Excel,I'm able to choose my own tools.,Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Flow Diagram,Executives,Intro;Moderate;Expert,Monthly,Analysis;Summarization;Research,Collaborative,,,,,,,,,Same,male,,USA or Canada,,Public sector
2/27/2017 20:31:19,4,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Economist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Summary/Overview;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts,No,Research,20,15,10,0,40,Excel;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Infographics;Network Diagram;Flow Diagram,General Public;Analysts;Scientists;Executives,Moderate,Quarterly,Analysis;Summarization;Research,Consultative,Endless data cleaning,Lack of interest in new visualization methods,Faster computers,More flexibility,It's ok to make a visualization that takes more than a second to understand,Less time spent wrangling data,,,Same,female,26 - 35,USA or Canada,white,Public sector
2/27/2017 20:33:35,6,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Scientist,Data Visualization Role has higher compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,ggplot2/Pandas Charts;Completely custom,No,Design;Engineering,10,0,60,10,10,Illustrator;D3;Leaflet;Mapbox;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Infographics;Choropleth Map;Flow Diagram,General Public;Engineers;Scientists;Product Managers;Project Managers;Designers,Intro,Weekly,Analysis;Learning;Research,Collaborative,,,,,,,,,,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 20:37:44,7,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Manager Statistics ,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Both,Excel;Modeling;Graphics,No,Research,20,30,20,0,5,Illustrator;Excel;Tableau;D3;Leaflet;ArcGIS;SAS,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Choropleth Map;Flow Diagram,General Public;Analysts;Executives,Intro;Moderate;Expert,Daily,Analysis;Summarization;Decision ,Consultative,Timelines- not enough people,Time- lack of skills in other tools. ,Less agreements,More time,It takes time to figure out the best way to present information. ,More data,,,Same,female,26 - 35,USA or Canada,other,Public sector
2/27/2017 20:48:50,10,PhD,Mostly Self-Taught,Intended to work in data visualization,No,Director of Analytics,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing,Embedded in another team,ggplot2/Pandas Charts;General charting libraries;Completely custom,Yes,Design;Research;IT,10,30,20,10,10,Illustrator;Excel;D3;Leaflet;Highcharts;ggplot;Other R;Angular,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents,Line Chart;Bar Chart;Infographics;Choropleth Map,General Public;Analysts,Expert,Monthly,Analysis;Summarization;Learning;Research,Consultative,Too little time designing vis,,,,,,,,Much more,male,26 - 35,USA or Canada,white,Public sector
2/27/2017 20:50:43,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Specialist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Design,20,50,30,0,0,Excel;Tableau;Power BI;Leaflet;ggplot;Other R;Pandas;Other Python;Vega,I'm able to choose my own tools.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Treemap;Dendrogram;Choropleth Map;Flow Diagram,Analysts;Engineers;Project Managers,Moderate,Daily,Analysis;Summarization;Learning,Subordinate,,,,,,,,,Less,,,,,Private sector
2/27/2017 20:53:42,1,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Director Research & Evaluation,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Embedded in another team,,No,Research,10,,30,10,30,Excel;SPSS,I'm able to choose my own tools.,Documents;Presentations;Email,Line Chart;Bar Chart;Flow Diagram,General Public;Executives;Teachers,Intro,Monthly,Analysis;Summarization;Learning;Research,Collaborative,,,,,,,,,Much more,male,26 - 35,USA or Canada,white,Public sector
2/27/2017 20:54:46,6,Other,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Programmer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Marketing;Exploration,Embedded in another team,ggplot2/Pandas Charts;General charting libraries;Completely custom,No,IT,20,20,20,20,20,D3;Processing;Leaflet;Mapbox;WebGL;Highcharts;Other Javascript;Pandas,I'm able to choose my own tools.,Scrollytelling;Static Web Page,Line Chart;Bar Chart;Pie Chart;Choropleth Map;Raster Map,General Public;Scientists,Intro,Weekly,Analysis;Summarization;Research,Consultative,,,,,,,,,More,,,,,Private sector
2/27/2017 20:55:49,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Analyst,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Research,40,,30,,30,Tableau;Qlik;Leaflet;ggplot,We have a set list of tools we're expected to use for data visualization.,Dashboard;Static Web Page;Presentations,Line Chart;Bar Chart;Infographics,General Public;Analysts;Project Managers;Executives;Teachers and principals ,Intro,Monthly,Analysis;Summarization,Consultative,Lack of collaboration,That I have to mostly use bar charts,Ability to test things out with userd,Make ir easier to create dashboards,That we can use it to analyze data not just summarize ,Collaboration ,How to use different visuals ,,Less,female,26 - 35,USA or Canada,,Not-for-profit
2/27/2017 21:18:16,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Tech Lead - Data,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,Design;Engineering,40,10,5,5,40,Plotly;Other BI;D3;ggplot;Other R;Pandas,,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Choropleth Map,Analysts;Engineers;Medical Professionals;Product Managers;Project Managers;Executives,Intro,Daily,Analysis;Summarization;Research,Collaborative,,,,,,,,,Less,male,26 - 35,MIddle East & Africa,,Not-for-profit
2/27/2017 21:19:55,5,PhD,Mostly Self-Taught,Intended to work in data visualization,Yes,Group Leader / Senior Researcher,Data Visualization Role has same compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Separate data visualization team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Research,25,25,10,10,30,Illustrator;Excel;Tableau;D3;Leaflet;Mapbox;WebGL;Other Javascript;Pandas;Other Python;Other MVC;Maya,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations;Video,Line Chart;Bar Chart;Infographics;Dendrogram;Choropleth Map;Flow Diagram;VR/AR Charting,General Public;Analysts;Engineers;Scientists;Executives,Expert,Hourly,Entertainment;Research,Collaborative,Too much to do,Not easy to get funding,Clients coming to me?,I'd like more time to test alternatives,People think it's an afterthought ,Less administrative work,,,More,male,36 - 45,Europe,white,Public sector
2/27/2017 21:34:47,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Analyst,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,Don't Know,Design;Research;IT,30,10,10,,50,Excel;Power BI;Qlik;Plotly;Leaflet;ggplot;Other R;Pandas;Other Python,I'm able to choose my own tools.,Dashboard;Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map;Raster Map,General Public;Analysts;Engineers;Scientists;Project Managers;Executives,Moderate,Weekly,Analysis;Summarization;Learning;Research,Collaborative,,,,,,,,,More,male,36 - 45,Europe,white,Private sector
2/27/2017 21:37:43,2,Bachelors,Mostly Self-Taught,Intended to work in data visualization,Yes,Senior Business Analyst ,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis,Both,Business Intelligence Tools,No,IT,75,25,10,50,30,Tableau,We have a set list of tools we're expected to use for data visualization.,Dashboard;Scrollytelling,Line Chart;Bar Chart;Infographics,General Public;Analysts;Project Managers;Executives,Expert,Weekly,Analysis;Summarization,Consultative,,Sometimes they ask to replicate the excel charts in tableau,,Try to avoid the usage of pie and radar charts ,,,,,Much more,female,25 or younger,Asia,,Private sector
2/27/2017 21:50:31,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Software Engineer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Consultant,,,,,,30,30,0,0,10,D3;Other Javascript;Other Python,I'm able to choose my own tools.,Dashboard,Line Chart;Bar Chart,Analysts;Engineers;Product Managers;Project Managers;Executives,Intro,Hourly,Entertainment;Analysis;Summarization,Consultative,,,,,,,,,Less,,,,,
2/27/2017 22:06:13,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Visualization Platform Engineer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Separate data visualization team,Business Intelligence Tools,No,IT,10,30,10,10,20,Excel;Power BI;Other BI;D3;Tibco Spotfire;Cognos BI,I'm able to choose my own tools.,Dashboard;Scrollytelling,Line Chart;Bar Chart;Dendrogram;Network Diagram;3D Chart,Scientists;Medical Professionals;Product Managers;Project Managers;Executives,Intro,Daily,Analysis;Summarization;Research,Subordinate,Too many tools,Lack of centralization ,Getting a CAO,Spend more time on modern tools,Data prep,Collaboration from the beginning,CAO,,More,male,26 - 35,Europe,white,Private sector
2/27/2017 22:07:44,0,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Research Assistant / Data Visualizer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Student,,,,,,40,0,15,5,40,Excel;Plotly;ggplot;Other Python,I'm able to choose my own tools.,Static Web Page;Documents,Line Chart;Bar Chart;3D Chart,Analysts;Scientists;Product Managers,Moderate;Expert,Weekly,Analysis;Learning,Collaborative,,"Too many excel lovers i.e. ""ggplot looks nice- but can you do it in excel?""",,Everyone knows ggplot2,The grammar of graphics,,,,More,male,25 or younger,USA or Canada,white,Public sector
2/27/2017 22:18:36,1,Other,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Senior Web Developer ,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Embedded in another team,Business Intelligence Tools;Completely custom,No,Design,10,20,0,80,0,Excel;Tableau;Power BI;D3;React,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page,Line Chart;Bar Chart;Pie Chart;Treemap,General Public;Analysts;Product Managers,Expert,Daily,Analysis;Summarization;Research,Subordinate,,,,,,,,,Much more,male,26 - 35,USA or Canada,white,Private sector
2/27/2017 22:19:34,2,PhD,Equal Parts School and Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,PhD Student,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Student,,,,,,20,20,20,20,20,Excel;Tableau;D3;WebGL;Other Python,I'm able to choose my own tools.,Embedded in a tool;Scrollytelling;Static Web Page;Presentations,Line Chart;Bar Chart;Treemap;Network Diagram;3D Chart;VR/AR Charting,General Public;Analysts;Scientists;Research,Moderate;Expert,Weekly,Analysis;Summarization;Research,Collaborative,not enough time to finish work,juggling javascript libraries,higher phd student stipend,,data visualization's full value,,where data visualization is headed in the future,,More,male,25 or younger,USA or Canada,white,Private sector
2/27/2017 22:24:27,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools,Yes,Marketing;IT;Consulting ,50,0,0,20,30,Tableau,We have a set list of tools we're expected to use for data visualization.,Dashboard,Line Chart;Bar Chart;Infographics;Treemap,Analysts;Product Managers;Project Managers;Executives,Moderate,Daily,Analysis;Summarization,Consultative,,,,,That text tables are not the answer,,,,Same,male,26 - 35,Europe,white,Private sector
2/27/2017 22:30:03,2,Bachelors,Equal Parts School and Self-Taught,Intended to work in data visualization,Yes,Software Engineer Frontend,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;Completely custom,Yes,Design;Engineering;Research,50,20,0,0,10,Excel;D3;Leaflet;Mapbox;WebGL;React,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page,Line Chart;Choropleth Map;Raster Map,General Public;Analysts,Intro;Expert,Hourly,Analysis;Summarization;Research,Collaborative,,,,,,,,,More,male,25 or younger,Europe,,Private sector
2/27/2017 22:40:38,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Product Manager ,Data Visualization Role has higher compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Marketing;Exploration;Product,Embedded in another team,Business Intelligence Tools;Completely custom,No,Product,10,5,5,2,0,Excel;Tableau;D3;Java;Angular,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Email;Slack messages,Line Chart;Bar Chart;Treemap;Sankey,Analysts;Engineers;Product Managers;Executives;Clients,Intro;Moderate,Daily,Analysis,Collaborative,Not enough people self learning to build visualisations with the data we have ,Not enough time to explore,Actually not sure,More training so I can use Tableau better,How much work it is to prepare data extracts to power the dashboards,More data analysts/scientists,,,More,male,26 - 35,Europe,white,Private sector
2/27/2017 22:54:32,10,PhD,Equal Parts School and Self-Taught,Intended to work in data visualization,No,,Data Visualization Role has same compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;Completely custom,No,Design;Research,10,2,2,10,2,Illustrator;Excel;Tableau;D3;Java,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram,General Public;Analysts;Engineers;Scientists;Medical Professionals,Intro;Expert,Daily,Analysis;Summarization;Research,Collaborative,,,,,,,,,More,male,36 - 45,Europe,white,Public sector
2/27/2017 23:21:48,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Analyst,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing,Embedded in another team,General charting libraries;Completely custom,No,Design;Marketing;Research,30,40,10,20,10,Illustrator;Excel;Qlik;Highcharts;Other Javascript;Java,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Infographics;Raster Map,General Public;Project Managers;Executives,Intro;Expert,Monthly,Analysis;Summarization;Research,Consultative,creativity restraint ,,Salary increase ,More learning ,Visual thinking ,Salary increase ,Opening up the mind ,,More,male,36 - 45,Europe,white,Private sector
2/27/2017 23:24:14,4,PhD,Mostly Self-Taught,Intended to work in data visualization,No,Software Developer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Contractor,,,,,,20,20,30,10,20,Tableau;D3;Mapbox;React;Angular,I'm able to choose my own tools.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Treemap;Network Diagram;Choropleth Map;Flow Diagram,Analysts;Scientists;Project Managers;Executives,Expert,Weekly,Analysis;Summarization,Consultative,,,,,,,,,Much more,male,26 - 35,Europe,multi,Private sector
2/27/2017 23:24:46,1,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,R&D Engineer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration,Embedded in another team,General charting libraries;Completely custom,No,Research,65,24,1,10,5,D3;WebGL;Highcharts;Angular;Cesium,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map;Raster Map;Flow Diagram;3D Chart,General Public;Analysts;Engineers;Scientists,,,Analysis;Summarization;Learning;Research,Collaborative,,,,,,,,,More,male,26 - 35,Europe,,Private sector
2/27/2017 23:25:22,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Advanced analytics guy,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Engineering,25,25,25,0,25,Excel;Tableau;Power BI;WebGL;ggplot;Other R;Qt Charts,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart,Engineers;Project Managers;Executives;Clients,Moderate;Expert,Daily,Analysis;Summarization;Research;Business decisions,Consultative,Having to color everything instead of showing hard numbers,Too often more important than analytic part,wage,Build my own framework,It is math. I can't just get different results.,More time to build tools and products- more reuse,Data science and visualization is more than just right tool,,Less,male,26 - 35,Europe,white,Private sector
2/27/2017 23:41:18,2,PhD,Mostly Self-Taught,Intended to work in data visualization,Yes,Teacher ,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Teaching;Research ,Both,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Research;Teaching ,10,5,20,0,10,Excel;Tableau;Qlik;Plotly;D3;Processing;Leaflet;ggplot,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Infographics;Treemap;Dendrogram;Network Diagram;Choropleth Map;Flow Diagram,General Public;Analysts;Product Managers;Executives,Moderate;Expert,Quarterly,Analysis;Summarization;Learning;Research;Teaching ,Collaborative,lack of time ,D3,,,sometimes they don't see the potential of visualization to explore data- they just see static images,,,,Much more,male,46 - 55,Europe,white,Public sector
2/27/2017 23:51:11,6,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Specialist,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning,Embedded in another team,Completely custom,No,,,,,,,D3;Processing;Leaflet;Mapbox;WebGL;Other Javascript;React,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page,Line Chart;Bar Chart;Infographics;Treemap;Network Diagram;Choropleth Map;Flow Diagram,General Public;Analysts;Engineers;Scientists,Moderate,Daily,Analysis;Summarization;Learning;Research,Consultative,,,,,,,,,Same,male,26 - 35,Oceania,white,Private sector
2/27/2017 23:54:54,1,Technical School,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Analyst,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries,No,Marketing,20,30,10,10,10,Excel;Plotly;Other BI;D3;Pandas;Other Python;Vega,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram;Choropleth Map,Product Managers;Project Managers;Executives,Moderate,Weekly,Entertainment;Analysis;Summarization,Consultative,Level of interest is not that high,No perfect tool,Spend more time in exploration,Bringing more interactivity,Don't realize the full stack of collect/integration/engineering before plotting result,More high management support,,,Same,male,26 - 35,Europe,,Private sector
2/28/2017 0:21:32,4,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,PhD Student,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Student,,,,,,30,10,10,20,5,Illustrator;Excel;Plotly;D3;ggplot,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Dendrogram;Network Diagram;Flow Diagram,General Public;Scientists;Medical Professionals,Intro;Moderate;Expert,Monthly,Analysis;Summarization;Research,Collaborative,,lack of general knowledge/appreciation ,More time to focus on data visualization and background research,Be more formal with it.,The difficulty to create them and the thinking behind design decisions,,,,More,male,26 - 35,Europe,white,Public sector
2/28/2017 0:25:33,8,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Managing Director,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Completely custom,Yes,Design;Engineering,20,0,0,20,0,D3;React,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page,Line Chart;Bar Chart;Network Diagram;Choropleth Map,General Public;Scientists;Product Managers,Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Collaborative,Getting the data from our clients in good shape.,Changing- inconsistent- or inexistent data.,An easier way for our designers to work with real / live data.,I'd love to be able to push a bit beyond the traditional approaches.,The importance of real / live data instead of a mock or sample data set.,,Less dogmatism about visualization techniques and more openness about the really hard parts of our job: getting the visualizations into the hand of our users.,,More,male,26 - 35,Europe,white,Private sector
2/28/2017 0:26:20,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Designer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Marketing,Embedded in another team,Completely custom,No,Design;Engineering,,,,90,,Illustrator,I'm able to choose my own tools.,Dashboard;Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Infographics,General Public;Scientists,Moderate,Weekly,Analysis;Summarization;Learning,Collaborative,,,,,,,,,Much more,female,26 - 35,Oceania,asian,Private sector
2/28/2017 0:29:34,1,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Information Designer,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Hired to do data visualization,Contractor,,,,,,50,0,10,30,10,Tableau;Microstrategy;Qlik;Plotly;ggplot,We have a set list of tools we're expected to use for data visualization.,Dashboard;Presentations,Line Chart;Bar Chart;Infographics;Treemap,Analysts;Product Managers;Project Managers;Executives,Expert,Daily,Analysis;Summarization;Research,Collaborative,,,Doing more visualizations,Another tools,,,,,Much more,female,25 or younger,Europe,white,Private sector
2/28/2017 0:31:43,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Research Engineer,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Contractor,,,,,,50,15,5,10,10,Tableau;D3;Leaflet,I'm able to choose my own tools.,Embedded in a tool,Bar Chart;Choropleth Map;Flow Diagram;custom charts for very specific data,General Public;Scientists;epistemology people,Moderate,Monthly,Learning;Research,Collaborative,,I would enjoy experimenting more- inventing new data viz...,Be intern instead of contractual,,don't met the problem yet- as my project is a work in progress,Higher salary,,,More,male,26 - 35,Europe,,Public sector
2/28/2017 0:49:08,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Senior Software Engineer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Embedded in another team,Completely custom,Yes,Design;Engineering,80,10,0,10,0,D3;Other Javascript,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Pie Chart;Scatter;Table,Project Managers;Executives,Intro,Hourly,Analysis;Summarization,Consultative,,,,,,,,,Same,male,26 - 35,Europe,white,Private sector
2/28/2017 0:49:58,10,Bachelors,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Graphics Editor,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Communication,Separate data visualization team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,Yes,,20,20,20,20,20,Illustrator;Excel;D3;WebGL;Other Javascript;ggplot;Other R;Other Python,I'm able to choose my own tools.,Scrollytelling;Static Web Page,Line Chart;Bar Chart;Treemap;Network Diagram;Choropleth Map;Raster Map;Gauge chart;Barcode chart;Timeline;Symbol map;Scatterplot;Gantt chart;Streamgraph,General Public;myself and other journalists in our organization to analyse data,Intro;Moderate;Expert,Weekly,Learning;News consumption,Collaborative,sometimes I want to spend more time on single projects,we don't publish as many interactive data viz pieces as we used to,,,,if someone else would deal with social media promotion,,,Same,male,26 - 35,Europe,,Media
2/28/2017 0:59:10,5,Other,Mostly Self-Taught,Intended to work in data visualization,Yes,Data Consultant,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Consultant,,,,,,10,30,,10,50,Tableau;D3;Leaflet;Mapbox;Vega;Datawrapper,I'm able to choose my own tools.,Dashboard;Scrollytelling;Static Web Page,Line Chart;Bar Chart;Treemap;Choropleth Map,General Public;Executives,Intro,Monthly,Learning;Engagement,Consultative,,,,,,,,,Much more,male,26 - 35,Europe,,Private sector
2/28/2017 1:23:10,5,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,Yes,Researcher,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Machine Learning;Exploration,Separate data visualization team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,Yes,Research,10,30,20,5,20,Excel;Tableau;Plotly;D3;Processing;Leaflet;Mapbox;WebGL;Java;Angular,I'm able to choose my own tools.,Embedded in a tool;Static Web Page,Line Chart;Bar Chart;Dendrogram;Flow Diagram,Analysts;Engineers;Scientists,Moderate;Expert,Quarterly,Analysis;Learning;Research,Collaborative,rejection of great ideas,,,there are too many js libraries out there - focus on the most important ones,,,interdisciplinary research is needed- atm everybody looks into his/her niche,,Same,male,26 - 35,Europe,white,Not-for-profit
2/28/2017 1:26:10,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Lecturer ,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Contractor,,,,,,10,5,2,5,10,Excel;D3;Processing,I'm able to choose my own tools.,Static Web Page;Documents,Line Chart;Bar Chart;Pie Chart,General Public,Intro,Monthly,Entertainment;Analysis;Summarization,Consultative,Not being able to explore more aspects in learning more tools and ideas ,Not being allowed to explore more data ,Being allowed to explore more ideas with different tools ,,They don't understand the reasoning for visualizations ,Being supportive ,The opportunity to share ,,More,male,36 - 45,MIddle East & Africa,asian,Private sector
2/28/2017 1:34:45,1,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Engineer,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Both,Business Intelligence Tools;Completely custom,Yes,Design;Engineering;Marketing;Research;IT,80,15,15,15,15,Other Javascript;React;Angular;Ogma.js,I'm able to choose my own tools.,Embedded in a tool;Scrollytelling;Documents,Graph,General Public;Analysts;Engineers;Scientists;Medical Professionals;Product Managers;Project Managers;Executives,Expert,Hourly,Analysis;Summarization;Learning;Research,Collaborative,,,,,,,,,More,female,26 - 35,,,Private sector
2/28/2017 1:43:20,3,Masters,Mostly Self-Taught,Intended to work in data visualization,No,,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Exploration,Separate data visualization team,Completely custom,Yes,Engineering,45,45,,10,,D3;Mapbox;Other Javascript,I'm able to choose my own tools.,Embedded in a tool,Line Chart;Pie Chart;Infographics;Treemap;Network Diagram,General Public;Analysts;Engineers;Product Managers,Moderate,Monthly,Analysis;Learning;Research,Collaborative,,,,,,,,,Much more,male,36 - 45,Europe,,Private sector
2/28/2017 1:57:17,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Consultant,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication,Both,Business Intelligence Tools;General charting libraries;Completely custom,No,Design;IT,5,15,15,5,10,Tableau;Power BI;Qlik;D3;Highcharts;Other Javascript;Angular;Other MVC,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page,Line Chart;Bar Chart;Infographics;Bubble chart;own charts,Analysts;Executives,Moderate,Monthly,Analysis;Summarization;Learning,Consultative,Management,Bugs in libraries,More experts- fewer managers,Employ people who improve libraries (giving something back to the community),Understanding the complexity of making it work,,,,More,male,26 - 35,Europe,white,Private sector
2/28/2017 2:07:04,3,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Management Consultant,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,,20,5,40,5,20,Excel;Tableau;Microstrategy;Power BI;Qlik;ggplot;Other R;Other Python,I'm able to choose my own tools.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Network Diagram;Flow Diagram,General Public;Scientists;Product Managers;Project Managers,Intro;Moderate,Monthly,Summarization,Consultative,,,,,,,,,More,male,26 - 35,Europe,white,Private sector
2/28/2017 2:20:05,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Senior UX Designer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,General charting libraries;Completely custom,No,Design;Engineering,20,0,0,40,5,Excel;Tableau;D3;Highcharts;Other Javascript;React;Angular;Kibana,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Dendrogram;Network Diagram;Flow Diagram;VR/AR Charting,Analysts;Engineers;Scientists,Moderate;Expert,Daily,Analysis;Summarization;Research,Consultative,When I can't persuade a client that something is a bad idea and we have to go with it.,Prototyping tools,More consistent pace,More quickly prototype data visualisations without requiring developers to code for me. This would make it quicker and cheaper for me to make changes. It is not something I've looked into too much yet but I will.,Value in the data and usability vs. aesthetic. ,For our clients to have better product managers,,,More,female,26 - 35,Europe,white,Private sector
2/28/2017 2:53:29,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Medical Statistician,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,,ggplot2/Pandas Charts,No,Statistics,5,10,10,5,50,ggplot;Other R,I'm able to choose my own tools.,Static Web Page,Line Chart;Bar Chart;Dendrogram,Scientists,Moderate,Monthly,Analysis,Subordinate,Poor data management- the relational database simply exports every table as CSV- I have to link the data again rather than being able to use the relational database from which the data is exported.,Plethora of options for very subtle tweaks.,Working somewhere else- sick of where I am currently.,Improve my knowledge & understanding of dynamic web-sites for reporting results.,How much time it takes to prepare the data before doing the analysis and then the time taken to present the results in a coherent self-documenting and reproducible manner (I use Knitr and/or RMarkdown to produce reports).,More time.,,,More,male,36 - 45,Europe,white,Public sector
2/28/2017 3:07:00,3,PhD,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Consulting analyst,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Consultant,,,,,,30,10,10,10,40,Tableau;ggplot;Other R,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Static Web Page,Line Chart;Bar Chart;Infographics;Network Diagram;Choropleth Map,General Public;Analysts;Engineers;Scientists;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning,Consultative,,,,,,,,,Same,male,26 - 35,,,Private sector
2/28/2017 3:19:27,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Hired to do data visualization,Full-time,Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools;General charting libraries,No,Design;Editorial,10,1,1,15,5,Illustrator;Excel;D3;Other Python;Postgres;PostGIS,I'm able to choose my own tools.,Static Web Page,Line Chart;Bar Chart;Pie Chart;Choropleth Map,General Public,Intro,Daily,Summarization,Subordinate,,,,,,,,,More,male,,,white,Private sector
2/28/2017 3:32:16,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,SQL Developer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis,Separate data visualization team,Business Intelligence Tools,No,IT,10,60,,5,25,LogiAnalytics,We have a set list of tools we're expected to use for data visualization.,Dashboard;Static Web Page,Line Chart;Bar Chart;Pie Chart,Store managers,Expert,Daily,Analysis,Consultative,data sources,browser caching,Add a front-end developer to do the data visualization work,Add a front-end developer to do the data visualization work,It's not as easy as it looks.,,,,Much Less,female,56+,USA or Canada,white,Private sector
2/28/2017 3:55:04,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Consultant,,,,,,50,20,0,10,10,D3;Leaflet;Mapbox;Highcharts,I'm able to choose my own tools.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Pie Chart;Choropleth Map,General Public;Executives,Moderate,Weekly,Entertainment;Analysis;Summarization,Consultative,,,,,,,,,More,male,36 - 45,Europe,white,Private sector
2/28/2017 4:14:44,1,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,CEO,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Summary/Overview;Communication;Exploration,Separate data visualization team,Completely custom,Yes,Design;Engineering;IT,40,5,5,10,20,D3;Other Javascript;Perl,I'm able to choose my own tools.,Scrollytelling;Static Web Page,Line Chart;Bar Chart;Choropleth Map;3D Chart,General Public;Analysts;Scientists;Medical Professionals;Executives,Moderate,Daily,Analysis;Research,Collaborative,,,,,,,,,More,male,36 - 45,Europe,,Private sector
2/28/2017 4:22:23,4,Other,Mostly Self-Taught,Intended to work in data visualization,Yes,Company Director,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Completely custom,Yes,Engineering,20,10,10,5,20,D3,I'm able to choose my own tools.,Embedded in a tool,Line Chart;Bar Chart;Treemap;Network Diagram;Choropleth Map,Medical Professionals,Expert,Daily,Analysis;Research,Collaborative,finding new client,explaining the advantages of datavi,IE,,,,,,Much more,male,36 - 45,Europe,white,Private sector
2/28/2017 4:24:37,1,Bachelors,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Reporter ,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Other,Analysis;Summary/Overview,Both,Business Intelligence Tools,No,Newsroom ,5,5,5,5,5,Excel;Tableau,I'm able to choose my own tools.,Static Web Page,Line Chart;Bar Chart;Infographics;Network Diagram,General Public;Analysts,Intro,Daily,Analysis;Summarization;Learning;Research,Consultative,Data cleaning- scrapping ,Lower money ,More projects ,More images ,Fast knowledge ,Better computers ,Parsehub ,,More,male,36 - 45,Latin America,hispanic,Private sector
2/28/2017 5:30:02,5,PhD,Mostly Self-Taught,Intended to work in data visualization,No,Software Engineer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Completely custom,No,Design;Engineering,50,20,0,10,20,D3;React,I'm able to choose my own tools.,Dashboard;Static Web Page;Presentations,Line Chart;Bar Chart,Analysts;Executives,Expert,Daily,Analysis;Summarization;Research,Collaborative,doing work that is not related to dataVis design,Lack of available data,Sole focus on prototyping dataVis with real data,,dataVis development is a design process- and the same as with any design process- you don't know the kind of results you will get before doing the work,,,,Much more,male,26 - 35,USA or Canada,white,Private sector
2/28/2017 5:34:59,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Machine Learning;Exploration,Both,General charting libraries;Completely custom,Yes,Design;Engineering;Research,50,,10,20,10,Plotly;D3;Processing;Leaflet;WebGL;Other Javascript,I'm able to choose my own tools.,Embedded in a tool;Interactive Web Page,Line Chart;Bar Chart;Treemap;Network Diagram;Raster Map;Flow Diagram;streamgraph,General Public;Analysts,Moderate;Expert,Weekly,Analysis;Learning;Research,Collaborative,finding relevant data,,create for a wider audience,make greater impact,,,,,Same,male,46 - 55,USA or Canada,white,Private sector
2/28/2017 5:59:29,5,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Associate research scholar,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration;Teaching,,Completely custom;GIS,No,Design,10,0,5,10,10,Illustrator;Excel;D3;Processing;Leaflet;Mapbox;WebGL;Other Javascript;Pandas;Other Python;P5.js,I'm able to choose my own tools.,Embedded in a tool;Scrollytelling;Static Web Page;Presentations,Line Chart;Bar Chart;Network Diagram;Choropleth Map;Raster Map,General Public;Scientists,Moderate,Quarterly,Entertainment;Analysis;Summarization;Research,Collaborative,,,,,,,,,More,male,36 - 45,USA or Canada,hispanic,Academic
2/28/2017 6:09:38,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data and design specialist,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts;Completely custom,No,Research,20,20,20,20,20,Excel;D3;ggplot;Other R;Other Python;Affinity Designer,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Network Diagram;Flow Diagram,General Public;Analysts;Project Managers;Local authority decision groups and delivery partners,Intro,Monthly,Analysis;Summarization;Decision making,Collaborative,sometimes missing a 'common thread',Own limitations in implementation (e.g. knowledge of d3.js),design should be part of everything as it is sometimes seen as an after thought,own ability to implement with ease,time it takes to design something if the problem is complex,access to deeper training,more advanced level training ,,More,male,26 - 35,Europe,white,Not-for-profit
2/28/2017 6:10:16,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Senior Actuarial Analyst,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Design;Marketing;Research,10,15,50,10,15,Excel;Tableau;Power BI;Plotly;D3;Leaflet;Other Javascript;ggplot;Other R;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Email,Line Chart;Bar Chart;Pie Chart;Network Diagram;Choropleth Map;Flow Diagram,Analysts;Product Managers;Project Managers;Executives,Expert,Weekly,Analysis;Summarization;Research,Collaborative,Insufficient time for design,Requested to apply same design/chart to everything,Opportunity to try out (and implement) new software ,Be better coder to setup & try different designs quickly,I think they understand & value- but its not primary focus of output,Additional staff,I prefer the current open software approach where Data Vis examples are shared on blogs- GitHub- etc. and everyone can learn from them and have opportunity to connect with designers. ,,Much more,male,36 - 45,USA or Canada,hispanic,Private sector
2/28/2017 6:30:15,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Developer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Communication;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Design;IT;Editorial,30,20,0,20,10,Illustrator;Excel;D3;Mapbox;Other Javascript;Other MVC,I'm able to choose my own tools.,Dashboard;Scrollytelling;Static Web Page;images within news stories online and in print,Line Chart;Bar Chart;Treemap;Choropleth Map,General Public,Intro;Moderate,Daily,Analysis;Summarization;explanation,Collaborative,falling between technology- design and editorial depts. with their competing demands- requirements and expectaions,interactive/ dynamic visualizations are not able to be embedded in standard CMS produced pages,,I'd like more scope to explore different tones- outside our fairly conservative house (editorial/design) styles,The amount of effort required to make something simple is often greater than that required to make the eye-catching flashy thing -- and that the effort is worth it.,More flexibility re. topics I work on and the communication tools I get to use. e.g. I'd like to do more illustration.,,,Same,male,36 - 45,Europe,white,Private sector
2/28/2017 6:57:33,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Senior Software Engineer ,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Design,3,75,10,2,20,Excel;Power BI;D3,We have a set list of tools we're expected to use for data visualization.,Dashboard;Static Web Page,Line Chart;Bar Chart,Engineers;Project Managers;Executives,Moderate,Quarterly,Summarization,Subordinate,,,,,,,,,Same,male,26 - 35,USA or Canada,black,Private sector
2/28/2017 7:04:46,5,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,Digital Magician,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Contractor,,,,,,50,5,5,35,5,D3;Processing;Mapbox;WebGL;Other Javascript;Java;React,I'm able to choose my own tools.,Embedded in a tool;Scrollytelling;Static Web Page;Documents,Bar Chart;Flow Diagram;custom,General Public;Scientists,Moderate,Daily,Entertainment;Analysis;Summarization;Learning;Research,Collaborative,Not getting payed fair.,choosing the right codebase,Be socially and economically backed up by the state (germany).,Supercharge my brain,How complex and difficult it is.,Team up with fellow viz pros.,Exchange knowledge- open the process,,Less,male,26 - 35,Europe,white,Mixed
2/28/2017 7:11:37,2,Masters,Mostly Self-Taught,Intended to work in data visualization,No,BI analyst,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;IT,20,10,20,10,40,Excel;Tableau;Qlik;Plotly;D3;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Presentations,Line Chart;Bar Chart;Pie Chart;Flow Diagram,Product Managers;Project Managers,Intro;Moderate,Weekly,Analysis;Learning,Consultative,,,,,,,,,,,,,,Private sector
2/28/2017 7:26:55,1,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Software Developer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Embedded in another team,Completely custom,No,Engineering,5,10,0,0,5,D3,I'm able to choose my own tools.,Dashboard,Line Chart;Bar Chart,Project Managers;Executives,Moderate,Daily,Analysis;Summarization;Research,Consultative,Non standard development process,Structuring data,More thinking into the design of a project structure,,Complexity,,,,More,male,26 - 35,Europe,asian,Private sector
2/28/2017 7:27:57,8,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Sales Operations Analyst,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing,Embedded in another team,Business Intelligence Tools;GIS,Yes,Sales,10,5,25,10,50,Excel;Tableau;ggplot;Other R;ArcMap,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Choropleth Map,Analysts;Executives,Expert,Weekly,Analysis;Learning;Research,Collaborative,Data cleanliness. Lack of vision from executive team on what they want communicated. ,Time to clean the data and format for visualization. ,focus on fewer areas of the business- but we are a growing company with lots of opportunities for analysis. ,Continue to work on making it more accessible to general- non-executive employees,They don't understand the power of a picture and are still hung up on spreadsheets to communicate all information. ,More time. ,,,More,male,36 - 45,USA or Canada,white,Private sector
2/28/2017 7:45:52,6,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Business Intelligence Analyst,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Both,Business Intelligence Tools;General charting libraries,No,IT,15,10,5,5,25,Excel;Tableau;iDashboards,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard,Bar Chart;Pie Chart;Treemap,Analysts;Product Managers;Project Managers,Moderate,Daily,Analysis;Summarization,Consultative,Lack of full tool access for both creators and users,Give us Tableau and Power BI,Let's do some R plots,Do more than dashboards,That there is potential for self-service work with a good foundation,,How to evaluate which tools are right for a job,,Same,male,26 - 35,USA or Canada,,Private sector
2/28/2017 7:47:14,3,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Front-end Developer,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,General charting libraries;Completely custom,No,Engineering;IT,20,50,5,20,80,Tableau;D3;Highcharts;Pandas;React;Angular,We have a set list of tools we're expected to use for data visualization.,Dashboard,Line Chart;Bar Chart;Pie Chart;Dendrogram;Network Diagram;Choropleth Map;Flow Diagram,Analysts;Engineers,Intro;Moderate,Daily,Analysis;Summarization;Learning;Research,Consultative,lack of flexibility to do data vis,not enough design skills,need one mentor to guide,interactive deisgn,my lack of design of data vis,more prototype design,paper prototype with designers,,Much more,female,26 - 35,Europe,asian,Private sector
2/28/2017 7:57:36,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,General charting libraries;Completely custom,No,Design;Engineering;Marketing,50,0,10,10,10,Illustrator;Excel;D3;Leaflet;Mapbox;Highcharts;Other Javascript;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page,Line Chart;Bar Chart;Infographics;Choropleth Map;Raster Map,General Public;Scientists,Intro,Monthly,Entertainment;Analysis;Summarization;Learning,Consultative,,,,,,,,,,male,26 - 35,USA or Canada,white,Public sector
2/28/2017 8:15:12,9,,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools,No,IT;Line of business analyst,30,20,10,20,20,Excel;Tableau;Microstrategy;Mapbox,We have a set list of tools we're expected to use for data visualization.,Dashboard;Scrollytelling;Documents;Presentations;Email,Line Chart;Bar Chart;Infographics;Treemap,Analysts;Product Managers;Project Managers;Executives,Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Consultative, Enterprise on traditional BI (Microstrategy). Business users want Tableau but we have limited licensing on Tableau online. ,Visualization had traditionally been an exercise in report generation. Less about insights and actionable analytics,Saying no to some projects that either have a low ROI or do not bring a lot of value,everyone across the enterprise have access to Tableau online,,,,,Much more,male,36 - 45,USA or Canada,white,Public sector
2/28/2017 8:16:38,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Quantitative UX researcher,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Design;Engineering;Marketing;Research,20,20,20,0,40,ggplot;Other R,I'm able to choose my own tools.,Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Dendrogram;Choropleth Map;Scatterplot,Analysts;Engineers;Scientists;Product Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Consultative,,,,,,,,,More,,,,,Private sector
2/28/2017 8:20:42,10,Technical School,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Staff Scientist,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Summary/Overview;Communication;Exploration;Teaching/instruction/understanding,Embedded in another team,ggplot2/Pandas Charts;Completely custom,No,Engineering;Marketing;Research;IT,20,25,25,15,5,D3;ggplot;MATLAB (and proprietary libraries),I'm able to choose my own tools.,Documents;Presentations;Videos,Line Chart;Bar Chart;3D Chart;Statistical map overlay on 3D mesh,General Public;Scientists;Grant review panels,Intro;Moderate;Expert,Daily,Analysis;Learning;Research,Collaborative,Unrelated to data visualization (politics at work),Poor training of others in recognizing quality issues with visualizations,Being given more chances to participate in workshops/outside collaborations,Being given clearer instructions on what the visualization is supposed to convey,Visualization can make or break an argument (when done right or wrong)...,,Integrating knowledge and experience into high school curricula (where accepted) to strengthen the understanding and appreciation of th trade.,,Same,male,36 - 45,USA or Canada,white,Private sector
2/28/2017 8:23:58,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Supply Chain Analyst,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis,Both,ggplot2/Pandas Charts;General charting libraries,No,IT,10,10,10,10,20,Excel;Leaflet;Highcharts;ggplot;Other R,I'm able to choose my own tools.,Static Web Page;Presentations,Line Chart;Bar Chart;Flow Diagram,Analysts;Project Managers;Executives,Intro;Moderate;Expert,Monthly,Analysis;Summarization,Subordinate,,,,,,,,,More,male,26 - 35,Europe,,Private sector
2/28/2017 8:25:50,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Senior Designer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Marketing,Separate data visualization team,Business Intelligence Tools,No,Design;Engineering;Marketing;Research,10,0,0,50,5,Illustrator;Excel;Tableau;RAW,I'm able to choose my own tools.,Documents,Line Chart;Bar Chart;Pie Chart;Choropleth Map,General Public,Moderate,Monthly,Learning,Subordinate,,,,,,,,,More,male,26 - 35,USA or Canada,,Private sector
2/28/2017 8:26:16,6,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Assistant Professor,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration,Embedded in another team,ggplot2/Pandas Charts;Completely custom,Don't Know,Design;Research,5,5,20,5,30,Illustrator;D3;Processing;ggplot;Pandas;Other Python;QGIS;Gephi,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Dendrogram;Network Diagram;Raster Map,Scientists;Humanities scholars,Intro;Moderate,Monthly,Analysis;Research,Collaborative,,,,,,,,,Same,male,26 - 35,Europe,white,Not-for-profit
2/28/2017 8:34:38,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication,Embedded in another team,ggplot2/Pandas Charts;General charting libraries,Don't Know,Design;Research,33,0,5,5,20,Excel;ggplot,I'm able to choose my own tools.,Documents;Presentations;Email,Line Chart;Bar Chart;Choropleth Map;Raster Map,Analysts;Engineers;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Quarterly,Analysis;Research,Consultative,,,,,,,,,Same,male,36 - 45,USA or Canada,white,Not-for-profit
2/28/2017 8:37:08,5,Bachelors,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Data Experience Designer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Contractor,,,,,,2,0,0,4,0,D3;Mapbox;WebGL;Other Javascript;React,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents,Line Chart;Bar Chart;Pie Chart;Treemap;Dendrogram;Network Diagram,General Public;Analysts;Engineers;Scientists;Product Managers;Project Managers;Executives,Moderate,Daily,Entertainment;Analysis;Summarization;Learning;Research,Collaborative,,,,,,,,,Much more,,,,,
2/28/2017 8:40:12,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Other,Summary/Overview;Exploration,,ggplot2/Pandas Charts,No,,30,20,20,5,10,Excel;Plotly;ggplot;Pandas,I'm able to choose my own tools.,Static Web Page;Documents;Email,Line Chart;Bar Chart;Pie Chart;Flow Diagram;3D Chart,Executives,Intro,Daily,Analysis,Collaborative,,,,,,,,,More,male,56+,USA or Canada,white,Private sector
2/28/2017 8:49:11,2,Masters,Mostly Self-Taught,,Yes,Evaluation and Learning Specialist,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,Research,15,0,0,25,40,Excel;Tableau,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Infographics;Treemap;Dendrogram,Analysts;Executives,Expert,Quarterly,Analysis;Summarization;Learning;Research,Consultative,Being the only data visualization specialist at my job- so when I have trouble with something- I rely heavily on online forums,Not having enough time to speak with the people I'm building dashboards for. does not feel collaborative.,,,Takes time- collaboration and iteration. Not a simple one step process. ,,,,Much more,female,26 - 35,USA or Canada,hispanic,Not-for-profit
2/28/2017 8:51:03,4,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Digital Producer,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Communication,Both,ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Communication/Production,15,1,2,5,2,Illustrator;Excel;D3;Mapbox;Highcharts;ArcGIS;QGIS;Datawrapper,I'm able to choose my own tools.,Static Web Page,Line Chart;Bar Chart;Choropleth Map,General Public,Intro;Moderate,Daily,Summarization;Learning,Collaborative,Not being given enough time to learn new skills/languages tools to level up our dataviz.,Not having enough constructive feedback.,,,,,,,Much more,female,26 - 35,USA or Canada,white,Private sector
2/28/2017 8:57:13,5,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,GIS and Visualisation Specialist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Hired to do data visualization,Contractor,,,,,,30,50,20,10,30,Illustrator;Tableau;D3;Mapbox;ArcGIS;QGIS,We have a set list of tools we're expected to use for data visualization.,Dashboard;Static Web Page,Line Chart;Bar Chart;Infographics;Choropleth Map;Raster Map,NGO,Expert,Monthly,Analysis;Summarization,Consultative,alone doing visualisation,not a lot of freedom in term of creativity,,,,More discussions with customers,"more details about the different jobs in data visualization sector
",,Much more,female,26 - 35,Europe,white,Not-for-profit
2/28/2017 9:04:24,10,Bachelors,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Head of Data,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts;Completely custom,Yes,Engineering,5,20,30,1,20,Excel;Other BI;D3;Leaflet;Mapbox;Other Javascript;ggplot;Pandas;Other Python;QGIS;Gephi,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Treemap;Network Diagram;Choropleth Map;Flow Diagram,Analysts;Engineers;Product Managers;Executives,Moderate;Expert,Daily,Analysis;Summarization;Learning;Research,Consultative,,,,,,,,,More,male,36 - 45,USA or Canada,white,Private sector
2/28/2017 9:04:32,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Chief Data Analyst,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication,Embedded in another team,ggplot2/Pandas Charts;Completely custom,No,Engineering;IT,10,30,20,10,10,Excel;D3;WebGL;ggplot;Pandas;Other Python;networkx,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations,Line Chart;Bar Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map,Analysts;Scientists,Moderate,Weekly,Analysis;Research,Collaborative,,,,,,,,,More,male,36 - 45,Europe,,Not-for-profit
2/28/2017 9:08:16,6,,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Product Manager,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview,Embedded in another team,Business Intelligence Tools;General charting libraries;Completely custom,No,,50,0,0,0,0,Excel;Tableau;D3;Leaflet;Mapbox;Highcharts;QGIS;Gephi,I'm able to choose my own tools.,Embedded in a tool,Line Chart;Bar Chart;Treemap;Choropleth Map;Flow Diagram,Analysts;Engineers;Product Managers;Executives,Moderate,Monthly,Analysis;Summarization;Learning,Consultative,,,,,,,,,Same,,,,,Private sector
2/28/2017 9:08:53,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Researcher,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Research;IT,,,,,,Plotly;ggplot,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents,Line Chart;Bar Chart,Executives,Intro;Moderate,Daily,Analysis;Learning,Consultative,,,,,,,,,,,,,,Public sector
2/28/2017 9:13:24,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Software Developer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Developing data products,Embedded in another team,General charting libraries;Completely custom,No,IT,30,5,0,5,0,Excel;D3;Leaflet;Mapbox;Highcharts;Other Javascript;Angular,I'm able to choose my own tools.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Pie Chart;Choropleth Map,General Public;Analysts,Intro;Moderate;Expert,Daily,Analysis;Summarization,Collaborative,,,,,,,,,More,male,25 or younger,Europe,,Private sector
2/28/2017 9:13:34,7,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Postdoctoral Researcher,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Research,10,30,20,0,40,ggplot;Other R;ad-hoc,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Dendrogram;Raster Map;scatter plot;dot plot;boxplot;contour plot;histogram,General Public;Scientists,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Collaborative,salary,,increase the salary,use more interactivity for exploratory data visualisations,,more (statistical) peers to exchange expertise with,,,More,male,26 - 35,Europe,white,Public sector
2/28/2017 9:14:22,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,PhD Student,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Communication,Embedded in another team,Completely custom,No,Research,10,20,,35,,D3;Other R,I'm able to choose my own tools.,Embedded in a tool,Line Chart;Bar Chart;Scatterplot Matrix,Engineers;Scientists,Expert,Quarterly,Research,Collaborative,,It's not always appreciated (though necessary). Research takes precedence- even if data visualization is essential to getting research data.,,,,,Guidelines on how to measure the effectiveness of particular visualizations.,,More,male,26 - 35,Europe,,Public sector
2/28/2017 9:19:48,4,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,PhD Candidate,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Student,,,,,,20,0,5,5,20,ggplot;QGIS,I'm able to choose my own tools.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Raster Map;Flow Diagram,General Public;Analysts,Expert,Quarterly,Learning;Research,Collaborative,,,,,,,,,,,,,,Public sector
2/28/2017 9:20:07,10,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Editor,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Hired to do data visualization,Full-time,Communication,Separate data visualization team,ggplot2/Pandas Charts;Completely custom,Yes,,30,0,20,10,30,Illustrator;Excel;D3;Other R;QGIS,I'm able to choose my own tools.,Static Web Page,Line Chart;Bar Chart;Treemap;Choropleth Map,General Public,Intro,Hourly,Entertainment;Learning,Subordinate,,,,,,,,,More,,,,,
2/28/2017 9:22:05,2,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,PhD Student,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Student,,,,,,20,0,30,10,40,ggplot;Other R,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Network Diagram;Scatterplot,General Public;Analysts;Scientists,Intro;Moderate,Quarterly,Analysis;Research,Consultative,,,,,,,,,More,male,25 or younger,Europe,white,Public sector
2/28/2017 9:25:03,3,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Journalist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Journalism,Embedded in another team,ggplot2/Pandas Charts;General charting libraries,No,Marketing;IT;Editorial,30,10,10,10,40,Highcharts;ggplot;D3;Other R,I'm able to choose my own tools.,Embedded in a tool,Line Chart;Bar Chart;Pie Chart;Treemap;Choropleth Map,General Public,Intro,Weekly,Entertainment;Analysis;Summarization;Learning,Consultative,,,,,,,,,More,male,36 - 45,Europe,asian,Not-for-profit
2/28/2017 9:25:25,5,Technical School,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Business Intelligence Consultant ,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Consultant,,,,,,50,15,10,70,5,Excel;Tableau;Microstrategy;Power BI;Qlik;Other BI;D3;Mapbox;Highcharts;ArcGIS;QGIS,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Infographics;Flow Diagram,Analysts;Engineers;Scientists;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Daily,Analysis;Summarization;Decisions ,Consultative,Slow backend ,No agility ,Earlier involvement,Proactivity ,Complexity,More proper trainng,,,Same,male,36 - 45,Europe,white,Private sector
2/28/2017 9:25:32,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Architect,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Design;Engineering;Marketing;IT,10,0,0,2,10,Illustrator;Excel;Processing;ggplot;Other R;Pandas;Other Python,I'm able to choose my own tools.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Flow Diagram,Analysts;Engineers;Executives,Moderate,Monthly,Analysis;Summarization,Subordinate,,,,,,,,,Much more,,,,,
2/28/2017 9:26:38,6,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Assistant Professor of Political Science,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication,Embedded in another team,ggplot2/Pandas Charts,No,Research,10,10,10,50,20,ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Documents;Presentations,Line Chart;Bar Chart;Network Diagram;Choropleth Map,Scientists,Expert,Daily,Analysis;Summarization;Research,Collaborative,Science is hard,I'm bad at picking colors,More research assistance,I think I need more UX help,The difference between my plots which are honest and others' which can be LIES,,,,,male,26 - 35,USA or Canada,white,Private sector
2/28/2017 9:27:02,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration,Embedded in another team,ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Engineering;Research,,,,,,Other BI;D3;Other Javascript;ggplot;Java,I'm able to choose my own tools.,Embedded in a tool;Dashboard,Line Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map,Analysts;Scientists;Medical Professionals,Expert,Weekly,Analysis;Summarization;Research,Consultative,,,,,,,,,More,male,26 - 35,Europe,white,Private sector
2/28/2017 9:30:35,5,Masters,Mostly Self-Taught,Intended to work in data visualization,No,,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,,ggplot2/Pandas Charts;General charting libraries,No,,,,,,,Highcharts;ggplot,I'm able to choose my own tools.,Dashboard;Presentations,Line Chart;Bar Chart,General Public;Project Managers,Intro;Moderate,Weekly,Analysis;Summarization,Collaborative,,,,,,,,,More,male,26 - 35,Latin America,,Private sector
2/28/2017 9:30:36,5,Masters,Mostly Self-Taught,Intended to work in data visualization,No,,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,,ggplot2/Pandas Charts;General charting libraries,No,,,,,,,Highcharts;ggplot,I'm able to choose my own tools.,Dashboard;Presentations,Line Chart;Bar Chart,General Public;Project Managers,Intro;Moderate,Weekly,Analysis;Summarization,Collaborative,,,,,,,,,More,male,26 - 35,Latin America,,Private sector
2/28/2017 9:34:39,3,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Research Associate,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning,Embedded in another team,ggplot2/Pandas Charts,No,Research;IT,5,5,5,1,10,Pandas;Other Python,I'm able to choose my own tools.,Presentations;reveal.js,Line Chart;Bar Chart;Dendrogram;Network Diagram,Scientists,Moderate,Yearly,Research,Collaborative,to little time- to much to do,api limitations,spend more time coding,be able to flexibly move between more tools / packages,,,,,Same,male,36 - 45,Europe,,Public sector
2/28/2017 9:36:18,8,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Research Associate ,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,ggplot2/Pandas Charts,No,Research,40,25,25,10,0,D3;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Network Diagram,Scientists;Medical Professionals;Product Managers;Project Managers;Executives,Expert,Daily,Research,Collaborative,Learning d3,Converting static documents to interactive ,,,,,,,,male,36 - 45,USA or Canada,white,Private sector
2/28/2017 9:36:38,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Head of Reporting and Analytics,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Excel,No,Research;IT,5,15,40,10,30,ggplot;Other R,I'm able to choose my own tools.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Infographics,Analysts;Executives;Customer reports,Expert,Daily,Analysis;Summarization;Learning;Research,Collaborative,,,,,,,,,More,male,25 or younger,,,Public sector
2/28/2017 9:38:27,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Design;Engineering;IT,,,,,,Plotly;D3;Leaflet;ggplot;Other R;Angular,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Treemap;Choropleth Map,Analysts;Engineers;Product Managers;Executives,Moderate,Monthly,Analysis;Summarization,Consultative,,,,,,,,,More,,,,,Private sector
2/28/2017 9:40:48,7,,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Bioinformatics Graduate Student,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Student,,,,,,30,15,50,0,5,ggplot,I'm able to choose my own tools.,Embedded in a tool;Documents;Presentations;Email,Line Chart;Bar Chart;Scatterplot,Scientists,Moderate;Expert,Weekly,Analysis;Summarization;Research,Collaborative,,,,,,,,,Same,male,26 - 35,USA or Canada,white,Private sector
2/28/2017 9:41:39,6,PhD,Mostly from School,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Research Assistant ,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Student,,,,,,30,10,40,0,20,Other Python;QGIS,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Choropleth Map;Histogram;kdeplot;scatter plot,General Public;Analysts;Scientists,Intro;Moderate;Expert,Weekly,Analysis;Research,Collaborative,Pressure to produce ,Matplotlib is too complicated , I wish journal articles could be shorter- more on point- and posted online quickly. ,I would keep many of the views I make around in a library,Visualization is as important as tabular display ,,,,Same,male,26 - 35,USA or Canada,white,Public sector
2/28/2017 9:46:13,3,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Scientist,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning,Embedded in another team,ggplot2/Pandas Charts;General charting libraries,No,Engineering,10,50,20,5,15,Plotly;D3;Leaflet;Highcharts;Other Javascript;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Dendrogram;Choropleth Map,Analysts;Engineers;Scientists;Executives,Intro;Moderate,Weekly,Analysis;Summarization,Collaborative,,,,,,,,,More,male,26 - 35,Europe,white,Private sector
2/28/2017 9:48:22,1,PhD,Mostly Self-Taught,Intended to work in data visualization,Yes,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts;General charting libraries;Completely custom,Yes,Engineering;Research;IT,20,20,20,10,30,Excel;D3;Leaflet;Highcharts;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Dendrogram,Analysts;Engineers;Scientists;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization,Collaborative,,,,,,,,,More,,,,,Private sector
2/28/2017 9:50:02,7,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Scientist,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts;Completely custom,No,Design;Research,30,0,40,10,20,Illustrator;D3;ggplot;Other R;Other Network Visualization Suite,I'm able to choose my own tools.,Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Dendrogram;Network Diagram,Analysts;Engineers;Scientists;Project Managers,Intro;Moderate,Weekly,Analysis;Summarization;Research,Consultative,,,,,,,,,More,male,26 - 35,Europe,white,Public sector
2/28/2017 9:59:33,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Associate Professor,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts,No,,5,10,10,5,70,ggplot,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Dendrogram,General Public;Analysts;Scientists,Moderate,Weekly,Entertainment;Analysis;Summarization;Research,Consultative,,,,,,,,,,female,,,,Not-for-profit
2/28/2017 9:59:39,5,PhD,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Postdoctoral Researcher,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts;Completely custom,No,Research,,,,,,Illustrator;Leaflet;ggplot;Other R,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Dendrogram;Network Diagram;Raster Map,Scientists,Expert,Monthly,Analysis;Summarization;Research,Collaborative,,,,,,,,,More,,,,,Public sector
2/28/2017 10:03:04,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Science Project Manager,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,General charting libraries;Completely custom,Yes,Design;Engineering;Research,30,10,30,10,20,D3;Other Javascript,I'm able to choose my own tools.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Treemap;Network Diagram;Flow Diagram;Box Plots;Sunburst;Force connected;,Analysts;Engineers;Scientists;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Daily,Analysis;Summarization;Learning;Research,Collaborative,Its not exploratory enough. ,We cannot make one-off visualizations. Everything needs to be customizable and compatible with all sorts of data. ,More exploratory visuals. ,,,,,,More,female,25 or younger,USA or Canada,asian,Private sector
2/28/2017 10:06:51,2,Masters,Mostly from School,Ended up doing data visualization as a requirement of the job,Yes,,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,Don't Know,Design;Research;IT,10,25,10,5,25,Tableau;ggplot;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations,Line Chart;Bar Chart;Treemap,Analysts;Executives;Commercial Clients,Expert,Monthly,Analysis;Summarization;Learning,Collaborative,,,,,,,,,,,,,,
2/28/2017 10:07:56,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Chief Data Scientist,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Consultant,,,,,,30,10,30,10,20,Plotly;Leaflet;ggplot,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart,Product Managers;Executives,Moderate,Monthly,Analysis;Summarization;Research,Collaborative,,,,,,,,,More,male,46 - 55,Latin America,,Private sector
2/28/2017 10:45:08,10,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Data Scientist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,Don't Know,,20,5,50,10,15,Excel;Tableau;ggplot;Other R;Gephi,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations,Line Chart;Bar Chart;Network Diagram;Flow Diagram,Analysts;Product Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Learning,Collaborative,,Getting clients to want/use the visualization. Most prefer a raw data dump.,,Ability to incorporate other programs besides Tableau and Excel,,,,,More,female,36 - 45,USA or Canada,,Private sector
2/28/2017 10:52:11,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Assistant Professor,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview,Both,ggplot2/Pandas Charts;General charting libraries;Completely custom,No,,1,5,5,0,1,Excel;D3;ggplot;Other R;Pandas;Other Python;React;Other GIS,I'm able to choose my own tools.,Documents;Presentations;Email,Line Chart;Bar Chart;Choropleth Map,Engineers;Scientists,Moderate,Quarterly,Learning;Research,Consultative,,,,,,,,,,male,26 - 35,USA or Canada,asian,Public sector
2/28/2017 10:54:53,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Paid Search,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Marketing,Both,Business Intelligence Tools;ggplot2/Pandas Charts,No,Marketing;Research,10,5,20,0,5,Other BI;Pandas;Other Python,I'm able to choose my own tools.,Dashboard;Presentations,Line Chart;Bar Chart;Infographics;Flow Diagram,Analysts;Project Managers,Intro,Weekly,Analysis;Learning,Consultative,Stupid people,Learning,Smarter people,More time,Literally everything,Smarter people,Thought process,,Much more,male,26 - 35,USA or Canada,white,Private sector
2/28/2017 11:05:45,9,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Engineer,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Engineering,5,80,5,0,35,Excel;D3;Highcharts;Other Javascript;Pandas;Angular,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Infographics,General Public;Engineers;Product Managers;Executives,Intro,Weekly,Analysis;Summarization;Learning;Research,Consultative,Limited sophistication of data consumers,Charting libraries are either too inflexible or too hard to use.,End consumers who cared more about accurate answers.,Easier to automatically make charts meeting specific specifications,My organization gets it; external consumers are the bigger problem.,Knowing more math,Advice on sorting through thicket of available tools,,Less,male,26 - 35,USA or Canada,,Private sector
2/28/2017 11:17:10,7,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Analyst,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Marketing;Research,20,10,30,0,40,Excel;Tableau;Power BI;ggplot,I'm able to choose my own tools.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart,Project Managers;Executives,Intro,Weekly,Analysis;Summarization;Research,Consultative,,,,,,,,,More,male,26 - 35,USA or Canada,white,Not-for-profit
2/28/2017 11:20:50,6,Bachelors,Mostly Self-Taught,,No,,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Consultant,,,,,,50,0,25,,25,Plotly;Leaflet;Highcharts;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Choropleth Map;lots,General Public;Executives,Intro;Moderate,Daily,Entertainment;Analysis;Summarization,Consultative,low pay,bugs,,,,,,,Same,male,56+,USA or Canada,white,Private sector
2/28/2017 11:23:50,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Software Engineer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Both,Completely custom,No,Design;Engineering,30,0,0,30,0,Mapbox;WebGL;Other Javascript;React;our own JS libraries,I'm able to choose my own tools.,web apps,Line Chart;Bar Chart;everything is a scatterplot,Executives;coworkers who are not analysts ,Intro;Moderate;Expert,Daily,operation;strategical/tactical decision making;general information,Collaborative,I'm technically an IC engineer but my day job is a mix of: EM- product designer- product manager... it's difficult to find the time to do everything in a day's work. ,lack of time to learn best coding practices- do personal projects etc.,double the pay,hmm i think it's actually fine,that it's not about knocking down features or making things look pretty- but getting it right. many get that though,i'm actually serious about doubling the pay,more discussion about use of datavis in corporate settings. I don't care about d3 or tableau or adhoc projects. ,,Same,,,,,Private sector
2/28/2017 11:46:21,10,Other,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Digital Strategy Officer,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Communication,Both,Business Intelligence Tools;General charting libraries;Completely custom,No,Design;Engineering,,,,,,Illustrator;Excel;Tableau;D3;Highcharts;Other Javascript,We have a set list of tools we're expected to use for data visualization.,Dashboard;Static Web Page,Line Chart;Bar Chart;Infographics,General Public,Moderate,Weekly,Analysis;Summarization;Research,Subordinate,,,,,,,,,More,female,46 - 55,USA or Canada,white,Public sector
2/28/2017 11:51:19,2,Masters,Mostly Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,Software Engineer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview,Separate data visualization team,Completely custom,No,Design;Engineering;Research,30,30,,30,,D3,I'm able to choose my own tools.,Static Web Page,Bar Chart;Pie Chart;Treemap;Choropleth Map;bubble chart,General Public;Engineers,Moderate,Weekly,Analysis;Summarization;Research,Collaborative,,,,,,Dedicate full time to data visualization,,,More,male,26 - 35,Latin America,,Not-for-profit
2/28/2017 11:53:35,5,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,University professor/researcher,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Exploration,Embedded in another team,ggplot2/Pandas Charts,No,Research,20,20,39,15,25,ggplot;Other R;Other Python,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart,Scientists,Expert,Monthly,Research,Collaborative,lack of recognition,lack of expert support,more recognition,more IT support,time spent carrying them out,adoption of and stimulus for open/free source software,convergence of too many tools,,More,male,56+,Latin America,hispanic,Public sector
2/28/2017 11:54:18,5,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Software Engineer Visualization,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;General charting libraries,Yes,Design;Engineering;Marketing;Research,100,0,0,0,0,D3;Mapbox;Other Javascript,I'm able to choose my own tools.,Dashboard,Line Chart;Bar Chart;Pie Chart;Treemap;Choropleth Map;Flow Diagram,General Public;Analysts;Engineers;Scientists;Product Managers;Project Managers;Executives,Moderate;Expert,Daily,Analysis;Summarization;Research,Collaborative,data analysis tool is not eye catching,feel like I'm an UI engineer,Visualization engineer,,they think I'm just working on simple line charts,has a design help all the time,,,Much more,male,26 - 35,USA or Canada,asian,Private sector
2/28/2017 12:02:07,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Head of UX Design,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools;General charting libraries;Completely custom,Yes,Design;Engineering,5,5,10,50,5,Illustrator;Excel;D3;WebGL;Highcharts;React;Angular,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations,Line Chart;Bar Chart;Treemap;Network Diagram;Flow Diagram;Sparklines;small multiples;sankey diagrams;horizon charts;parallel coordinates;bespoke visualisations,Analysts;Scientists;Executives;Traders,Moderate;Expert,Hourly,Analysis;Summarization;Research;Navigation,Collaborative,Communicating uncertainty- statistical illiteracy ,That some people see data vis as a standalone concept- rather than just another tool in a designer's toolkit to be used appropriately for particular purposes. ,,,"The effort and exploration required to establish and discover ""the right visualisation"". ",,,,Same,male,26 - 35,Europe,white,Private sector
2/28/2017 12:11:21,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Data Analyst,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools,No,Reports,5,5,5,5,80,Excel;Tableau;Microstrategy;Power BI,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations,Line Chart;Bar Chart,Executives,Moderate,Daily,Analysis;Summarization,Subordinate,company data management/quality practices,tools limitation (excel),freedom/access to what's needed to do the job,,it actually requires skill- and not just a click-of-a-button skill,company initiative for data analytics/data science,,,Much more,male,26 - 35,USA or Canada,asian,Private sector
2/28/2017 12:17:26,1,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Visual analytics ,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis,Separate data visualization team,Completely custom,Yes,Research,,,,,,D3;Other R;ArcGIS;Extjs,I'm able to choose my own tools.,Static Web Page,Pie Chart;Treemap;Network Diagram;3D Chart,Medical Professionals,Expert,Daily,Analysis;Learning;Research,Collaborative,,,,,,,,,Less,,,,,
2/28/2017 12:25:00,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Data Scientist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Marketing;Research;IT,30,30,50,30,30,Excel;Tableau;Plotly;D3;Mapbox;Highcharts;Other Javascript;ggplot;Pandas;Other Python;QGIS;Datawrapper,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Documents,Line Chart;Bar Chart;Pie Chart;Treemap;Choropleth Map;Raster Map,General Public;Analysts;Executives;Researchers;Government Officials,Intro;Moderate;Expert,Daily,Analysis;Summarization;Learning;Research,Collaborative,Folks not taking effective communication with graphics as seriously as effective communication with text.,Acquiring and understanding data ,A larger team to draw on / a team with a range of more specialized visualizations skills,Variety,Stats/methodological rigor comes first- visualization second (sort of!),,,,More,male,26 - 35,USA or Canada,,Public sector
2/28/2017 12:38:57,10,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Currently data scientist in the past BI Eng,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Other,Analysis;Machine Learning;Summary/Overview;Exploration,Embedded in another team,ggplot2/Pandas Charts;Completely custom,No,Research,25,20,40,0,15,Plotly;D3;ggplot;Other R,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Network Diagram,Engineers;Scientists,Expert,Daily,Research;Operations,Collaborative,That I have to do too much of the data pre processing. When I got help from developers to do the work- I ended up spending too much time validating their code. There were too many bugs and issues. So- unfortunately for the next projects- I preferred to do it my self. ,Still allot to learn about D3. Learning curve is too steep,,,They only understand the value after I finish the deliverable. They can not even begin to imagine how to work more efficiently with data.,,,,More,female,36 - 45,,,Public sector
2/28/2017 12:47:45,4,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Data Scientist,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration,Separate data visualization team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Research,75,10,80,,,Tableau;D3;Other Javascript;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Dendrogram;Network Diagram;Flow Diagram,Analysts;Scientists;Medical Professionals;Project Managers,Intro;Moderate,Daily,Analysis;Summarization;Learning;Research,Collaborative,,Data visualization can be very repetitive to start. A lot of time you are copy pasting D3 examples- etc. Also- a lot of people don't have concept of color- presentation- etc.,,Continue applying more machine learning to visualization as I am. Introduce interactive machine learning into it.,That basic Excel is not the answer to problems.,,,,More,male,25 or younger,,white,Public sector
2/28/2017 13:05:47,4,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Senior Associate Analytical Consultant,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;Completely custom,Don't Know,Research;Consulting,20,20,10,10,40,Excel;D3;Processing;Mapbox;Other Javascript;ggplot;Pandas;Other Python;Other MVC,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations,Line Chart;Bar Chart;Network Diagram;Flow Diagram,Analysts;Scientists;Product Managers;Project Managers;Executives,Moderate;Expert,Weekly,Analysis;Summarization;Research,Consultative,Lack of innovation/vision,Lonely,,Make data visualization more strategic/central,,,,,More,male,26 - 35,USA or Canada,white,Private sector
2/28/2017 13:07:04,10,PhD,Mostly Self-Taught,Intended to work in data visualization,No,Adjunct Professor ,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Engineering;Research;IT,20,10,30,10,10,Excel;Qlik;Plotly;D3;Processing;WebGL;Highcharts;Other Javascript;ggplot;Other R;Pandas;Other Python;Gephi;Cytoscape,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations;Dynamic web,Line Chart;Bar Chart;Pie Chart;Treemap;Dendrogram;Network Diagram;Flow Diagram;3D Chart;Histogram;density plot;heatmap;polar plot;circular polar;rose wind plot,General Public;Analysts;Engineers;Scientists;Medical Professionals,Intro;Moderate,Weekly,Analysis;Summarization;Research;Publication in scientific journals,Collaborative,Expectations for more in too short time- unrealistic deadlines,Lack of tools suitable to prepare dataviz for sci journals (mostly black&white)- suitable for copying in bw without loosing info presented-Lack of fill patterns instead of colors, More realistic time for doing work,Tool for creating set of colors according wcga- for people with vision defects.,Appropriate types of charts for appropriate data- appropriate set of colors,More flexible tools with less effort and necissity to write own code,Easy high level language with primitives to create custom charts,,More,,46 - 55,Europe,white,Public sector
2/28/2017 13:13:27,7,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,Senior Design Technologist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning,Embedded in another team,Business Intelligence Tools;Completely custom,No,Engineering,10,0,0,85,5,D3;Leaflet;Other Javascript;React,I'm able to choose my own tools.,Embedded in a tool;Static Web Page,Line Chart;Bar Chart;Pie Chart,Engineers;Scientists,Expert,Weekly,Analysis,Collaborative,,,,,,,,,Same,female,26 - 35,USA or Canada,white,Private sector
2/28/2017 13:15:39,5,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Visual Designer,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Exploration,Embedded in another team,General charting libraries;Completely custom,No,Design,40,0,0,80,0,Illustrator;D3,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Network Diagram;Donut,Analysts;Engineers;Product Managers;Executives,Expert,Daily,Analysis;Research,Subordinate,"Developers I work with think I'm just disturbing their workflow by giving them designs- they think they can do my job because in their opinion it only requires common sense.
","Developers do not accept my visualizations as it is- and they make changes in my designs whenever they feel like. Or they just ignore my designs.
Also I constantly need to prove them that my designs will work by doing user test. They do not accept that I have the experience to design simple charts.",Respect for my knowledge/experience ,Respect for my knowledge/experience,"That I do not design charts in a certain the way just because ""I like it"" that way or ""I feel like this today"" but my design decisions are based on studies of visual perception.",,,,Much more,,26 - 35,Europe,,
2/28/2017 13:21:11,4,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Data Scientist,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration;Detect outliers,Both,ggplot2/Pandas Charts,Yes,Engineering;IT,20,50,20,1,0,Plotly;ggplot;Other R,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart,Medical Professionals,Expert,Monthly,Analysis;Summarization;Learning;Research,Collaborative,Don't do analysis,,,,,,,,More,male,26 - 35,Europe,white,Public sector
2/28/2017 13:58:58,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,SharePoint Developer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Embedded in another team,Business Intelligence Tools;General charting libraries;Completely custom,No,IT,5,45,,30,20,D3,I'm able to choose my own tools.,Dashboard;Static Web Page,Line Chart;Bar Chart;Pie Chart;Treemap;Dendrogram,Analysts;Project Managers,Intro,Weekly,Analysis;Summarization,Consultative,Getting enough 3rd party tools,Lack of knowledge,Work from home,,It's potential to be applied.,,,,More,male,56+,USA or Canada,white,Public sector
2/28/2017 14:17:32,7,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Co-founder,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Machine Learning;Exploration,Embedded in another team,Completely custom,Yes,Engineering,15,15,5,5,10,Excel;Plotly;D3;Leaflet;Mapbox;Other Javascript;ggplot;Other R;Other Python;React,I'm able to choose my own tools.,Embedded in a tool,Line Chart;Network Diagram;Choropleth Map,Engineers;Executives,Moderate,Yearly,Analysis;Summarization,Consultative,,,,,,,,,More,male,26 - 35,Oceania,,Private sector
2/28/2017 14:21:18,6,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts,No,Engineering;Research,,,,,,Plotly;ggplot;Other R;Cytoscape,I'm able to choose my own tools.,Dashboard;Static Web Page;Presentations,Line Chart;Bar Chart;Treemap;Dendrogram;Network Diagram,Analysts;Scientists;Medical Professionals,Intro,Daily,Analysis;Summarization;Research,Collaborative,,,,,,,,,Same,male,26 - 35,,,Public sector
2/28/2017 14:25:49,4,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Data Visualisation Manager,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Marketing,Both,ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Research,10,40,,30,20,Excel;Plotly;D3;Processing;Leaflet;Other Javascript;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations,Line Chart;Bar Chart;Pie Chart;Network Diagram;Flow Diagram,Analysts;Clients,Moderate,Weekly,Analysis;Summarization;Research,Collaborative,,,,,,,,,More,male,26 - 35,Europe,white,Private sector
2/28/2017 15:21:16,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Capacity Manager,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom;Excel,No,IT,10,10,5,10,20,Excel;Other BI;ggplot;Other Network Visualization Suite,We have a set list of tools we're expected to use for data visualization.,Documents;Presentations,Line Chart;Bar Chart;Dot Plot;Scatter Plot,Executives,Intro;Moderate,Monthly,business planning,Consultative,unrealistic expectations on effort and time- not enough people to do the work.,tools focus on making single charts rather than on building a document with charts and explanatory text. RMarkdown is getting close but is clunky and ugly. Some of the tools that do look promising insist I put stuff on the 'cloud' but that's not possible with the clients and data that I work with- so I'm limited to junk tools.,increase the budget so I can replace team members who have left - my team is crippled by budget cuts,get access to better story telling tools.,they still think pie charts are useful and just don't understand there are better ways of presenting so that it's easy to understand.,more team members so I can work fewer long days,I want to see them stop talking about individual charts and start talking about the whole package of how to build a very large page report (and maintaining/updating it each month/quarter/year/whatever) that includes a very large number of charts with lots of explanatory text.,,Much more,male,46 - 55,Oceania,white,Private sector
2/28/2017 15:22:16,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Lead Statistician / Data Scientist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,,Business Intelligence Tools;ggplot2/Pandas Charts,No,Engineering;Research;IT,20,0,60,0,20,ggplot;Other R,I'm able to choose my own tools.,Dashboard;Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Dendrogram;Raster Map;Flow Diagram;3D Chart,Analysts;Engineers,Moderate;Expert,Daily,Analysis;Summarization;Learning,Collaborative,boredom- lack of growth,ggplot syntax,get more challenging analytical projects,tableau-like drag-n-drop interactive functionality availalble in R,amount of fine tuning that goes into effective visualization,,,,Same,male,46 - 55,,,Public sector
2/28/2017 16:14:55,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration,Embedded in another team,ggplot2/Pandas Charts;Excel;Graphics,No,Research,5,30,50,5,30,Excel;Power BI;ggplot;Other R,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap,Product Managers;Executives,Intro;Moderate,Quarterly,Analysis;Research,Consultative,Difficult to creat change in my organization,Presentation ready graphs,More emphasis on design,More of it,For some a bar chart is just a bar chart and they don't care about trying to tell a data story,,,,More,male,36 - 45,USA or Canada,white,Private sector
2/28/2017 16:43:39,1,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,Student,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Student,,,,,,25,25,30,10,10,Excel;Tableau;D3;Leaflet;Mapbox;Other Javascript;Other R;Pandas;Other Python;Java,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents,Line Chart;Bar Chart;Infographics;Flow Diagram;3D Chart,Uni projects,Intro;Moderate,Weekly,Analysis;Learning,Subordinate,I wish I was better at coding (I'm getting there slowly!),When data provided is difficult to manipulate/incorrectly inputted ,,Make it more sophisticated- be faster at producing it,It's time consuming ,,Good examples of datasets to learn new coding languages in,,Much more,female,25 or younger,Europe,white,Academic
2/28/2017 19:13:47,2,Masters,Mostly from School,Ended up doing data visualization as a requirement of the job,Yes,Data Scientist,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,Yes,Engineering,10,30,30,10,10,Tableau;Plotly;D3;ggplot;Other R;Pandas;Other Python;QGIS;Other GIS,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Choropleth Map;Scatter Plot,Analysts;Engineers;Project Managers;Executives,Expert,Monthly,Analysis;Summarization,Consultative,,,,,Don't start with a chart type in mind. Start with what info you want to show and figure out the best visual representation.,,,,Same,male,26 - 35,USA or Canada,,Not-for-profit
2/28/2017 20:20:55,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Senior Analyst,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts;Completely custom;Modeling;Excel,No,No departments,15,5,10,5,5,Excel;D3;ggplot;Other R;Angular,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Network Diagram;Flow Diagram,Analysts;Medical Professionals;Project Managers;Government,Intro;Moderate;Expert,Weekly,Analysis;Research,Consultative,,,,,,,,,More,male,26 - 35,USA or Canada,white,Private sector
2/28/2017 20:22:53,10,Bachelors,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,CTO,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Exploration,,Completely custom,Yes,Engineering;Marketing;Research,30,20,20,10,20,Excel;Power BI;D3;WebGL;Other GIS,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations;Email,Line Chart;Bar Chart;Choropleth Map;3D Topographical Maps,Analysts;Engineers;Scientists;Executives,Moderate,Weekly,Analysis;Summarization;Learning;Research,Collaborative,,,,,,,,,More,male,26 - 35,USA or Canada,,Private sector
2/28/2017 20:23:33,6,PhD,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Principal Consultant ,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools;Completely custom,No,Design;Engineering,20,20,20,20,20,Illustrator;Excel;Tableau;D3;Highcharts,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Choropleth Map;Flow Diagram,General Public;Scientists;Project Managers;Executives,Moderate,Hourly,Analysis;Summarization;Learning,Collaborative,Knowledge gaps of clients,People not knowing enough about data viz but having opinions about charts etc that are in correct,,,,,,,Same,female,26 - 35,USA or Canada,white,Private sector
2/28/2017 20:39:54,8,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,BI Engineering Manager,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Marketing,Embedded in another team,Business Intelligence Tools;Completely custom,No,Design;Engineering;Marketing;Research,30,25,10,10,25,Excel;Tableau;Microstrategy;D3,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Treemap;Choropleth Map,Analysts;Product Managers;Executives,Moderate,Weekly,Analysis;Summarization,Collaborative,,,,,,,,,Same,male,26 - 35,,,Private sector
2/28/2017 20:40:02,4,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Developer,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Hired to do data visualization,Contractor,,,,,,,,,,,D3;Processing;Angular;ArcGIS,I'm able to choose my own tools.,Static Web Page,Bar Chart;Pie Chart;Infographics;Choropleth Map;Flow Diagram,General Public;Analysts,Intro;Moderate,Daily,Analysis;Research;News outlet,Collaborative,,,,,,,,,Same,male,36 - 45,Latin America,hispanic,Media
2/28/2017 21:46:11,3,PhD,Mostly Self-Taught,Intended to work in data visualization,Yes,data administrator,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Summary/Overview;Communication,Embedded in another team,Completely custom,No,IT,10,10,15,5,5,D3;Leaflet,I'm able to choose my own tools.,Static Web Page,Line Chart;Bar Chart;Treemap;Choropleth Map;Flow Diagram,General Public,Intro,Weekly,Analysis;Summarization;Learning,Subordinate,I don't have enough time to focus on data visualizations,Government- so they are afraid of what the message might be,More data vis!,More of it,They only like paid for ESRI products,More time to create data viz,,,Much more,male,36 - 45,USA or Canada,white,Public sector
2/28/2017 22:00:20,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Manager,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Engineering,,,,,,Excel;Tableau;Microstrategy;Highcharts;Recharts;Pandas,I'm able to choose my own tools.,Dashboard;Presentations,Line Chart;Bar Chart;Treemap;Choropleth Map;Flow Diagram,Engineers;Product Managers;Project Managers;Executives,Moderate,Monthly,Analysis;Summarization,Consultative,,,,,,,,,,male,,USA or Canada,white,Private sector
3/1/2017 0:03:26,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Academic,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Student,,,,,,5,10,50,20,20,ggplot;Other R;Other Python,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Infographics;Choropleth Map,General Public,Intro,,Learning;Research,,,,,,,,,,Much more,male,26 - 35,Europe,white,Public sector
3/1/2017 0:25:35,3,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,Student,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Student,,,,,,20,50,,,,Leaflet;Mapbox;ggplot;Other R;ArcGIS;QGIS;Other GIS,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Choropleth Map;Raster Map;Flow Diagram,Engineers;Scientists,Intro;Moderate;Expert,,,,,,,,,,,,More,,,,,
3/1/2017 0:53:55,4,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Data Visualization,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Marketing;Exploration,Separate data visualization team,Completely custom,Yes,IT,,,,,,D3;Leaflet;Mapbox;Other Javascript;React;Angular;Other MVC;QGIS;Gephi;Other Network Visualization Suite,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page,Line Chart;Bar Chart;Pie Chart;Infographics;Dendrogram;Network Diagram;Choropleth Map,General Public;Analysts;Project Managers;Executives,Moderate,Daily,Analysis;Summarization,Consultative,,,,,,,,,Less,male,26 - 35,Europe,,Private sector
3/1/2017 1:09:40,4,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Information Designer,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Contractor,,,,,,70,0,0,90,5,Illustrator;Excel;D3,I'm able to choose my own tools.,Static Web Page;Presentations,Line Chart;Bar Chart;Infographics;Treemap,General Public,Intro;Moderate;Expert,Daily,Entertainment;Analysis;Summarization;Learning,Collaborative,,,,,,,,,Same,male,26 - 35,Europe,white,Private sector
3/1/2017 1:11:30,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Visualisation Designer,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Consultant,,,,,,50,10,10,20,10,Illustrator;Excel;Power BI;D3;Mapbox;Other Javascript;ggplot;Other R;React,I'm able to choose my own tools.,Dashboard;Scrollytelling;Static Web Page;Presentations,Line Chart;Bar Chart;Treemap;Network Diagram,General Public;Scientists;Medical Professionals;Project Managers;Executives,Intro;Moderate;Expert,Hourly,Entertainment;Analysis;Summarization;Learning;Research,Consultative,,,,,,,,,Same,male,36 - 45,Europe,white,
3/1/2017 1:18:13,5,Masters,Mostly Self-Taught,Intended to work in data visualization,No,CTO,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Contractor,,,,,,20,20,5,50,20,D3;Processing;WebGL,I'm able to choose my own tools.,Dashboard;Scrollytelling;Static Web Page;Presentations,Line Chart;Bar Chart;Network Diagram,General Public,Moderate,Quarterly,Entertainment;Summarization,Consultative,Making useless stuff from time to time,Have to make data beautiful first,The time constraint of the projects,Have more time to research,,,,,More,male,36 - 45,Europe,,Private sector
3/1/2017 1:26:15,4,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,Yes,Engineering,,,,,,Excel;Other BI;WebGL;Other Javascript;Pandas;Other Python;React,I'm able to choose my own tools.,Embedded in a tool,Line Chart;Bar Chart;Network Diagram,Analysts;Engineers;Scientists;Project Managers,Moderate,Daily,Analysis;Summarization;Research,Collaborative,,,,,,,,,,,,,,
3/1/2017 1:34:06,6,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Information Designer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Communication;Exploration,Both,Business Intelligence Tools;General charting libraries;Completely custom,Yes,Design,,,,,,Illustrator;Excel,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Choropleth Map,General Public;Analysts;Engineers;Scientists;Medical Professionals;Executives,Expert,Weekly,Entertainment;Analysis;Summarization;Learning,Collaborative,,,,,,,,,More,,,Europe,,
3/1/2017 1:36:00,3,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Visual analytics,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design,15,15,25,15,30,Illustrator;Excel;D3;Highcharts;Other Javascript;ggplot;Other R;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Presentations,Line Chart;Bar Chart;Network Diagram,Analysts;Project Managers,Moderate,Weekly,Analysis;Summarization;Research,Collaborative,,Missing the skills to make a one-day mock up based on representative data,Having a team or a buddy to brainstorm with,Include more smart statistical back up,That most colleagues believe it is the last step (only communicating data) instead of using visualization to explore the data,Having a team,They give many valuable support on the theory side- but less in the actual process,,More,female,26 - 35,Europe,,Private sector
3/1/2017 3:36:48,8,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Business intelligence analyst,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;Completely custom,No,Engineering;Marketing;IT,20,30,0,10,20,Excel;Tableau;Microstrategy;Power BI;D3;Leaflet;Pandas,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Choropleth Map,Analysts;Engineers;Project Managers;Executives,Moderate;Expert,Weekly,Analysis;Summarization,Consultative,Data quality and availability ,Time allotted to vizualizatuon,More executive interested in analytics ,More of it,How it could be used if engaged ,,,,,male,46 - 55,USA or Canada,,Private sector
3/1/2017 4:32:48,3,,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis,Embedded in another team,Business Intelligence Tools,,,25,5,0,,10,Excel;Tableau,I'm able to choose my own tools.,Dashboard;Email,Line Chart;Bar Chart,Analysts;Executives,Moderate,Weekly,Analysis,Collaborative,,,,,,,,,More,male,26 - 35,,,Public sector
3/1/2017 5:05:57,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Student,,,,,,20,5,10,5,15,ggplot;Other R;QGIS;Other GIS;GRASS,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Choropleth Map;Raster Map,Scientists,Moderate,Monthly,Analysis;Summarization;Learning;Research,Collaborative,,,,,,,,,More,,,,,Not-for-profit
3/1/2017 6:02:04,5,Technical School,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Assoc. Director Publishing,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Both,Business Intelligence Tools;General charting libraries;Modeling,No,Design;Research,20,0,0,75,5,Illustrator;Excel;Tableau;Power BI;D3;Mapbox;ggplot;Other R;AnyChart,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map;Flow Diagram,General Public;Analysts;Executives,Intro;Moderate;Expert,Daily,Analysis;Learning;Research,Collaborative,Rapid change in technologies makes it hard to keep up. ,Learning to us the tools. ,More time,Increase sophistication. ,How difficult and time consuming it is. ,Suddenly be an expert in D3,A recommended roadmap to learn technologies. ,,Much more,male,46 - 55,USA or Canada,,Not-for-profit
3/1/2017 6:18:52,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Scientist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Marketing,10,0,30,5,55,Plotly;Leaflet;ggplot;Other R;Other Network Visualization Suite,I'm able to choose my own tools.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Network Diagram;Choropleth Map,Analysts;Scientists;Medical Professionals,Moderate,Weekly,Analysis;Summarization;Research,Collaborative,,,,,,,,,More,,,,,Public sector
3/1/2017 7:11:41,1,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Visualization Consultant / Freelancer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Consultant,,,,,,50,0,10,10,10,Tableau;Google Sheets,I'm able to choose my own tools.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Treemap;Choropleth Map;Heatmap,General Public;Analysts;Product Managers;Executives,Moderate,Weekly,Entertainment;Analysis;Summarization;Learning,Consultative,Everything related to preparing the data,It often implies doing strategic consulting- especially when I work for business and marketing analysts- right now a significant part of my clients. ,I'd love to work only for research / government / not profit- because I assume the challenges are more interesting and diverse than with private companies,Clic a button on Tableau and convert to responsive and efficient code for the web,People hardly get that numbers are just the start. I work to make things more understandable- but you need to act on the results in order to change things. ,Sooner or later you need to code. ,Case studies. I am especially interested in understanding the impact that data visualization had on a specific case. What changed after people used your data visualization? Did you inspire them to do something different?,,More,male,36 - 45,Europe,,Private sector
3/1/2017 7:25:41,8,Other,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Member of Team Interactive,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Exploration;Storytelling,Separate data visualization team,Business Intelligence Tools;Completely custom,No,Design;Research;Editorial Office,60,0,0,60,30,Illustrator;Tableau;D3;Mapbox;WebGL;Other Javascript;Other Python;QGIS,I'm able to choose my own tools.,Scrollytelling;Static Web Page,Line Chart;Bar Chart;Infographics;Choropleth Map;Vector Map,General Public,Intro;Moderate,Hourly,Entertainment;Learning;News,,Not enough resources,Not enough resources,More resources,Split it up to more resources,It takes time to make them good,More resources,,,Same,male,26 - 35,Europe,white,
3/1/2017 8:15:35,3,PhD,Mostly Self-Taught,Intended to work in data visualization,No,Senior Software Developer,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,Completely custom,No,Design;Engineering,30,5,30,15,0,D3;Angular,I'm able to choose my own tools.,Static Web Page,Pie Chart;Dendrogram;Network Diagram,Scientists;Medical Professionals,Moderate;Expert,Daily,Analysis;Research,Collaborative,Not having enough time to add more tests or solve technical debt (Angular 1.X vs Angular 2 etc),I make web visualisation as reusable components and then used in a web application. My biggest frustration is to correctly balance the dependencies and decide what functionality goes in the component and what goes in the host web application.,Have extra time (or extra hands) to solve our technical debt,I'd like to have a better eye for designing,They find a cool visualisation in some random place in internet and tell you that it would be cool to have that in our site- without really thinking about the implications (our data may not fit- the data scale may not fit- etc). It often happens that they see an static infographic design and think that it is possible to create a full web component that can create the same visualisation on any data you put there.,Having a designer in the team,,,More,male,36 - 45,Europe,white,Public sector
3/1/2017 8:22:27,5,Masters,Mostly from School,Intended to work in data visualization,No,Visualization Researcher,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Completely custom,No,Research,50,10,20,10,2,Tableau;D3;WebGL;Gephi,I'm able to choose my own tools.,Static Web Page,Line Chart;Bar Chart;Infographics;Treemap;Dendrogram;Network Diagram;Choropleth Map;Flow Diagram;3D Chart;VR/AR Charting,General Public;Analysts;Scientists,Moderate;Expert,Hourly,Entertainment;Analysis;Learning;Research,Collaborative,People thinking of visualization as decoration,design = decoration,,,design = decoration .....,,,,Same,male,26 - 35,Europe,,Academic
3/1/2017 8:25:11,3,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,Yes,Graduate Research Assistant ,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Student,,,,,,20,,,20,50,Excel;QGIS;Other GIS;Gephi;Cytoscape,I'm able to choose my own tools.,Embedded in a tool;Presentations,Network Diagram;Raster Map,Academics,Intro;Moderate,Yearly,Analysis;Learning;Research,Consultative,,,,,,,,,Same,female,,USA or Canada,,Not-for-profit
3/1/2017 8:26:38,10,Technical School,Mostly Self-Taught,,No,,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Marketing;Exploration,Embedded in another team,Business Intelligence Tools,Yes,Engineering;Marketing;Research;IT,30,10,20,20,20,Excel;Qlik;D3;Mapbox;Highcharts;Other Javascript;Other GIS,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram;Flow Diagram,Analysts;Engineers;Product Managers;Project Managers;Executives,Moderate,Daily,Analysis;Research,Collaborative,,,,,,,,,Much more,male,26 - 35,Europe,,Public sector
3/1/2017 8:26:55,6,Other,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Both,Business Intelligence Tools,No,IT;Finance,80,80,25,50,80,Excel;Power BI;Other BI,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Documents;Presentations,Line Chart;Bar Chart;Pie Chart,Product Managers;Project Managers;Executives,Intro,Weekly,Summarization,Subordinate,People don't care,People don't understand ,More power to influence ,,Complexity ,,,,Much more,male,26 - 35,Europe,white,Private sector
3/1/2017 10:27:39,1,Bachelors,Mostly Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,Data Analyst,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Student,,,,,,30,10,30,20,50,Illustrator;Excel;Tableau,I'm able to choose my own tools.,Dashboard,Line Chart;Bar Chart;Infographics,General Public,Intro,Weekly,Analysis;Summarization;Learning,Collaborative,too many tools out there,incomplete data sets,deciding what the valuable metrics are,improve sentiment analysis,it can produce more questions than it answers and that's good too,more playful work,how much working with industry experts is necessary to guide how you interpret- analyze and present the data,,Much more,female,26 - 35,USA or Canada,hispanic,
3/1/2017 10:47:02,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Assistant Professor,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,,No,,5,10,40,10,10,Excel;ggplot,I'm able to choose my own tools.,Documents;Presentations;Email,Line Chart;Bar Chart,Analysts;Scientists;Medical Professionals,Intro,Weekly,Analysis;Summarization;Learning;Research,Collaborative,,,,,,,,,More,female,36 - 45,USA or Canada,white,Public sector
3/1/2017 10:48:13,5,PhD,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Both,ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Engineering;Research,25,20,50,5,0,Illustrator;D3;Processing;Leaflet;WebGL;Highcharts;ggplot;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Presentations;Email,Line Chart;Bar Chart;Treemap;Network Diagram;Choropleth Map,Analysts;Engineers;Scientists;Executives,Moderate,Daily,Analysis;Summarization;Research,Collaborative,,,,,,,,,Same,male,26 - 35,USA or Canada,,Private sector
3/1/2017 10:48:39,7,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Director of Facilities,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools,No,Design;IT,5,5,0,5,5,Illustrator;Excel;Tableau,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart,General Public;Project Managers;Executives,Intro,Monthly,Entertainment;Analysis;Learning,Consultative,time available for data work,misuse of data visualization by other colleagues,more time available for data work,better- more efficient tools,don't realize or acknowledge the importance of communicating clearly and effectively,more time,,,More,male,36 - 45,USA or Canada,white,Not-for-profit
3/1/2017 10:51:21,7,Other,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Product Director,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Marketing;Product,Both,Business Intelligence Tools;General charting libraries;Completely custom,Yes,Design;Engineering;Marketing,50,15,15,20,0,Excel;Tableau;D3;Highcharts;React;Angular,I'm able to choose my own tools.,Static Web Page,Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map;Raster Map;3D Chart,General Public,Moderate,Hourly,Entertainment;Analysis;Learning;Research,Consultative,i work on a small team so it is balancing priorities and managing people,there is never a perfect solution and balancing compromises is challening,have a dedicated designer who specialized in data visualization,have more resources and time to test the designs with users,many think more is more- and tend to over complicate pages or leave out context. Our goal is to have the right amount of data and context.,,,,More,female,26 - 35,USA or Canada,multi,Private sector
3/1/2017 10:52:48,1,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Analyst,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Separate data visualization team,ggplot2/Pandas Charts,No,,10,40,5,5,40,Tableau;ggplot;Pandas;Other Python,I'm able to choose my own tools.,Dashboard;Documents,Line Chart;Bar Chart;Network Diagram;Flow Diagram,Product Managers,Expert,Weekly,Analysis;Summarization;Learning;Research,Consultative,,Data cleaning and pre processing,,,,,,,Much more,male,25 or younger,USA or Canada,asian,Private sector
3/1/2017 10:54:52,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Both,General charting libraries;Completely custom,No,Design;Research,,,,,,Excel;D3;Other Javascript;Other R;Other Python;Gephi,I'm able to choose my own tools.,Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Dendrogram;Network Diagram,Engineers;Product Managers;Project Managers,Moderate,Yearly,Summarization;Learning,Collaborative,,,,,,,,,More,,,,,
3/1/2017 10:56:03,8,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Director of Advertising,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing,Embedded in another team,Business Intelligence Tools;Excel;Reporting Software,No,Marketing,5,15,0,,10,Excel;Other BI,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Dendrogram;Choropleth Map;Flow Diagram,Analysts;Executives,Intro,Monthly,Analysis;Summarization;Learning,Consultative,Not enough understanding of the work that goes into getting data for analysis,data engineering and data prep,more resources to handle data engineering and data prep,more time to do it,how much goes into just getting the information into one place,resources for data engineering/data prep,best tools to collect/prep/unify data from multiple sources,,Much more,male,26 - 35,USA or Canada,white,Private sector
3/1/2017 10:58:33,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Manager Digital Marketing Analytics,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts;Completely custom;Excel,No,Marketing,10,0,25,0,15,Excel;Leaflet;ggplot;Other R,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics,Analysts;Product Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning,Consultative,Doing unnecessary work,Getting buy-in,Larger team & focus on data,Adding tools such as Tableu,They think they are experts,,,,More,male,26 - 35,USA or Canada,white,Private sector
3/1/2017 10:58:43,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Evaluation Specialist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Communication,Embedded in another team,Completely custom,No,Research,10,0,0,10,40,Illustrator;Excel;D3;ggplot;QGIS;Other Network Visualization Suite,I'm able to choose my own tools.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Infographics,General Public;Executives,Moderate,Monthly,Analysis;Summarization;Learning,Collaborative,,,,,,,,,More,male,26 - 35,Latin America,white,Not-for-profit
3/1/2017 11:01:18,8,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Evaluation & Planning Officer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Communication;Exploration,Embedded in another team,Excel,No,Planning,1,1,1,1,7.5,Excel,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Flow Diagram,General Public;Project Managers;Executives;Board members,Intro,Quarterly,Analysis;Summarization,Subordinate,Access to relevant data,Lack of time,More financial resources to do job,More time devoted to doing data viz,The time required to do the work ,Freedom to expand use of data viz,,,Much more,male,46 - 55,USA or Canada,white,Public sector
3/1/2017 11:06:17,10,PhD,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Value Measurement Analyst,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Design;Research,70,10,20,20,20,Excel;ggplot;Other R,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Infographics;Treemap;Choropleth Map,Analysts;Scientists;Medical Professionals;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Collaborative,Money,Time,,Learn more tools,Consuming product not at their level,,,,Much more,male,56+,USA or Canada,white,Not-for-profit
3/1/2017 11:10:53,0,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Designer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Product,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,Yes,Design;Developers,30,0,0,30,5,Illustrator;Excel;Tableau;D3,I'm able to choose my own tools.,Dashboard,Line Chart;Bar Chart,General Public;Analysts,Intro;Expert,Yearly,Analysis;Summarization;Research,Collaborative,,,,,They get more than me :-),More fun and non-profit projects or startaps.,Didn't get the idea of the question,,More,male,26 - 35,Europe,white,
3/1/2017 11:13:34,9,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Academic,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Both,Completely custom,No,Design;Engineering,,,,,,Illustrator;Excel;D3;Processing;Gephi,I'm able to choose my own tools.,Dynamic web page,,General Public;Scientists,Moderate,,Entertainment;Analysis;Research,Collaborative,,,,,,,,,More,female,26 - 35,Latin America,,Academic
3/1/2017 11:15:29,4,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Associate Director Custom Research,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Marketing,Embedded in another team,Business Intelligence Tools;General charting libraries,No,Marketing;Research,5,,,,,Excel;Tableau,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Documents,Line Chart;Bar Chart;Pie Chart;Infographics,Analysts,Intro,Weekly,Analysis;Summarization;Learning;Research,Collaborative,,,,,,More resources,,,More,female,36 - 45,USA or Canada,white,Not-for-profit
3/1/2017 11:21:44,4,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Marketing,Embedded in another team,Business Intelligence Tools,No,Research,20,0,30,10,40,Tableau;ggplot;Other R,I'm able to choose my own tools.,Dashboard;Documents,Line Chart;Bar Chart;Choropleth Map,General Public;Analysts;Executives;Faculty,Moderate,Weekly,Analysis;Summarization;Learning;Research,Collaborative,,,,,The data complexity that underlies it,,,,Same,male,36 - 45,USA or Canada,white,Public sector
3/1/2017 11:22:20,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Statistician,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Research,5,10,75,0,2,Illustrator;Excel;ggplot;Other R;ArcGIS,I'm able to choose my own tools.,Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart,Analysts,Expert,Weekly,Analysis;Summarization;Learning;Research,Consultative,,Not enough interest in new- groundbreaking tools,,,,,,,More,female,26 - 35,USA or Canada,white,Public sector
3/1/2017 11:23:05,4,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,ggplot2/Pandas Charts,No,Marketing;data science,20,,80,,,Excel;ggplot;Other R;Pandas;Other Python,I'm able to choose my own tools.,Scrollytelling;Documents;Presentations;slack;trello,Line Chart;Bar Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map;square pie chart,Product Managers;Project Managers;Executives,Moderate,Monthly,Analysis;Summarization;Learning;Research,Consultative,,,,,,,,,Much more,female,26 - 35,USA or Canada,white,Private sector
3/1/2017 11:25:17,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Consultant ,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Consultant,,,,,,50,20,0,15,15,Excel;Tableau;Power BI,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Treemap;Choropleth Map,Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Monthly,Analysis;Summarization;Learning,Consultative,,,,,,,,,More,male,46 - 55,USA or Canada,white,Private sector
3/1/2017 11:27:39,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Integrator,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,Don't Know,Design;Research,5,5,10,1,10,Excel;Tableau;Other BI;ggplot;Java,I'm able to choose my own tools.,Static Web Page;Documents;Email,Line Chart;Bar Chart;Flow Diagram,Analysts;Engineers;Product Managers,Moderate,Weekly,Analysis;Summarization;Research,Collaborative,Data Quality,Data Quality,Data Quality,Increased Automation/Productization of DV work.,That DV can speed understanding of relationships and show issues stacks of numbers hide.,,,,Much more,male,36 - 45,USA or Canada,white,Private sector
3/1/2017 11:28:55,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Director of Innovation Associate Professor,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Marketing;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Engineering;Research;IT,40,,,50,40,Illustrator;Excel;Tableau;Mapbox;ArcGIS,I'm able to choose my own tools.,Dashboard;Scrollytelling;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Flow Diagram,General Public;Analysts;Executives,Moderate,Monthly,Analysis;Research,Collaborative,Broadening peer and administration understanding of visuals.,Time and quality/supply of data,Focus on specific growth,,Visual literacy and appreciation,Broader focus on value of visual information,Less alphabet jargon to the uninitiated,,More,male,56+,USA or Canada,white,Public sector
3/1/2017 11:29:56,2,Masters,Mostly Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,CEO of communication and data visualization,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Other,Analysis;Summary/Overview;Communication;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts,No,Design;Marketing;Research,20,10,10,20,40,Illustrator;Excel;Tableau;ggplot;Other R;Gephi,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Flow Diagram,General Public;Scientists,Intro;Moderate,Weekly,Entertainment;Analysis;Summarization;Learning;Research,Collaborative,,,,,,,,,Much more,male,36 - 45,Europe,white,Public sector
3/1/2017 11:37:16,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Completely custom,No,Design;Engineering;Research,90,,0,30,10,Illustrator;Excel;D3;Processing;WebGL;React;Vega,,,Line Chart;Bar Chart,General Public;Analysts;Executives,Expert,Weekly,Entertainment;Analysis;Summarization,Collaborative,,getting data in shape for design and visualization,,more time for exploratory visualization,value of exploring variety,,visions for data visualization tools- processes- and presentation in 10 years,,Much more,male,46 - 55,USA or Canada,,Public sector
3/1/2017 11:41:59,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Researcher,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools,Yes,Design;Engineering;Research,5,15,5,10,10,Excel,We have a set list of tools we're expected to use for data visualization.,Documents;Presentations,Line Chart;Bar Chart;Flow Diagram;scatterplot,Analysts;Engineers;Scientists;Project Managers;Executives,Moderate,Monthly,Analysis;Summarization;Learning;Research,Subordinate,,,,,,,More tips and tricks for beginners.,,Same,female,26 - 35,USA or Canada,white,Private sector
3/1/2017 11:49:05,5,Bachelors,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,GIS Analyst,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Completely custom,No,IT,5,25,5,10,5,Excel;D3;Leaflet;Mapbox;Java;ArcGIS;Other GIS,I'm able to choose my own tools.,Embedded in a tool;Static Web Page,Line Chart;Bar Chart;Pie Chart;Network Diagram;Choropleth Map;Raster Map;Flow Diagram;3D Chart,General Public;Executives,Intro;Expert,Hourly,Analysis;Learning;Research,Subordinate,Pay- and Managment,Time crunch because they get the data to you right before the final product is due leaving no time for my work. ,More open data,More Open Data,That if they tried they could create great visuals and not the garbage that i see all over the place. ,,,,More,male,26 - 35,USA or Canada,white,Public sector
3/1/2017 12:05:06,0,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Graduate Data Visualisation Analyst,Data Visualization Role has same compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Marketing;Exploration,Separate data visualization team,Business Intelligence Tools;Completely custom,Don't Know,IT,50,0,20,20,10,Excel;Tableau;Other BI;Other R;Angular,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap,Analysts;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Daily,Analysis;Summarization;Research,Collaborative,waiting on queries/extracts,need many tools to fulfill needs,permissions would be simplified,introduce a style guide,that a good dashboard doesn't just happen,more customisable tools,how to allow complex questions through a simple interface,,Much more,male,25 or younger,Europe,white,Private sector
3/1/2017 12:06:10,1,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Systems Analyst,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Completely custom,No,Design;Engineering;Research,2,5,2,40,2,Excel;ggplot;Other R,,powerpoint,Line Chart;Bar Chart;Pie Chart;Infographics;Flow Diagram,Engineers;Medical Professionals;Product Managers;Project Managers,Intro,Quarterly,Analysis;Learning,Consultative,,,,,,,,,Same,male,36 - 45,Europe,white,Private sector
3/1/2017 12:06:45,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Contractor,,,,,,,,,,,Illustrator;Excel;D3;Processing;Highcharts;Other Javascript;Angular;Other MVC,I'm able to choose my own tools.,Embedded in a tool;Dashboard,Bar Chart;Infographics;Flow Diagram,General Public;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Monthly,Entertainment;Analysis;Summarization,Collaborative,,,,,,,,,More,,,,,
3/1/2017 12:15:05,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools;Excel,No,Marketing;IT,10,,,5,5,Excel;Tableau,We have a set list of tools we're expected to use for data visualization.,Documents;Presentations;Email,Line Chart;Bar Chart;Network Diagram;Flow Diagram,General Public;Analysts;Product Managers;Project Managers;Executives,Intro;Moderate,Weekly,Analysis;Summarization;Learning,Consultative,,,,,,,,,More,male,36 - 45,USA or Canada,white,Private sector
3/1/2017 12:19:22,4,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Research,5,15,5,2,10,Illustrator;D3;ggplot;Other R;Other Python;Java;ArcGIS,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Choropleth Map;Raster Map;Flow Diagram,General Public;Scientists,Moderate,Weekly,,Collaborative,,,,,,,,,Much more,male,36 - 45,Europe,,Public sector
3/1/2017 12:22:40,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Supply Chain Engineer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Communication;Exploration,Both,Business Intelligence Tools,No,Design;Engineering,25,25,10,20,20,Excel;Tableau;Qlik,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Choropleth Map;Raster Map,Analysts;Product Managers;Executives,Intro;Moderate;Expert,Daily,Analysis;Learning;Research,Collaborative,,,,,,,,,More,male,26 - 35,USA or Canada,white,Private sector
3/1/2017 12:23:30,6,Other,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Consultant,,,,,,10,0,0,60,5,Illustrator;Excel;Tableau,I'm able to choose my own tools.,Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Dendrogram;Network Diagram;Choropleth Map;Raster Map;Flow Diagram,General Public;Analysts;Product Managers;Project Managers;Executives,Intro;Moderate,Quarterly,Entertainment;Analysis;Summarization;Learning;Research,Consultative,Clients!,When the client wants to lie or put inaccuracies.,,Make more dataviz.,I'm self-employed.,Clients accepting that I'm the professional in the equation.,,,More,male,36 - 45,Europe,white,Mixed
3/1/2017 12:23:37,4,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Director,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Consultant,,,,,,20,10,0,5,5,Excel;Tableau;Other Javascript,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Flow Diagram,Product Managers;Executives,Moderate,Quarterly,Analysis;Summarization;Learning;Research,Consultative,Time,Lack of own expertise ,More money ,More creative,,More learning opportunities ,Anything practical ,,More,male,,Europe,white,Private sector
3/1/2017 12:25:20,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Database Specialist,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools;General charting libraries,No,Design;Engineering;Research,20,0,40,20,20,Excel;Power BI;Plotly;Processing;Other Python;Other GIS,I'm able to choose my own tools.,Dashboard;Documents;Email,Line Chart;Bar Chart;Infographics;Choropleth Map;3D GIS,Analysts;Engineers;Scientists;Project Managers,Moderate,Weekly,Analysis;Summarization,Collaborative,getting enough billable work,clients not willing to pay for visualizations that work,,,,,,,Much more,male,46 - 55,USA or Canada,white,Public sector
3/1/2017 12:31:05,3,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,user experience designer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Completely custom,Don't Know,Design;Research,20,,,,0,Illustrator;Excel;D3;Other Javascript;ggplot;Other R;Other Python;Angular;Other Network Visualization Suite,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram,Analysts;Engineers;Scientists;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,,Analysis;Summarization;Learning;Research,Consultative,,,,,,,,,More,female,,,,Private sector
3/1/2017 12:32:35,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,GIS Technician,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Communication;Marketing;Exploration,Embedded in another team,Completely custom,No,IT,0,20,0,40,,Illustrator;D3;Leaflet;Mapbox;ArcGIS,I'm able to choose my own tools.,Dashboard;Scrollytelling,Bar Chart;Infographics,General Public;Executives;Staff,Moderate,,Summarization;Research,,Too much work- too much bad data,Too many choices- very little time to implement since it is a small part of my job,,,,,,,More,male,36 - 45,USA or Canada,white,Public sector
3/1/2017 12:38:26,1,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Statistician,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Design;Research,30,0,20,10,40,Excel;Plotly;D3;Leaflet;ggplot;Other R;ArcGIS,We have a set list of tools we're expected to use for data visualization.,Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Choropleth Map,Analysts;Project Managers;Executives,Intro,Quarterly,Analysis;Summarization;Learning;Research,Subordinate,,Limited tools.,,Access to more visualization tools.,How much better it is compared than tables for communication.,Being able to use any software I want.,,,Much more,male,26 - 35,USA or Canada,hispanic,Public sector
3/1/2017 12:42:45,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Lead Developer,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;General charting libraries;Completely custom,No,Design;Engineering;IT,10,25,10,10,10,Excel;Tableau;Microstrategy;D3;Other Javascript;Java;Other MVC;Gephi,I'm able to choose my own tools.,Dashboard;Static Web Page,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram;Flow Diagram,General Public;Analysts;Project Managers;Executives,Intro,Hourly,Summarization;Learning;Research,Collaborative,,,,,,,,,More,male,36 - 45,Europe,hispanic,Public sector
3/1/2017 12:45:51,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Systems Architect ,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Engineering;Research;IT,30,10,40,5,0,Illustrator;Excel;Tableau;Plotly;Other BI;Processing;WebGL;Other Javascript;ggplot;Other R;VisIT;Paraview;Blender,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Network Diagram;Raster Map;Flow Diagram;3D Chart;Volume renderings,Analysts;Engineers;Product Managers;Project Managers;Executives,Moderate;Expert,Daily,Analysis;Summarization;Learning;Research,Consultative,Non experts using data incorrectly ,Tools working together ,Better education for executives ,Better tools,Work is well respected. ,,,,More,male,46 - 55,USA or Canada,white,Public sector
3/1/2017 13:01:32,2,Bachelors,Mostly Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Communication,Both,Business Intelligence Tools;Completely custom,No,Design;IT,10,30,5,10,45,Excel;ggplot;Pandas;Spotfire,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Infographics,Scientists;Executives,Expert,Daily,Analysis;Summarization;Learning,Consultative,,,,,,,,,Much more,male,,USA or Canada,,Private sector
3/1/2017 13:04:32,5,Other,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Public Health Medical Doctor,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,ggplot2/Pandas Charts;Completely custom,No,Research,10,10,50,0,20,ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Treemap;Dendrogram;Choropleth Map;Raster Map;Flow Diagram,General Public;Scientists;Medical Professionals,Intro,Quarterly,Analysis;Summarization;Research,Collaborative,,,,,,,,,Same,male,26 - 35,Europe,white,Public sector
3/1/2017 13:05:03,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Researcher,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools;Excel,No,Engineering,5,15,0,0,10,Excel;Power BI,We have a set list of tools we're expected to use for data visualization.,Documents;Presentations,Line Chart;Bar Chart;Pie Chart,Engineers;Product Managers,Intro,Weekly,Analysis;Summarization;Learning,Consultative,Slow organisation,,,More automated collection of data,,,,,More,male,36 - 45,Europe,white,Not-for-profit
3/1/2017 13:27:29,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Special Data Office & Reporting,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries,No,IT;Financial;Strategy,10,20,10,5,20,Excel;Tableau;Highcharts;Pandas;TIBCO Spotfire,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Scrollytelling;Documents;Presentations;Email,Line Chart;Bar Chart;Treemap;Scatter,Analysts;Product Managers;Project Managers,Intro,Weekly,Analysis;Summarization;Decision Making,Consultative,,,,,,,,,Same,male,26 - 35,Europe,,Private sector
3/1/2017 13:28:12,4,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Project Portfolio Analyst ,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis,Embedded in another team,Business Intelligence Tools,No,Research;IT,,,,,,Excel;ggplot,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Pie Chart,Project Managers;Executives,Moderate,Weekly,Analysis;Summarization,Collaborative,,,,,,,,,Much more,male,36 - 45,Europe,,Public sector
3/1/2017 13:29:40,4,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Scientist,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Analysis ,5,5,10,0,5,Excel;D3;Leaflet;Pandas,I'm able to choose my own tools.,Static Web Page;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Dendrogram;Choropleth Map;Flow Diagram,General Public;Analysts;Product Managers;Project Managers,Moderate,,Analysis;Summarization,Subordinate,,,,,,,,,More,male,26 - 35,Europe,white,Public sector
3/1/2017 13:38:12,7,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Design;Research,,,,,,ggplot;Other R;Pandas;Other Python,I'm able to choose my own tools.,Scrollytelling;Documents;Presentations;Email,Line Chart;Bar Chart;Dendrogram;Network Diagram;Choropleth Map;Raster Map;3D Chart,Analysts;Executives,Moderate,Monthly,Analysis,Collaborative,,,,,,,,,Same,male,26 - 35,USA or Canada,white,Public sector
3/1/2017 13:46:16,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Analytics Engineer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Separate data visualization team,Business Intelligence Tools;Completely custom,No,Engineering,40,20,0,0,40,Tableau;D3;Recharts;React,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Treemap,Analysts;Engineers;Executives,Moderate,Weekly,Analysis,Collaborative,,,,,,,,,Less,female,26 - 35,USA or Canada,,Private sector
3/1/2017 13:48:07,8,Other,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Manager of business intelligence ,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration,Separate data visualization team,Business Intelligence Tools;Completely custom,Yes,Design;Engineering;Marketing;Research,50,30,10,5,5,Excel;Tableau;Other BI;D3;Other Javascript;Angular;Gephi,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Network Diagram;Flow Diagram,Analysts;Product Managers;Project Managers;Executives;Front line managers ,Intro;Moderate,Hourly,Analysis;Summarization;Research,Consultative,"Fighting the mentality that ""making charts is easy"" ",Limited tool options and flexibility,No limits on tools and human resources. ,The ability to tackle bigger problems than what we're asked to solve. ,Building the foundation is more important than the bar chart you build on top of it. ,Investment in data vis,How to traverse corporate political landscape as a data engineer/analyst/scientist. ,,Much more,male,26 - 35,USA or Canada,white,Public sector
3/1/2017 13:48:22,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Evaluation and Analysis Manager,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Communication;Marketing,Embedded in another team,Business Intelligence Tools,No,IT,5,0,25,5,10,Excel;Tableau,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Treemap,Analysts;Project Managers;Executives,Moderate,Monthly,Analysis;Summarization;Research,Collaborative,data quality limiting analysis and visualization,getting management comfortable using something other than bar or line chart,increase time for data visualization and storytelling,a little more design oriented,why it's worth the effort,,,,More,male,36 - 45,USA or Canada,white,Not-for-profit
3/1/2017 13:51:43,8,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Vice president of business development,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Communication;Marketing;Exploration,Both,Business Intelligence Tools,No,Design;Marketing;IT,,,,,,Excel;Tableau;Mapbox;ggplot;QGIS;Gephi,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics,Executives,,,Analysis;Learning,Consultative,,,,,,,,,,,,,,
3/1/2017 13:57:41,10,PhD,Mostly Self-Taught,Intended to work in data visualization,Yes,Statistician,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Other,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Completely custom,Yes,N/A. Self-employed,40,0,30,15,15,Illustrator;D3;Other R,I'm able to choose my own tools.,Static Web Page,Line Chart;Bar Chart;Infographics;Choropleth Map;Raster Map,General Public,Moderate,Weekly,Entertainment;Learning,Consultative,data availability and formatting,the time it takes to accomplish small things,collaborate more,make it more mobile ready,,diet dr. pepper soda machine,how data visualization is not magic- but it does require work,,Much more,male,26 - 35,USA or Canada,asian,Mixed
3/1/2017 14:03:42,5,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Both,Completely custom,Yes,Design;Engineering;Research;IT,10,60,30,0,0,D3;Other Python;Vega,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Scrollytelling;Documents;Presentations,Line Chart;Choropleth Map;Raster Map,General Public;Scientists;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Research,Collaborative,Lack of time,Vega debugging,,,,,,,Same,male,26 - 35,Europe,white,Private sector
3/1/2017 14:28:07,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Front-end Engineer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,,General charting libraries;Completely custom,No,Engineering;Marketing,10,0,0,20,10,D3;Processing;WebGL;Highcharts;Other Javascript;Other MVC,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Choropleth Map,General Public;Engineers;Scientists;Product Managers;Project Managers,Intro;Moderate,Monthly,Analysis;Learning;Research,Consultative,estimates and changing requirements,not enough domain knowledge,ability to update time estimates,Data cleanup- although I suppose that would take out 90 of the work,The amount of work dedicated to data cleanup,,,,,male,26 - 35,USA or Canada,asian,Private sector
3/1/2017 14:41:55,3,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Research Associate,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,Don't Know,Research,5,5,50,2,20,Illustrator;Excel;Tableau;Other R;ArcGIS,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Network Diagram;Flow Diagram,General Public,Expert,Quarterly,Analysis;Summarization;Learning;Research,Collaborative,,limited time available,,,the importance of understanding the data,,more transparency on roles- pay- and responsibilities,,Much more,female,26 - 35,USA or Canada,white,Not-for-profit
3/1/2017 14:57:20,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Technical Consultant,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,ggplot2/Pandas Charts;Excel,No,This is not really relevant for my 3 person company.,5,0,0,0,1,Excel;ggplot,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;heat map;scatter plot;boxplot,Analysts;Project Managers,Moderate;Expert,Monthly,Analysis;Summarization;Learning,Consultative,We like to claim that we're having a bigger impact than I think we are.,It's not a big component of most projects- so I don't get to do it enough,I do more project management than I would like.,We have a lot of big datasets that we're not taking full advantage of.,Things are more ambiguous than is convenient for reports and presentations,,,,More,female,26 - 35,USA or Canada,white,Private sector
3/1/2017 15:05:20,0,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Application developer ,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Communication;Exploration,Embedded in another team,Business Intelligence Tools;General charting libraries;Completely custom,No,Research;IT,100,30,5,40,35,Illustrator;Excel;Tableau;Power BI;D3;Processing,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Choropleth Map;Flow Diagram,General Public;Analysts;Scientists,Moderate;Expert,Weekly,Analysis;Learning;Research,Subordinate,I have many bosses and sometimes they don't coordinate and it's difficult to organize work ,The people I work for aren't able to describe well what they need or what they want ,Higher salary ,I would rather not use BI software- I like to develop my own tools from scratch ,,,,,Same,female,36 - 45,Europe,,Public sector
3/1/2017 15:22:04,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Science Fellow,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Engineering,5,40,20,0,15,Plotly;D3;Other Javascript;Pandas;Other Python;React,I'm able to choose my own tools.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Treemap;Network Diagram;Choropleth Map;Flow Diagram,General Public;Analysts;Domain practitioners,Intro;Moderate,Weekly,Analysis;Summarization,Consultative,,,,,,,,,,male,26 - 35,Europe,white,Not-for-profit
3/1/2017 15:55:52,6,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Principal Software Architect ,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration,Both,Business Intelligence Tools;General charting libraries;Completely custom,No,Engineering,30,35,10,15,10,Illustrator;D3;Leaflet;WebGL;Other Javascript;Java;React;Angular,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling,Line Chart;Bar Chart;Treemap;Network Diagram;Flow Diagram,Analysts;Scientists;Executives,Moderate,Daily,Analysis;Summarization;Learning,Consultative,Ability to do more data visualization,Performance with large data,,,Thinking outside the box ,,,,Much more,female,46 - 55,USA or Canada,white,Private sector
3/1/2017 16:18:59,7,,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Other,Analysis;Summary/Overview;Communication;Marketing,Separate data visualization team,Business Intelligence Tools;Completely custom,Yes,Design;Engineering;Marketing;Research;IT,5,10,0,5,0,Excel;Other BI;D3;Highcharts,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Treemap;Dendrogram;Network Diagram;Flow Diagram,Analysts;Scientists;Product Managers;Project Managers;Executives,Intro,Weekly,Analysis;Research,Consultative,,,,,,,,,More,male,46 - 55,Asia,white,Private sector
3/1/2017 17:16:30,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Product Manager,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Engineering;Marketing;Research;IT;product;UX;etc.,10,5,5,5,10,Excel;Tableau;Other BI;Gephi;Inkscape,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Network Diagram;Choropleth Map,General Public;Analysts;Engineers;Scientists;Medical Professionals;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Consultative,,,,,,,,,Much more,,,,,Private sector
3/1/2017 17:23:56,5,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Both,Business Intelligence Tools,No,Research,,,,,,Excel;Tableau;SAS VA,We have a set list of tools we're expected to use for data visualization.,Dashboard;Presentations,Line Chart;Bar Chart;Infographics,General Public;Analysts;Executives,Moderate,Weekly,Analysis;Learning,Consultative,,,,,,,,,More,,,,,Public sector
3/1/2017 17:33:07,5,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,UI Web Developer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Separate data visualization team,Business Intelligence Tools;General charting libraries;Completely custom,No,Engineering;Research;IT,30,10,0,10,0,Illustrator;Excel;D3;Leaflet;Mapbox;Highcharts;Other Javascript;Angular;ArcGIS;QGIS;Other GIS,I'm able to choose my own tools.,Dashboard,Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map,General Public;Analysts;Engineers;Product Managers;Project Managers,Intro;Moderate;Expert,Daily,Analysis;Summarization;Learning;Research,Collaborative,Too busy to keep up with learning new technologies / programming languages,Trying to teach laypeople how to interpret simple graphs,Hire more developers to help me and collaborate with me,Work more closely with the engineers who can effect real changes based on the data,,Hire more people to help me,,,More,male,26 - 35,USA or Canada,white,Public sector
3/1/2017 17:38:41,1,Bachelors,Mostly Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,,Data Visualization Role has same compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Intern,Analysis;Summary/Overview;Communication,Embedded in another team,ggplot2/Pandas Charts;Completely custom,No,data products,,,,,,Plotly;D3;Leaflet;ggplot;Other R;Pandas;QGIS,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations,Line Chart;Bar Chart;Choropleth Map,General Public;Scientists,Intro,Monthly,Analysis;Learning;Research,Consultative,,,,,,,,,Much more,,,,,Public sector
3/1/2017 18:29:02,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Engineering Manager ,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools;General charting libraries,No,Engineering;Research,,,,,,Excel;JMP,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Treemap;Choropleth Map;Flow Diagram,General Public;Analysts;Engineers;Scientists;Executives,Intro;Moderate,Weekly,Analysis;Summarization,Consultative,,,,,,,,,Same,male,36 - 45,USA or Canada,hispanic,Private sector
3/1/2017 18:43:39,2,Bachelors,Mostly Self-Taught,Intended to work in data visualization,Yes,Data Journalist,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Machine Learning;Marketing,Embedded in another team,ggplot2/Pandas Charts;Completely custom,No,Engineering;Marketing,,,,,,D3;Pandas;Other Python,I'm able to choose my own tools.,Scrollytelling;Static Web Page,Line Chart;Bar Chart;Choropleth Map,General Public,Intro;Moderate,Quarterly,Entertainment;Learning,,,,,,,,,,Much more,male,25 or younger,USA or Canada,asian,Private sector
3/1/2017 19:10:49,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Professor of Education,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Teaching;Research,Separate data visualization team,Business Intelligence Tools;General charting libraries;Completely custom,No,Teaching and outreach,20,0,0,,,Leaflet;Highcharts,I'm able to choose my own tools.,Embedded in a tool,Line Chart;Bar Chart;Pie Chart;Choropleth Map;Raster Map,General Public,Intro,Hourly,Learning;Research,Collaborative,,Not enough time ,,,Stories matter as much as data,,,,More,male,46 - 55,USA or Canada,white,Not-for-profit
3/1/2017 19:17:07,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Professor,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Marketing,,Business Intelligence Tools;ggplot2/Pandas Charts,No,Research,,,,,,Excel;Tableau;Processing;ggplot;Other R,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Dendrogram;3D Chart,General Public;Scientists,Expert,,Research,Collaborative,,,,,,,,,More,,,,,
3/1/2017 19:21:01,10,Technical School,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Information Graphics Director,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Communication,Separate data visualization team,Completely custom,No,Design,25,,,50,25,Illustrator;Excel;D3;Leaflet;Other Javascript;ArcGIS;QGIS,I'm able to choose my own tools.,Static Web Page;Documents,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Dendrogram;Network Diagram;Choropleth Map;Raster Map;Flow Diagram;3D Chart,General Public,Moderate,Weekly,Entertainment;Analysis;Learning;Research,Consultative,,,,,,,,,Same,male,36 - 45,USA or Canada,white,Private sector
3/1/2017 20:46:24,8,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Research Scientist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration;Teaching;outreach,,,Don't Know,Research,10,10,10,10,10,Other R,,Embedded in a tool;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Infographics;Dendrogram;Network Diagram;Choropleth Map;Raster Map;Flow Diagram;3D Chart,General Public;Analysts;Scientists,Moderate,Monthly,Analysis;Research,Collaborative,,,,,,,,,Same,male,26 - 35,USA or Canada,multi,Private sector
3/1/2017 21:25:05,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Journalist,Data Visualization Role has higher compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Communication,Both,Completely custom,Yes,Design;Engineering;Research,40,10,20,20,10,Illustrator;D3;Leaflet;Mapbox;WebGL;Other Javascript;ggplot;Other R;Pandas;Other Python;QGIS;Other GIS,I'm able to choose my own tools.,Scrollytelling;Static Web Page,Line Chart;Bar Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map;Raster Map;Flow Diagram;VR/AR Charting,General Public,Intro;Moderate,Weekly,Entertainment;Analysis;Summarization;Learning;Research,Consultative,Deadlines,Making it work for mobile,,More flexible concerning deadlines,Attention to details ,,,,Much more,female,25 or younger,USA or Canada,,Public sector
3/1/2017 23:10:03,5,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Data designer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Separate data visualization team,Business Intelligence Tools;General charting libraries;Completely custom,Yes,Design;my company is a pure data visualization player,30,30,,20,20,Illustrator;Excel;Tableau;D3;Mapbox;WebGL;Highcharts;Other Javascript;Angular;Gephi,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Dendrogram;Network Diagram;Choropleth Map;Flow Diagram;VR/AR Charting,General Public;Analysts;Scientists;Medical Professionals;Project Managers;Executives;media,Moderate,Monthly,Entertainment;Analysis;Summarization;Learning,Collaborative,,,,,,,,,Same,male,36 - 45,Europe,,Private sector
3/1/2017 23:25:06,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools;General charting libraries,No,Research,5,45,30,0,20,Excel;Highcharts,We have a set list of tools we're expected to use for data visualization.,Dashboard;Presentations,Line Chart;Bar Chart;Infographics,Analysts;Executives,Intro;Moderate,Quarterly,Analysis,Subordinate,Poor understanding from leadership,Not enough time,Work for a new company,,Design,,,,Much more,male,36 - 45,Europe,,Private sector
3/1/2017 23:38:26,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Postdoctoral Researcher,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Communication,Embedded in another team,ggplot2/Pandas Charts,No,Research,10,30,20,10,20,Plotly;ggplot;Other R,I'm able to choose my own tools.,Documents;Presentations;Email,Line Chart;Bar Chart;Infographics;heatmap,Scientists,Expert,Weekly,Analysis;Research,Collaborative,Data wrangling,Explaining to other why X is not the ideal way of visualizing the data,More time to explore new things,More time to explore new things,"How long it takes to make the graph ""just"" right.",Having a data viz colleague,Acknowledge and understand the gap between data viz theory and real life pressures to get reports out. ,,Same,male,36 - 45,Europe,,Not-for-profit
3/1/2017 23:50:58,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts;Modeling,No,Engineering;Marketing,10,30,40,0,10,Excel;Plotly;D3;Leaflet;Highcharts;Pandas;Other Python;QGIS,I'm able to choose my own tools.,Documents;Presentations;Email,Line Chart;Bar Chart;Dendrogram;Choropleth Map;Raster Map;3D Chart,Analysts;Engineers;Scientists;Project Managers;Executives,Intro,Daily,Analysis;Summarization;Research,Consultative,,,,,,,,,More,,,,,Private sector
3/1/2017 23:59:03,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Assistant Professor,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration;Entertainment;Education,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Engineering;Marketing;Research;Education,5,10,50,0,10,Excel;ggplot;Other R;SAS;SPSS;Powerpoint,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Flow Diagram;3D Chart;Scatter plot;box and whisker;hybrids s,General Public;Scientists;Medical Professionals,Intro;Moderate;Expert,Monthly,Analysis;Summarization;Learning;Research,Consultative,People trying to rebrand what I do,Time consuming,More research,More streamlined,How long it takes,,Tutorials,,Same,male,36 - 45,Europe,,Public sector
3/2/2017 0:18:14,7,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Consultant,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Contractor,,,,,,10,2,0,2,8,Excel;D3;Other Javascript;Angular;QGIS;Gephi,I'm able to choose my own tools.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Infographics;Network Diagram,General Public;Project Managers,Intro;Moderate;Expert,Daily,Analysis,Consultative,,,,,,,,,More,male,36 - 45,Europe,,Private sector
3/2/2017 0:27:23,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Strategic Analyst ,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Both,Business Intelligence Tools,Don't Know,Research;IT,10,20,0,5,10,Excel;Power BI;Qlik;D3;Datazen ,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;3D Chart,Analysts;Product Managers;Executives,Intro,Daily,Analysis;Summarization,Collaborative,Time to do it,,,,,,,,More,male,36 - 45,Oceania,white,Public sector
3/2/2017 0:42:36,2,Masters,Mostly Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,Financial Controller,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Embedded in another team,Business Intelligence Tools,Yes,Finance,10,40,0,10,40,Excel;Power BI;ggplot;Pandas;Other Python,I'm able to choose my own tools.,Dashboard;Presentations,Line Chart;Bar Chart;Pie Chart,Executives,Intro,Weekly,Analysis;Summarization,Collaborative,Reluctance of the other people in the organization to change workflows,Quality of data,Increasing level of data literacy across people,,resistance to change,Unified data policy,On evolution of data-conscious organization,,More,male,36 - 45,Europe,white,Private sector
3/2/2017 1:07:16,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Administrative Assistant to the Finance Director,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Separate data visualization team,Business Intelligence Tools,No,Finance,55,0,0,5,40,Excel;Power BI;GIMP,I'm able to choose my own tools.,Dashboard;Documents;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map,General Public;Analysts;Executives,Expert,Weekly,Analysis;Summarization;Learning;Research,Consultative,Poor enterprise data management structures,My lack of expert statistical and programming skills,I would work as a part of a data team ,Spend more time better modelling our data,How long it takes to cleanse and model the data,Creation of a data team,Clear examples of data management structures AND HOW THEY RELATE TO DATA VISUALISATION; simple- consistent paradigms and examples of general good practice.,,Same,male,26 - 35,Europe,white,Not-for-profit
3/2/2017 2:24:44,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Customer Insights Analyst,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools,No,Reporting & Analytics,10,1,2,5,50,Excel;Power BI,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Flow Diagram,Executives,Moderate,Monthly,Summarization,Collaborative,,,,,,,,,Much more,female,36 - 45,Oceania,white,Public sector
3/2/2017 2:29:50,3,Technical School,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Engineer,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Embedded in another team,Business Intelligence Tools;Completely custom,No,Marketing;IT,5,55,25,5,10,Illustrator;Excel;Other BI;D3;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Infographics,Product Managers;Project Managers;Executives,Expert,Daily,Analysis;Summarization,Consultative,Lack of recognition for the importance of understanding data - accusations that the job is not 'value-added'.,The number of managers that ignore the data because their gut has gotten them this far.,Managers that are better educated on the importance of data in a modern business.,,How much effort goes into making something that is easy to understand: just because it's presented in a simple way does not mean it was simple to produce.,,More guidance on communicating with non-technical consumers of the data visualisations.,,Same,male,,Europe,white,Private sector
3/2/2017 2:46:37,10,PhD,Mostly Self-Taught,Intended to work in data visualization,Yes,Infographic / Data Visualization Designer and Editor,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Communication,Separate data visualization team,Business Intelligence Tools;Graphics,No,Design;IT,20,0,10,50,20,Illustrator;Mapbox;Highcharts;Other Javascript;Java;Other GIS,We have a set list of tools we're expected to use for data visualization.,Scrollytelling;Static Web Page;Printed version,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Dendrogram;Network Diagram;Flow Diagram,General Public;I work in a newspaper,Intro,Daily,Entertainment;Summarization;news,Subordinate,Scarce interaction with stakeholders, Data and visualizations are seen as a decoration- not as an information,I'd need more time to research/design/code,I'd need more time to improve my proficiency with tools,Data are valuable information- design is the key to show them- not to fill the holes they leave in their product (i.e. newspaper and news site pages),More time would make my work more affordable,Interest in public information,,More,male,36 - 45,Europe,white,Private sector
3/2/2017 3:14:55,7,Bachelors,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Graphic Designer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Education,Both,Business Intelligence Tools;General charting libraries,No,Design;Marketing;IT,9,0,0,90,1,Illustrator;Excel,I'm able to choose my own tools.,Static Web Page;Documents;Presentations;Email;social media,Line Chart;Bar Chart;Pie Chart;Infographics,General Public;financial professionals,Moderate,Weekly,Analysis;Summarization;Learning;Research,Collaborative,Not being able to get new technology readily.,Not being able to play with different technologies.,,Make it more interactive and being able to use the work across multiple platforms.,Data visualization (especially infographics) takes understanding and analysis on the designer's part to make it communicate effectively.,,,,More,female,36 - 45,USA or Canada,asian,Private sector
3/2/2017 3:48:05,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts,No,Engineering;Marketing;Research;IT,,,,,,Excel;Power BI;Qlik;Plotly;Other BI;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Network Diagram;Choropleth Map;Flow Diagram,Analysts;Engineers;Scientists;Executives,Intro;Moderate,Daily,Analysis;Summarization;Learning,Consultative,,,,,,,,,Same,,,,,Private sector
3/2/2017 3:49:13,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,UX consultant,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Consultant,,,,,,5,0,0,95,0,Excel;Processing;Other Javascript,I'm able to choose my own tools.,Embedded in a tool;Documents;Presentations,Bar Chart;Pie Chart;Raster Map;Flow Diagram,General Public;Analysts;Product Managers;Executives,Intro,Quarterly,Analysis;Research,Consultative,conflicting brief,Individuals have very particular preferences for how information is presented,more information upfront,I'm not great with illustrator,,,Engagement metrics for different presentation strategies,,More,female,36 - 45,Europe,white,Mixed
3/2/2017 3:53:12,3,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Analyst,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,IT,10,10,40,0,40,Excel;Power BI;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Infographics;Treemap;Network Diagram;Choropleth Map;Flow Diagram,Product Managers;Project Managers;Executives,Intro;Moderate,Daily,Analysis;Summarization,Consultative,Lack of dependancy on data by end-users,Data literacy of end-users,,,,,,,More,male,25 or younger,Europe,white,Not-for-profit
3/2/2017 4:02:18,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Data Manager,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,ggplot2/Pandas Charts;Completely custom;Graphics;Modeling,No,Design;Research;IT;P & O,30,15,25,,30,Excel;ggplot;Other R;Pandas;Other Python;SAS;SPSS;Inkscape;Gimp,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map;Flow Diagram;Densityplots;coutourplots;combined plots,General Public;Analysts;Scientists;Medical Professionals;Project Managers,Moderate;Expert,Quarterly,Analysis;Summarization;Research,Collaborative,Time constraints,,Collaboration with external (data) partners,Taking more time to develop generic solutions,The time it takes to get data in the correct format + trial/error nature of data visualization,Different time constraints,Innovative ideas on complex statistical graphs,,More,male,36 - 45,Europe,,Public sector
3/2/2017 4:02:57,0,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Research and Data Manager,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Contractor,,,,,,30,10,10,10,10,Illustrator;Tableau;ArcGIS,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Flow Diagram,General Public;Executives;Nonprofit staff,Intro,Weekly,Analysis;Learning,Consultative,,,,,Don't understand the amount of data preparation required,,,,Same,female,26 - 35,USA or Canada,white,Not-for-profit
3/2/2017 4:05:05,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis,Embedded in another team,ggplot2/Pandas Charts;Completely custom,No,Engineering,5,0,0,0,,Excel;ggplot;Other R,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Infographics;Treemap;Choropleth Map;Flow Diagram;3D Chart,Analysts;Engineers;Regulators,Expert,Weekly,Entertainment;Analysis;Summarization,Collaborative,Inability to do in-depth analysis due to lack of time,Access to tools,,,The inherent value of effective presentations,,,,More,male,56+,USA or Canada,white,Private sector
3/2/2017 5:09:47,3,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Bioinformatician,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,ggplot2/Pandas Charts;bokeh;seaborn,No,Research;IT,20,50,30,,,Plotly;Other Javascript;ggplot;Other R;Pandas;Other Python,I'm able to choose my own tools.,Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Dendrogram;Specific plots for the research area.,Scientists;Project Managers,Expert,Weekly,Summarization;Learning;Research,Collaborative,Pressing deadlines- waguely defined aims.,Poor documentation of the applied packages- sometimes very difficult to find out the best- most meaningful aspect of the data that could provide insight to the underlying meaning. ,It's OK... higher salary. :D,,In the research institute- where I work everybody is so smart- it is quite hard to surprise anyone. However the most recent project is extremely complicated... but our job is to make it easy to understand to anyone.,,,,More,male,26 - 35,Europe,,Not-for-profit
3/2/2017 5:40:32,3,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,Consultant,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,IT,,,,,,Excel;Power BI;D3;ggplot,I'm able to choose my own tools.,Dashboard;Presentations,Line Chart;Bar Chart;Choropleth Map,General Public;Product Managers;Project Managers;Executives,Moderate,Monthly,Summarization;Learning,Consultative,,,,,,,,,More,,,,,Private sector
3/2/2017 5:50:33,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools,No,Research,30,0,50,10,10,Excel;Tableau;Other R,I'm able to choose my own tools.,Dashboard,Line Chart;Bar Chart;Infographics;Area Plot,Executives,Intro,Daily,Analysis;Summarization;Decision Making,Collaborative,Data impacts of decisions are often neglected,Power of best visualizations is not appreciated,,More receptive/open minded audience,Structuring the data and the benefits of built in functionality,,,,Same,male,26 - 35,Europe,,Private sector
3/2/2017 6:39:01,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Business Analyst,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Communication;Marketing;Exploration,Embedded in another team,Excel;Graphics,No,reporting,20,20,10,10,40,Excel;Power BI,I'm able to choose my own tools.,Dashboard;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Dendrogram,General Public;Product Managers;Project Managers;Executives,Moderate,Monthly,Summarization;Learning,Consultative,Misunderstanding of my managers,cleaning data,more autonomy,,,,,,,male,26 - 35,europe,middle-eastern,Public sector
3/2/2017 7:16:27,2,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,PhD student,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Student,,,,,,,,,,,Excel;Pandas;Other Python,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Infographics;Flow Diagram,General Public;Scientists,Expert,Quarterly,Analysis;Summarization;Research,Collaborative,,,,,,,,,Much more,female,26 - 35,Europe,,Public sector
3/2/2017 7:22:40,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Manager Data Service,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Both,Business Intelligence Tools;General charting libraries,No,Research;Communications,20,10,10,5,10,Excel;Tableau;ArcGIS;SAS,We have a set list of tools we're expected to use for data visualization.,Dashboard;Scrollytelling;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map;Flow Diagram,General Public;Scientists;Executives,Intro,Monthly,Analysis;Summarization;Learning;Research,Subordinate,,,,,,,,,More,female,56+,USA or Canada,,Public sector
3/2/2017 7:34:50,9,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Data Strategy and Analytics Manager,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Engineering;Marketing;Research;IT,5,0,5,1,1,Excel;Tableau;Other BI;D3;Mapbox;ggplot;Other R;Gephi,I'm able to choose my own tools.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Treemap;Choropleth Map,Analysts;Project Managers;Executives,Moderate,Weekly,Analysis;Summarization;Learning,Subordinate,,,,,,,,,Same,,,,,Public sector
3/2/2017 8:21:29,4,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Researcher,Data Visualization Role has higher compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Embedded in another team,Excel,No,Research,10,0,0,0,10,Excel,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics,Executives,Intro,Monthly,Analysis;Summarization;Learning;Research,Consultative,,,,,,,,,More,female,26 - 35,USA or Canada,white,Public sector
3/2/2017 8:36:38,4,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Assistant Provost for Academic Data and Decision Support,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries,No,,10,10,5,5,10,Excel;Tableau;Microstrategy;ggplot;Other R,I'm able to choose my own tools.,Dashboard;Scrollytelling;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram;Choropleth Map;Flow Diagram;Box & Whisker,General Public;Analysts;Project Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning,Subordinate,,,,,,,,,More,male,36 - 45,USA or Canada,,Not-for-profit
3/2/2017 8:48:29,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Data Analyst,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,Don't Know,Design;Engineering,20,10,40,10,20,Excel;D3;ggplot;Pandas,I'm able to choose my own tools.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Network Diagram;Choropleth Map;Flow Diagram;Venn Diagram;Interactives,Analysts;Scientists;Product Managers,Intro;Moderate;Expert,Daily,Entertainment;Analysis;Summarization;Learning;Research,Collaborative,,,,,,,,,Same,male,26 - 35,USA or Canada,,Private sector
3/2/2017 8:58:36,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Principle Researcher,Data Visualization Role has same compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Engineering;Research,20,10,30,20,10,Illustrator;Excel;Power BI;D3;WebGL;Other Javascript;Pandas;React,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations;Email,Line Chart;Bar Chart;Treemap,General Public;Engineers;Scientists;Product Managers;Executives,Moderate,Monthly,Analysis;Summarization,Consultative,Aligning incentives for all people to work together.,The tendency for others to say...I have a lot of data- will you visualize it for me?,Larger- coordinated shared teams.,,,,,,Same,male,46 - 55,USA or Canada,white,Private sector
3/2/2017 9:11:00,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Research Software Developer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Research,10,10,5,2,10,Excel;D3;Processing;Other Javascript;ggplot;Other R,I'm able to choose my own tools.,Documents;Presentations;Email,Line Chart;Bar Chart;Network Diagram,Scientists,Moderate;Expert,Weekly,Summarization;Learning;Research,Consultative,,,,,,,,,Same,male,26 - 35,USA or Canada,white,Not-for-profit
3/2/2017 9:20:57,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Instruction Designer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Separate data visualization team,,No,Design,1,0,0,99,0,Excel,I'm able to choose my own tools.,Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Flow Diagram,Executives,Intro;Moderate,Yearly,Analysis;Summarization;Learning,Subordinate,,,,,,,,,More,female,36 - 45,USA or Canada,white,Private sector
3/2/2017 9:32:17,4,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,PhD Student in Movement Ecology,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Student,,,,,,20,15,30,5,30,ggplot;Other R,I'm able to choose my own tools.,Dashboard;Presentations,Line Chart;Bar Chart;Choropleth Map;Raster Map;Flow Diagram,General Public;Scientists,Moderate,Weekly,Analysis;Summarization;Research,Collaborative,,,,,,,,,Much more,female,26 - 35,Europe,white,Public sector
3/2/2017 9:33:11,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Administrative Analyst,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools;Completely custom,No,Administration,30,10,0,5,40,Excel;Tableau,We have a set list of tools we're expected to use for data visualization.,Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Flow Diagram,General Public;Analysts;Project Managers,Intro,Daily,Analysis;Summarization,Subordinate,Not having the skill level of our programmer analyst- limits my ability to aid with visualization.,Ensuring clean data sources. ,,,Not always sure how to use the information provided. ,,,,More,female,26 - 35,USA or Canada,white,Public sector
3/2/2017 9:50:27,10,Bachelors,Mostly from School,Intended to work in data visualization,Not a data visualization professional yet,Environmental Scientist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Other,Analysis,Separate data visualization team,GIS,No,Water quality monitoring and assessment,5,0,80,0,2,Excel;Other GIS;Drawing,We have a set list of tools we're expected to use for data visualization.,Static Web Page;Documents,Line Chart;Infographics;Raster Map;Flow Diagram,Analysts;Scientists,Expert,Daily,Analysis;Summarization,Collaborative,Government bureaucracy,Having majored in cartography (but being more of a field manager) I've seen poor use of available symbolization for effective data portrayal by coworkers.,,To have more input in how end products would appear.,The use of symbol size/color differentials as effective or ineffective due to slightly different sizes/shapes/colors.,As a gov't organization... give mangers at all levels the power to hire and fire as is done in private industry. I have worked most of my career in the private sector and see much stagnation in government workers.,an ability to discuss data visualization needs and concerns in human terms.,,Same,male,56+,USA or Canada,white,Public sector
3/2/2017 10:03:19,10,PhD,Mostly Self-Taught,Intended to work in data visualization,No,Founder ,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Summary/Overview;Exploration,Separate data visualization team,Business Intelligence Tools;Completely custom,Yes,Engineering;IT,10,10,10,10,10,Tableau;D3;Highcharts;Java;Angular,I'm able to choose my own tools.,Embedded in a tool;Dashboard,Infographics;Treemap,General Public,Intro,Daily,Analysis;Summarization,Collaborative,,Time to build Vis,,,,,,,Much more,male,36 - 45,Europe,,Private sector
3/2/2017 10:12:15,6,Bachelors,Mostly Self-Taught,Intended to work in data visualization,No,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,ggplot2/Pandas Charts,No,Engineering,15,5,30,0,50,Plotly;D3;ggplot;Pandas,I'm able to choose my own tools.,Documents;Presentations;Email;internal chat system,Line Chart;Bar Chart;Treemap;Dendrogram;Choropleth Map,General Public;Analysts;Engineers;Scientists;Product Managers;Executives,Moderate,Weekly,Analysis;Learning;Research,Consultative,the reliance on opinion over data,lack of understanding of basic statistics and/or visual techniques (like a density plot),surrounded by more data literate people,Easier color palettes- picking colors stinks. ,it's more about concepts behind visuals like distribution- percentiles and density.,,,,Same,male,46 - 55,USA or Canada,white,Private sector
3/2/2017 10:23:10,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Operations Analyst,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Both,ggplot2/Pandas Charts,No,Design;Engineering;IT;Operations,20,10,5,5,20,Excel;Plotly;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Network Diagram;Flow Diagram,Analysts;Engineers;Product Managers;Project Managers,Moderate,Weekly,Analysis;Summarization,Collaborative,Getting the right data to be able to answer a question or provide meaningful insight. Often the data you want is not something that has been recorded or exists yet- or takes significant manipulation or cleaning to use.,Need to learn independently- little support for learning about other tools or techniques. ,Greater focus on data and analysis throughout the organization- not just within a few teams- which would make people more data-minded and more meaningful datasets available- part of all processes.,Working better to reach new audiences- understanding needs of other teams better to develop insights relevant to them- working with them to collect relevant data so that visualizations can be made.,They often only see the visualization or results and don't understand the data collection and organizational culture/structure needed to support it.,Leadership support for visibility of our work and training.,How to get leadership buy-in to develop more data-minded culture- how to start grassroots data analysis and visualization movement- how to leverage free or low cost tools and trainings. ,,More,female,25 or younger,USA or Canada,white,Private sector
3/2/2017 10:40:57,10,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Data Visualization Expert,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Consultant,,,,,,20,0,20,40,20,Illustrator;Excel;Tableau;D3;Java,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Presentations,Line Chart;Bar Chart;Choropleth Map;bullet bump area,General Public;Analysts;Executives,Intro;Moderate,Daily,Analysis;Summarization;Learning;Research,Consultative,,,,,,,,,Much more,female,46 - 55,MIddle East & Africa,white,Private sector
3/2/2017 11:01:40,7,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Associate Professor,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Marketing;Exploration;research,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,,10,20,15,10,25,Illustrator;Excel;Tableau;D3;Leaflet;ggplot;Pandas;Gephi,I'm able to choose my own tools.,github;courses,Line Chart;Bar Chart;Dendrogram;Choropleth Map,General Public;Scientists;students,Intro,Monthly,Analysis;Summarization;Learning;Research,Consultative,either using 3rd party expensive tools or having to build-from-scratch with code. ,people don't understand it takes a lot of time,,,time to produce work- data knowledge required,,,,More,female,46 - 55,Europe,white,Private sector
3/2/2017 11:07:34,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing,Embedded in another team,Business Intelligence Tools,No,Research;evaluation,20,,,30,50,Illustrator;Excel;Tableau;SalesForce,We have a set list of tools we're expected to use for data visualization.,Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Infographics,Scientists;Project Managers;Executives,Intro,Monthly,Analysis;Summarization,Subordinate,No opportunities for training/trying different techniques. Being expected to whip up beautiful insightful things at the last minute. Required changes and additions from people who are not familiar with the data but have the power.,Not getting to use visualizations to explore data or do more research rather than just summarizing.,Making the organization more thoughtful- including how we create and use data visualizations- and who the audience is.,Time and support to learn to do better.,They don't understand the importance of reporting honestly- without intentionally or unintentionally misrepresenting data. Many see it as only something in service of the marketing dept.,,,,More,female,,USA or Canada,,Not-for-profit
3/2/2017 11:18:08,4,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,PhD Student,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Student,,,,,,10,10,5,10,5,Tableau;D3;Vega;Vega-Lite,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Documents;Presentations;Papers,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram;Choropleth Map;Raster Map,General Public;Analysts;Engineers;Scientists,,,Analysis;Summarization;Research,Collaborative,,JavaScript,,,,,,,Same,male,26 - 35,USA or Canada,,Public sector
3/2/2017 11:18:13,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Contractor,,,,,,20,20,40,0,20,Excel;Plotly;D3;Pandas;Other Python;React;Seaborn;MATPLOT,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations,Line Chart;Bar Chart;Choropleth Map,General Public;Analysts;Scientists;Product Managers,Intro;Moderate,Weekly,Analysis;Learning,Subordinate,Scoping & visibility on full range of the problem is difficult as freelancer,highly templated & repetitive - not enough time or flexibility on part of stakeholders to do anything really creative,"spend more time in ""deep work"" mode thinking about dataviz",get more time to learn and collaborate with practitioners outside org,viz is not just about standard business dashboard stuff,have a dataviz team to work with,"More stories about ""how to get started/get into dataviz"" - creating a playbook for acquiring the necessary skills and intuition- much like how people talk about breaking into software engineering and data science",,Much more,male,26 - 35,USA or Canada,asian,Private sector
3/2/2017 11:23:51,2,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Student,,,,,,40,,10,,,Excel;Tableau;ggplot,I'm able to choose my own tools.,Presentations,Line Chart;Bar Chart;Infographics,General Public,Moderate,Yearly,Research,Consultative,,,,,,,,,Much more,,,,,Private sector
3/2/2017 11:28:05,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Professor,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,ggplot2/Pandas Charts;Completely custom,No,Research,20,30,40,10,0,Illustrator;Tableau;Plotly;D3;Leaflet;Highcharts;ggplot;Other R;Cytoscape,I'm able to choose my own tools.,Embedded in a tool;Scrollytelling;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Dendrogram;Network Diagram;Choropleth Map,General Public;Analysts;Engineers;Scientists;Medical Professionals,Intro;Moderate;Expert,Monthly,Analysis;Summarization;Learning;Research,Collaborative,Students,Lack of large color printer,,,,More time,,,Much more,male,36 - 45,USA or Canada,white,Public sector
3/2/2017 11:34:09,7,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Professor and Technical Communication Consultant,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,,No,Design;Research,15,2.5,,27.5,40,Illustrator;Excel;Tableau;ArcGIS;R,I'm able to choose my own tools.,Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Flow Diagram,General Public;Medical Professionals;Project Managers,Intro;Moderate,Monthly,Analysis;Learning;Research,,data that is inconsistent and varying formats from different primary sources ,cleaning the data,,better tools that can be integrated together,,,professional development opprtunities,,Same,female,46 - 55,,,Not-for-profit
3/2/2017 11:46:14,7,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Principal Digital Strategist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Marketing,Both,Business Intelligence Tools,No,Design;Marketing;Research,10,5,5,10,2,Excel;Tableau,I'm able to choose my own tools.,Dashboard;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Flow Diagram,Clients (pharmaceuticals industry),Intro;Moderate,Yearly,Analysis;Research,Consultative,Organizational structure- role defintion,lack of defined BI visualization resource,,Formalized training or course on visualization best practices to team handling the data,simplicity is key,direct reports,Basics to learn new tools like R,,Same,male,26 - 35,USA or Canada,white,Private sector
3/2/2017 11:46:18,7,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Principal Digital Strategist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Marketing,Both,Business Intelligence Tools,No,Design;Marketing;Research,10,5,5,10,2,Excel;Tableau,I'm able to choose my own tools.,Dashboard;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Flow Diagram,Clients (pharmaceuticals industry),Intro;Moderate,Yearly,Analysis;Research,Consultative,Organizational structure- role defintion,lack of defined BI visualization resource,,Formalized training or course on visualization best practices to team handling the data,simplicity is key,direct reports,Basics to learn new tools like R,,Same,male,26 - 35,USA or Canada,white,Private sector
3/2/2017 12:21:21,0,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Programme Development Manager,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration;Evaluation;involvement,Both,Business Intelligence Tools;General charting libraries,No,IT;Operations,5,0,10,5,20,Excel;Tableau,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Infographics;Network Diagram;Flow Diagram,Project Managers;Executives,Intro;Moderate,Monthly,Analysis;Summarization;Learning;Quality and Improvement,Consultative,Lack of clarity- coordination- oversight in terms of requirements for me to fulfill,Insufficient training,More opportunity to focus on evaluation.,More training,How much time it takes.,More data-related training,,,More,female,26 - 35,Europe,white,Not-for-profit
3/2/2017 12:55:19,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,STEM Education Consultant,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Consultant,,,,,,10,0,10,20,40,Excel;Other Network Visualization Suite,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Network Diagram;Flow Diagram,General Public;Educators;Policy-Makers,Intro;Moderate,Quarterly,Analysis;Learning;Research,Consultative,Time needed to learn the data visualization tools available to me,Need for tools that are intuitive and do not require extensive programming knowledge,Use of more data visualization- more time to learn better and more efficient ways to use tools,More time for me to become more proficient,Too many don't understand statistics and how data visualization models can be misleading,More use of better data visualization tools,online forums and webinars,,Much more,female,46 - 55,USA or Canada,white,Private sector
3/2/2017 13:03:28,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Coordinator - Research,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Summary/Overview,Separate data visualization team,Business Intelligence Tools,No,Research,10,10,50,0,30,Excel;Tableau;ggplot;Other R,We have a set list of tools we're expected to use for data visualization.,Dashboard,Line Chart;Bar Chart,Executives,Intro,Monthly,Summarization,Consultative,Lack of a focused research question to be answered with analysis,Outcome is assumed before data has been visualized,,,the time it takes for a good visualization,,,,More,male,36 - 45,USA or Canada,white,Public sector
3/2/2017 13:57:07,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Computational Social Sciences Specialist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Both,ggplot2/Pandas Charts;Modeling,No,IT,5,10,20,,5,Illustrator;Excel;Plotly;ggplot;Other R;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Infographics,General Public;Scientists;Medical Professionals,Intro;Moderate;Expert,Quarterly,Analysis;Summarization;Learning;Research,Collaborative,,,,,,,,,More,female,36 - 45,USA or Canada,white,Not-for-profit
3/2/2017 14:07:25,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Chief actuary,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Separate data visualization team,Business Intelligence Tools;ggplot2/Pandas Charts;Excel,No,Business analysis and actuarial,5,5,0,5,0,Excel;Power BI;ggplot,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Network Diagram;Choropleth Map;Flow Diagram,Executives,Moderate,Weekly,Analysis;Summarization,Consultative,,Data cleaning,Greater skills with unstructured data,Greater range of charts understood,Effort required to produce each visualisation,,,,More,male,36 - 45,Europe,white,Private sector
3/2/2017 14:23:25,9,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Senior Analyst/Programmer,Data Visualization Role has same compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Separate data visualization team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,Yes,Research;IT,70,0,0,20,10,D3;Processing;Leaflet;WebGL;Other R;Angular,I'm able to choose my own tools.,Static Web Page;Presentations;touch kiosks;papers;posters,Network Diagram;Flow Diagram,General Public;Scientists;professors;students;journalists,Expert,,Learning;Research,Consultative,,,,,,,,,More,male,26 - 35,USA or Canada,white,Public sector
3/2/2017 15:18:29,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Consultant (Evaluator/Data Analyst),Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Consultant,,,,,,15,5,20,5,35,Excel;Tableau;Plotly;ArcGIS;DataWrapper;Infogr.am for social posts,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map,General Public;Analysts;Project Managers;Executives;Stakeholders inc. local officials;nonprofit orgs;funders,Intro;Moderate,Monthly,Analysis;Summarization;community engagement,Consultative,Lack of funding/resources,The same; along with the time required to structure the data appropriately for use in viz stories and interactive dashboards. Small budgets require that much of the data cleaning/transformation/structuring be done using labor-intensive processes and yet said processes can easily break a budget.,More time for analysis- interpretation- communication and collaboration; less time on lower level stuff such as data quality/data prep activities.,Better strategies to convert raw data into viz-appropriate structured data.,How much time it takes- how many choices must be made along the way,Funding to attend a series of workshops/trainings to help me improve my skills including learning techniques to help automate some of my data integration/prep work; learning D3; learning more about data blending.,Data viz is a powerful and efficient tool when engaged in community-based work with a large number of diverse stakeholders. I would love to see the nonprofit/community-based sector recognized as an important audience who can use data viz for social change - while acknowledging the funding limitations that interfere with data viz execution.,,More,female,36 - 45,USA or Canada,white,Public sector
3/2/2017 15:50:42,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior UI Engineer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Engineering,10,70,0,0,20,D3;Highcharts,I'm able to choose my own tools.,Embedded in a tool,Bar Chart;Network Diagram;Force directed layout,Engineers,Moderate,Monthly,Analysis;Research,Collaborative,,,,,,,,,Much more,male,36 - 45,USA or Canada,white,Private sector
3/2/2017 17:02:05,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,President,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Consultant,,,,,,50,25,0,75,25,Illustrator;Excel;Mapbox,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Raster Map;3D Chart,General Public;Product Managers;Project Managers,Moderate,Weekly,Analysis;Summarization;Learning;Research,Consultative,People don't really understand what infographics are- so you have to beg for good data.,Not enough time a budget to do things correctly,Bigger budgets,Bigger budgets and better data,What it takes to get data that communicates the project's message,,,,Much more,male,46 - 55,USA or Canada,white,Private sector
3/2/2017 18:22:51,4,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Management Analyst,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,,,,No,admin,20,0,10,10,50,Excel;FileMaker,We have a set list of tools we're expected to use for data visualization.,Documents;Email,Line Chart;Bar Chart,General Public;Executives,Intro,Weekly,Summarization;Research,,Lack of time to create products- always stuck with mundane tasks,Not enough tools- lack of innovation by leadership.,Eliminate mundane tasks- let me create and show data and teach managers how we are really working. Otherwise- Im just pulling data to answersomeone's question.,,How it helps. How long it takes to do the work. The high level of skill- everyone thinks because some things are done quickly it must be super easy.,Sitting with leadership.,Pay is low in my field (government). It's just not recognized as vital.,,Much more,male,36 - 45,USA or Canada,white,Public sector
3/2/2017 19:23:55,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Epidemiology and Evaluation Administrator,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Summary/Overview;Communication,Both,Excel;Graphics;GIS,No,Design;Research,5,,,,,Illustrator;Excel;ArcGIS;Other GIS,We have a set list of tools we're expected to use for data visualization.,Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map;Flow Diagram,General Public;Project Managers;Executives,Intro;Moderate,Quarterly,Summarization;Learning,,,,,,,,Best approaches to getting started,,More,female,26 - 35,USA or Canada,white,Public sector
3/2/2017 20:02:51,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data and GIS Specialist,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Both,Business Intelligence Tools,No,Research,10,,,,10,Excel;Tableau;Plotly;Other Python;ArcGIS;Other GIS;Carto,I'm able to choose my own tools.,Dashboard;Scrollytelling;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Infographics;Choropleth Map;Raster Map,Analysts;Scientists;Project Managers,Intro;Moderate,Quarterly,Summarization;Learning,Consultative,,While there are many tools available- each have shortcomings for different purposes- which requires proficiency and formatting with many tools,More focus within a particular discipline- can't be an expert in everything,Learn to program fluently- to remove that obstacle ,You really have to understand the data- to effectively visualize,True collaborations with design- data science- and discipline contributors ,,,Same,male,26 - 35,USA or Canada,white,Public sector
3/2/2017 20:21:06,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Reporting and Analytics Manager,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,IT;Business operations,10,10,20,5,15,Excel;Other BI;ggplot;Other R;Cognos,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Network Diagram;Choropleth Map;Flow Diagram,Analysts;Product Managers;Project Managers;Executives,Moderate;Expert,Daily,Analysis;Summarization;Research,Collaborative,Low IT responsiveness,Data accessibility problems,IT infrastructure,Supported software/tools,How many people and how much work it takes to produce,Freedom to design our own summary data repository,Advice on demonstrating the strategic value of investing in data visualization,,Less,male,36 - 45,USA or Canada,,Private sector
3/2/2017 21:37:35,0,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Junior Develooer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview,Embedded in another team,ggplot2/Pandas Charts,No,Engineering,10,15,10,20,5,Excel;ggplot;Pandas,I'm able to choose my own tools.,Static Web Page;Presentations;Email,Line Chart;Bar Chart,Engineers;Project Managers,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Research,Collaborative,,,,,,,,,More,male,26 - 35,USA or Canada,hispanic,Private sector
3/2/2017 21:46:44,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Director Technology and Architecture,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools;Completely custom,No,Design;Engineering;Marketing;Sales/Support,5,5,0,20,5,Excel;Tableau;Other BI;D3;Other Javascript;React,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Email,Line Chart;Bar Chart;Pie Chart;Flow Diagram,Analysts;Engineers;Executives,Moderate;Expert,Daily,Analysis;Summarization;Compliance,Consultative,not enough hours in the day to do everything we'd like,the individual tools are great- but making everything work together often takes a lot of time,clearer separation of roles; the isn't much time to focus on data vis because we're all juggling so many different things,be an enabler for our customers: instead of building the visualizations they want- I'd rather build tools so they can build them (and change them- and add more in the future- etc). teach a man to fish...,the critical importance of design at multiple levels: information hierarchy- UX and interaction- encodings/colors/etc- and aesthetics,,continued focus on storytelling,,More,male,36 - 45,USA or Canada,white,Private sector
3/2/2017 23:42:12,3,PhD,Mostly Self-Taught,,No,Project Coordinator Electronic Publishing,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,,ggplot2/Pandas Charts,No,Research;IT;Services;eg research information,,,,,,Excel;ggplot;Other R,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics,Project Managers;Executives;Other professionals,Intro;Moderate,Quarterly,Analysis;Summarization;Learning;Research,Collaborative,,,,,,,,,More,,,Europe,,Public sector
3/3/2017 1:49:19,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Sector Analyst,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Both,Business Intelligence Tools,Don't Know,Marketing;Research;IT,5,2,0,5,2,Excel,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map,Executives,Intro,Monthly,Analysis;Summarization,Consultative,,,,,,,,,Much more,,,,,Private sector
3/3/2017 1:51:16,3,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,Yes,Data Visualization Designer,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Intern,Analysis;Communication;Exploration,Both,Business Intelligence Tools;Completely custom,Yes,Design;Engineering;Marketing;Research,40,10,0,20,30,Illustrator;Tableau;Other Javascript;Other Python;QGIS;Gephi,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Network Diagram;Flow Diagram;Physical network/line/bubble charts,General Public;Project Managers;Executives;Researchers,Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Consultative,Working in silence in the studio,,,None (I'm pretty happy),,,"Accessible guidance on new technologies and tools that are / could be useful for data visualization
Also discussions on how people's background influence their approach (style/method/goal/format/...) when producing/designing data visualizations",,Same,male,25 or younger,Europe,white,Public sector
3/3/2017 3:35:48,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Interaction & UI Designer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Contractor,,,,,,25,10,,45,20,Illustrator;Excel;D3;Leaflet,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Presentations,Line Chart;Bar Chart;Pie Chart;Network Diagram;Flow Diagram,General Public;Project Managers,Moderate,Quarterly,Analysis;Research,Subordinate,,,,,,,,,More,male,26 - 35,Europe,,Private sector
3/3/2017 4:01:06,4,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,E-Marketing Analyst,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,Don't Know,Design;Marketing;Research,25,35,35,0,10,Excel;Power BI;Plotly;ggplot;Other R;Pandas,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Network Diagram;Flow Diagram,Analysts;Scientists;Product Managers;Executives,Intro;Moderate,Daily,Analysis;Summarization;Learning,Subordinate,,,,,,,,,More,female,26 - 35,Europe,white,Private sector
3/3/2017 4:32:53,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Research Scientist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning,Embedded in another team,ggplot2/Pandas Charts;General charting libraries,No,Research,10,0,10,0,5,Excel;D3;ggplot,I'm able to choose my own tools.,Presentations,Line Chart;Bar Chart,Analysts;Product Managers;Executives,Moderate,Weekly,Analysis;Research,Consultative,Lack of clear purpose of our org,Our org has no style guide or standards for visualization so there are many confusing or misleading viz created and when you combine multiple inputs from different teams in one document it looks totally unprofessional ,Less management responsibilities ,Style guide to follow,Time and skill involved in putting together viz that communicates clearly and the cognitive factors of consuming data via visualization ,Clarity of purpose and expectations ,,,More,female,26 - 35,,white,Private sector
3/3/2017 5:11:05,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Natural Resource Specialist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;Completely custom,No,Research;IT,20,10,10,10,10,Illustrator;Excel;D3;Leaflet;Other Javascript;ArcGIS,I'm able to choose my own tools.,Dashboard;Scrollytelling;Static Web Page,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Choropleth Map;Raster Map;Flow Diagram,General Public;Analysts;Scientists,Intro;Moderate,Weekly,Analysis;Summarization;Learning;Research,Consultative,Too many other tasks,,,,,,,,More,male,36 - 45,USA or Canada,,Public sector
3/3/2017 5:24:00,2,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Analyst,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Marketing;IT,10,0,40,10,20,Excel;Tableau;Plotly;D3;Other Javascript;ggplot;Other Python,I'm able to choose my own tools.,Scrollytelling;Documents;Presentations,Line Chart;Bar Chart;Choropleth Map;Raster Map,Analysts;Executives,Intro;Moderate,Monthly,Summarization;Learning;Research,Consultative,,,,,,,,,More,male,26 - 35,USA or Canada,white,Public sector
3/3/2017 7:34:39,1,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Site Reliability Engineer,Data Visualization Role has same compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Engineering;Marketing;IT,10,10,10,0,10,Tableau;Other Javascript;ggplot;Other R,I'm able to choose my own tools.,Static Web Page;Image,Line Chart;Bar Chart,Engineers;Product Managers;Project Managers,Intro,Monthly,Summarization,Subordinate,,,,,,,,,More,male,26 - 35,Europe,,Private sector
3/3/2017 7:49:04,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Research Manager,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing,Embedded in another team,Business Intelligence Tools;General charting libraries,No,Research,25,0,10,20,0,Excel;Tableau;Other Network Visualization Suite,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Flow Diagram,Product Managers;Project Managers;Executives,Expert,Monthly,Analysis;Summarization;Research,Subordinate,Lack of access to resources- new visualization tools,,More forward thinking for data visualization in the industry overall,More automated,More infographics- less static charts.,More access and training to data visualization tools,Additional opportunities for learning,,More,female,26 - 35,USA or Canada,white,Private sector
3/3/2017 8:02:02,10,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,Yes,Engineering;Marketing,25,5,25,5,25,Excel;Tableau;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Dendrogram;Choropleth Map;Flow Diagram,Analysts;Product Managers;Project Managers,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Collaborative,Changing requirements- project creep.,"The perception of the ease of changing ""one small thing"" in a visualization versus the reality.",,,,,,,More,male,36 - 45,USA or Canada,,Private sector
3/3/2017 8:22:42,3,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Project Leader,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Communication,Embedded in another team,,No,Communication,10,0,1,30,5,Illustrator;Excel;Plotly;ggplot;Java;Cytoscape,We have a set list of tools we're expected to use for data visualization.,Scrollytelling;Documents;Presentations,Bar Chart;Infographics;Network Diagram;streamgraph,General Public,Intro,Monthly,Analysis;Communication,Collaborative,delays,not enough priority given to it externally,,better coding,"that it isn't simply ""beautifying"" data",,,,More,female,26 - 35,Europe,white,Private sector
3/3/2017 8:34:57,9,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Business Analyst,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Marketing;Exploration,Embedded in another team,Business Intelligence Tools,No,Business Intelligence,20,10,0,10,60,Excel;Tableau;Microstrategy;ggplot,I'm able to choose my own tools.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Scatter plot;box & whisker plot,Analysts;Product Managers;Project Managers;Executives,Moderate,Weekly,Analysis;Summarization;Learning,Consultative,,Sometimes business partners have trouble understanding more complex visualizations ,,,,,,,Same,female,26 - 35,USA or Canada,white,Private sector
3/3/2017 9:29:27,10,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Professor,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration,Embedded in another team,ggplot2/Pandas Charts;Completely custom,No,Research,20,20,20,1,20,D3;Other Javascript;Pandas;Other Python;React,I'm able to choose my own tools.,Dashboard;Scrollytelling;Documents;Presentations,Line Chart;Bar Chart;Treemap;Dendrogram;Network Diagram;Raster Map,General Public;Engineers;Scientists,Moderate,Weekly,Analysis;Summarization;Learning;Research,Collaborative,Time,Javascript,Money,,Time-consuming,,,,Same,male,36 - 45,USA or Canada,white,Academic
3/3/2017 10:39:24,5,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Business Intelligence Analyst ,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Communication,Embedded in another team,Business Intelligence Tools,No,Engineering,30,10,0,,20,Excel;Tableau,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics,Analysts;Engineers;Product Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning,Collaborative,Communication ,,,,Making it look simple means that it is very complicated underneath ,,,,,female,26 - 35,Europe,white,Private sector
3/3/2017 11:13:49,5,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Contractor,,,,,,25,10,5,15,25,Illustrator;Excel;Other R;ArcGIS;QGIS;Other GIS,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map;Raster Map,General Public;Analysts;Project Managers;Executives,Intro;Moderate,Weekly,Analysis;Summarization;Learning;Research,Consultative,Time required to make data delivered to me usable ,,,,,,,,More,female,36 - 45,USA or Canada,,Mixed
3/3/2017 11:20:45,2,Masters,Mostly Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,Integration Consultant,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools,No,Research,0,50,0,0,50,Illustrator;Excel;Tableau;D3;Processing;Highcharts;ggplot;Other R;Pandas,We have a set list of tools we're expected to use for data visualization.,Dashboard;Scrollytelling;Static Web Page,Line Chart;Bar Chart;Choropleth Map,General Public;Analysts;Product Managers;Project Managers;Executives,Intro;Moderate,Daily,Summarization,Consultative,lack of process and resources,building repetitive dashboards all the time,cut down on the number of layers,not build dashboards or use Tableau,that it's really not exciting,automation,how to make data viz economically sustainable,,Much more,female,26 - 35,USA or Canada,asian,Private sector
3/3/2017 12:30:16,7,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,GIS Applications Developer,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Monitoring;Evaluation,Both,General charting libraries;Completely custom;GIS,Yes,Design;Planning;Learning and adaptation ,30,30,7,30,3,Excel;D3;Processing;Leaflet;Mapbox;Highcharts;Other Javascript;Angular;Other MVC;ArcGIS;QGIS,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Raster Map,General Public;Project Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Subordinate,data in shambles- not structured and not central,Organizing- preparing- sorting and structuring the data,design- data capture- storage- management and manipulation,automate visualization by developing standard visualization dashboards,they write long reports that can just be summarized in pictures and maps,being listened to by my customers,,,Much more,male,26 - 35,Middle East & Africa,black,Public sector
3/3/2017 14:10:08,7,PhD,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Senior Fellow,Data Visualization Role has Lower compensation,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Separate data visualization team,ggplot2/Pandas Charts;General charting libraries;Completely custom;Excel;Modeling,No,Design;Research;IT,75,0,0,0,10,Illustrator;Excel;Tableau;Power BI;Highcharts,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Choropleth Map,General Public;Analysts;Scientists;policy,Intro;Moderate;Expert,Hourly,Analysis;Summarization;Learning;Research,Consultative,,,,,,,,,,,,,,Not-for-profit
3/3/2017 14:53:33,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Researcher,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Contractor,,,,,,25,25,25,10,15,Excel;Tableau,I'm able to choose my own tools.,Documents;Presentations,Line Chart;Bar Chart,General Public;Executives,Moderate,Monthly,Analysis;Summarization;Research,Consultative,Clients who don't know what they want,Teaching myself as I go- I don't have any structured guidance,I'd like more variety in the work I do,I'd like a mentor to bounce ideas off of,That the data is impartial and sometimes shows trends that make people uncomfortable.,,,,More,male,26 - 35,USA or Canada,white,Private sector
3/3/2017 16:10:25,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,IT Contractor - Big Data,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Contractor,,,,,,30,40,20,10,0,Other BI;Processing;ArcGIS;Pentaho;Zepellin,I'm able to choose my own tools.,Dashboard;distribiuted reports,Line Chart;Bar Chart;Pie Chart,Analysts;Engineers;Product Managers;Executives,Moderate;Expert,Monthly,Analysis;Research,Consultative,system complexity / data volume,plenty of vis tools at the bi layer but not at the big data level,simpler architecture,easier plug and play visualisation,the complxity,simpler vis tools and easier integration,communities for each tool- very repsonsive forums for problems ,,Less,male,46 - 55,Oceania,white,Private sector
3/3/2017 17:23:03,8,PhD,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Member of Technique Staff,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Marketing,Embedded in another team,Completely custom,No,Design;Engineering;Research,40,5,5,20,30,D3;Leaflet;WebGL;React,I'm able to choose my own tools.,Static Web Page,Line Chart;Pie Chart;Infographics;Network Diagram,Product Managers;Project Managers;Executives,Moderate,Daily,Analysis,Collaborative,,,,performance,Don't realize the value of visualization- thought visualization are just graphs- charts. Something nice to have- but not really useful.,,,,Same,female,,USA or Canada,asian,Private sector
3/3/2017 22:46:13,10,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,Don't Know,Marketing,10,40,15,5,30,Excel;Tableau;ggplot;Other R;Gephi,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Network Diagram;Leaflet Map,Product Managers;Executives,Moderate,Daily,Analysis;Summarization;Learning,Consultative,,I prefer using notebooks instead of power point,More freedom in accessing database,having a separate server for sharing the vis,the complexity and time spending in developing the vis,More Big Data tools- such as Spark and Hadoop,How to make a vis that tells 1000 words,,More,male,26 - 35,,,Public sector
3/4/2017 8:15:16,5,Masters,Equal Parts School and Self-Taught,Intended to work in data visualization,No,Biostatistics PhD candidate,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Student,,,,,,,,,,,Leaflet;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Dendrogram;Network Diagram;Flow Diagram;3D Chart,General Public;Scientists;Medical Professionals,Intro;Moderate,Weekly,Research,Collaborative,,,,,,,,,,female,26 - 35,,,Not-for-profit
3/4/2017 10:03:11,5,Masters,Mostly Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,Business Analyst,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,,10,5,0,2,20,Excel;Tableau,We have a set list of tools we're expected to use for data visualization.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap,Analysts;Engineers;Product Managers;Sales team,Expert,Weekly,Analysis;Summarization;Learning,Collaborative,,,,,,,,,Much more,male,36 - 45,Europe,white,Private sector
3/4/2017 12:50:06,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Lead Evaluator,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Communication,Both,,No,Evaluation,2,0,2,2,5,Excel,We have a set list of tools we're expected to use for data visualization.,Documents;Presentations,Line Chart;Bar Chart;Pie Chart,Scientists;Medical Professionals;Project Managers;Executives,Moderate,Quarterly,Analysis;Summarization;Learning,Collaborative,,,,,,,,,More,female,36 - 45,USA or Canada,white,Public sector
3/4/2017 13:12:46,6,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Product Manager Customer Reporting,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Communication,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Design,15,15,5,10,5,Excel;Tableau;ggplot,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Presentations,Line Chart;Bar Chart;Infographics;Treemap;Choropleth Map,Executives,Intro,Daily,Analysis;Summarization,Consultative,,,,,,,,,Much more,male,46 - 55,USA or Canada,white,Private sector
3/4/2017 14:24:50,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Insights Manager,Data Visualization Role has higher compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Embedded in another team,Business Intelligence Tools;General charting libraries;Completely custom,No,Marketing;IT,10,20,10,10,10,Excel;Tableau;D3;Mapbox;Other Javascript;ggplot;Other Python,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Network Diagram;Choropleth Map;Raster Map;Flow Diagram,General Public;Analysts;Engineers;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Daily,Entertainment;Analysis;Summarization;Learning;Research,Collaborative,Lack of resources and talent to hore in my country ,Balance between time for research vs output,More time for research ,,It takes time,More staff,,,More,male,36 - 45,Oceania,white,Private sector
3/4/2017 14:30:22,2,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Analyst,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Contractor,,,,,,10,5,50,0,35,Excel;Tableau;D3;Pandas;Other Python;React;Angular,We have a set list of tools we're expected to use for data visualization.,Dashboard,Line Chart;Bar Chart;Infographics,Analysts;Project Managers;Executives,Moderate,Monthly,Analysis;Summarization;Learning,Collaborative,,,,,,,,,,,,,,
3/4/2017 14:32:26,6,Masters,Mostly from School,Ended up doing data visualization as a requirement of the job,No,GIS analyst,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,Don't Know,Research,15,20,20,5,40,Illustrator;Excel;Plotly;Leaflet;ggplot;Other R;Other Python;ArcGIS;QGIS;Other GIS,I'm able to choose my own tools.,Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Dendrogram;Network Diagram;Choropleth Map;Raster Map;Flow Diagram;3D Chart,General Public;Analysts;Scientists;Project Managers,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning;Research,Consultative,,,,,,,,,Much more,male,26 - 35,USA or Canada,white,Public sector
3/4/2017 14:48:14,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Policy Performance and Research Manager ,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools,No,Research,10,5,0.5,3,15,Excel;Tableau;Other R;ArcGIS,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Flow Diagram,Analysts;Project Managers;Executives,Intro,Weekly,Analysis,Collaborative,,,,,,,,,Much more,male,36 - 45,Europe,white,Public sector
3/4/2017 14:52:55,10,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Senior Specialist,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Exploration,Separate data visualization team,Business Intelligence Tools,Don't Know,IT,,10,5,15,60,Excel;Tableau;Qlik,We have a set list of tools we're expected to use for data visualization.,Dashboard,Bar Chart;Treemap;Choropleth Map;Bubble;scatter;2x2,Analysts;Scientists;Executives,Moderate,Weekly,Analysis;Summarization;Research,Collaborative,Lack of technical support,Data cleaning & ETL,Make it easier to get answers to technical problems,More coding and customization- less reliance on menu driven tools like Tableau & Qlik,They think in terms of Excel,,More tutorials and how-to,,Much more,male,56+,USA or Canada,white,Private sector
3/4/2017 14:55:08,5,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,BI Developer,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools,Yes,IT,,,,,,Excel;Tableau,I'm able to choose my own tools.,Dashboard;Scrollytelling;Documents;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Flow Diagram,Analysts;Product Managers;Project Managers;Executives,Expert,Daily,Analysis;Summarization,Collaborative,,,,,,,,,Less,,,,,Private sector
3/4/2017 15:48:48,7,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Visualization & Analytics Program Manager,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools,No,Engineering;Marketing;Research;IT;Support,80,5,2,12,1,Excel;Tableau,I'm able to choose my own tools.,Dashboard;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Treemap,Executives,Expert,Hourly,Analysis;Summarization;Learning;Research,Consultative,,Data constraints ,Data democracy ,,The complexity ,Data democracy ,,,More,,,,,
3/4/2017 15:49:36,1,Bachelors,Mostly Self-Taught,Intended to work in data visualization,Not a data visualization professional yet,Student Worker,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Intern,Analysis;Exploration,Embedded in another team,Business Intelligence Tools,No,Research;IT,20,60,10,0,10,Excel;ArcGIS;Other GIS;SAS Visual Analytics,We have a set list of tools we're expected to use for data visualization.,Dashboard;Presentations,Line Chart;Bar Chart;Infographics,Analysts,Expert,Weekly,Learning;Research,Consultative,Fixed set of tools- not the best tools for the job,Fixed set of tools- not the best tools for the job,More data visualization,MORE OF IT- larger selection of tools,They don't see the business value of it,Larger selection of tools. My employer limits my selection.,More advocacy of open source,,Much more,male,25 or younger,USA or Canada,white,Public sector
3/4/2017 16:01:27,7,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Urban planner,Data Visualization Role has Lower compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Communication;Mapping,Embedded in another team,GIS,No,Engineering,50,20,0,20,10,Illustrator;Excel;Tableau;Mapbox;ArcGIS,I'm able to choose my own tools.,Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Infographics;Choropleth Map;Raster Map;3D Chart,General Public;Engineers,Moderate,Weekly,Analysis;Learning;Research,Consultative,Creative freedom,Want to do it my way vs my bosses way,Get more $,Have more tools,,,,,,male,26 - 35,USA or Canada,white,Private sector
3/4/2017 16:31:24,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Data Scientist,Data Visualization Role has same compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Marketing;Research,10,0,70,0,20,Excel;Tableau;D3;ggplot;Other R,I'm able to choose my own tools.,Embedded in a tool;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Infographics,General Public;Analysts,Intro;Moderate,Daily,Analysis;Summarization;Research,Consultative,Tight deadlines inhibit taking time to learn new tools that could be better in the long-run.,Because non-technical consumers are main end-users of our vizzes- we often have to whittle a complex story down into a simple one that can be understood as a visualization with no more than 2-3 dimensions. The removal of nuance is frustrating becomes it limits visualization innovation.,,I would build in time to experiment with new visualization technologies and new ideas in the field rather than using the same standard suite of vizzes and technologies.,The output of our work is quite brief and simple by intention- but the effort it takes to cut down details and spurious facets of the data can be missed by people not directly involved in data work.,,,,More,female,25 or younger,USA or Canada,white,Private sector
3/4/2017 16:53:23,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Associate Art Director infographics,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,General charting libraries;Completely custom,No,Design;Research,75,5,5,10,0,Illustrator;Excel;D3;Highcharts;Other Javascript;Angular,I'm able to choose my own tools.,Scrollytelling;Static Web Page,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Choropleth Map,General Public,Intro;Moderate;Expert,Monthly,Entertainment;Analysis;Learning,Consultative,Turnaround time,,,More D3,It's not magic- I'm not a wizard. Just did the same things enough times until I got good at them,,,,Much more,male,36 - 45,USA or Canada,white,Public sector
3/4/2017 16:54:02,4,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Research,5,5,45,0,45,Excel;Other BI;D3;ggplot;Pandas,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Email,Line Chart;Bar Chart,General Public;Analysts;Medical Professionals;Product Managers;Executives,Moderate,Daily,Analysis;Summarization;Learning,Consultative,,,,,,,,,,male,26 - 35,USA or Canada,white,Private sector
3/4/2017 17:16:15,5,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,Editor,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Editorial,Both,Completely custom,Yes,Design;Engineering,30,0,10,20,10,D3;Mapbox;Other Javascript;QGIS,I'm able to choose my own tools.,Scrollytelling;Static Web Page,Line Chart;Bar Chart;Choropleth Map;Raster Map,General Public,Intro,Weekly,Entertainment,Subordinate,,,,,,,,,More,male,26 - 35,USA or Canada,,Private sector
3/4/2017 19:54:50,9,PhD,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Research Scientist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication,Embedded in another team,Business Intelligence Tools;ggplot2/Pandas Charts,No,Marketing,25,0,40,10,25,Illustrator;ggplot;Other R,I'm able to choose my own tools.,Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart;Infographics;Flow Diagram,Analysts;Scientists;Product Managers;Project Managers;Executives,Intro;Moderate;Expert,Weekly,Analysis;Summarization;Learning,Consultative,Access to technology and data. ,Time to do visualization ,Access to data and appropriate technology. ,Training in JavaScript ,How much time it takes to create a dashboard in R. ,Openness to new methods. ,Best practices. ,,More,female,26 - 35,USA or Canada,white,Private sector
3/4/2017 21:40:41,10,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,VP of Data Analytics & Visualization,Data Visualization Role has higher compensation,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration;Sales,Separate data visualization team,Business Intelligence Tools;Completely custom,Yes,Marketing;Analytics ,40,30,15,10,5,Excel;Tableau;Power BI;D3;Leaflet;Mapbox;ArcGIS;QGIS;Visual force,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Scrollytelling;Presentations;Email;Salesforce community portal,Line Chart;Bar Chart;Pie Chart;Infographics;Treemap;Choropleth Map;Donut;sunburst,Analysts;Executives;Agencies;clients,Intro;Moderate;Expert,Hourly,Analysis;Learning;Research,Consultative,Different data viz reqs,Every software solution has its problems. There's no one stop shop,More time for R&D,Automate,Level of effort- complexities,Better software ,Future of open source- predictive,,Same,male,36 - 45,USA or Canada,white,Public sector
3/4/2017 22:24:49,3,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Technical Manager,Don't Know/Prefer Not to Say,Data visualization is an important secondary part of my job but not the focus,Data visualization is only part of my job,Full-time,Summary/Overview;Communication,Embedded in another team,,No,Research,20,0,0,10,10,Excel;Tableau;ggplot;Other R;QGIS,I'm able to choose my own tools.,Documents;Presentations;Email,Line Chart;Bar Chart;Network Diagram;Choropleth Map;Flow Diagram,General Public;Project Managers,Intro,Monthly,Analysis;Summarization;Learning;Research,Consultative,,,,,,,,,Much more,female,26 - 35,,,Private sector
3/4/2017 22:40:49,2,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,Python Software Developer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Exploration,Embedded in another team,ggplot2/Pandas Charts;General charting libraries;Completely custom,No,Design;Engineering;Research,20,40,70,1,50,Excel;D3;Other Javascript;Pandas;Other Python,I'm able to choose my own tools.,Dashboard;Scrollytelling;Documents;Presentations,,Analysts;Engineers;Scientists,Moderate,Weekly,Analysis;Research,Collaborative,Visualizing the results.,Abstraction - presenting the bigger picture in a simple way. Representing the meaning of all the hard work I've done into a singe and simple image that helps others understand in a look.,Ideally the purpose :) To be able to work for a greater good purpose. Other than that- not much. Maybe some tools.,The tools. I much prefer JavaScript charting.,"That it is not easy. That much work and thought and effort was put into one ""simple"" chart.",,More help in how to think about abstracting the results of your very much detailed work.,,More,female,26 - 35,Europe,white,Private sector
3/5/2017 0:37:24,2,Masters,Mostly Self-Taught,Intended to work in data visualization,Yes,Junior Scientist ,Data Visualization Role has same compensation,Data visualization is the focus of my job,Hired to do data visualization,Full-time,Analysis;Summary/Overview;Exploration,Separate data visualization team,Completely custom,No,Research;IT,50,10,0,20,20,D3;WebGL;Other Javascript;Java;Three.js,I'm able to choose my own tools.,Embedded in a tool;Presentations,Line Chart;Bar Chart;Pie Chart;Treemap;Dendrogram;Network Diagram;3D Chart;VR/AR Charting,Scientists,Moderate,Monthly,Analysis;Summarization;Research,Consultative,,It's hard to find the data in my area of research.,,More VR- less 2D,,Good grant,,,More,male,25 or younger,Europe,white,
3/5/2017 1:37:26,1,Technical School,Mostly Self-Taught,Intended to work in data visualization,Yes,Information Analyst,Don't Know/Prefer Not to Say,Data visualization is the focus of my job,Data visualization is only part of my job,Full-time,Exploration,Both,Business Intelligence Tools,No,Engineering;IT,20,20,20,20,20,Tableau,We have a set list of tools we're expected to use for data visualization.,Dashboard,Line Chart;Bar Chart;Pie Chart;Infographics,Engineers;Project Managers;Executives,Expert,Monthly,Analysis;Summarization,Consultative,current learn,time,,integrated toolsets,,integration into the whole company,understand the data before visualisation,,More,male,36 - 45,Oceania,white,Private sector
3/5/2017 4:30:03,3,Masters,Equal Parts School and Self-Taught,Ended up doing data visualization as a requirement of the job,No,Data Scientist,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Machine Learning;Summary/Overview;Communication;Marketing;Exploration,Both,Business Intelligence Tools;ggplot2/Pandas Charts;Completely custom,No,Marketing;IT,25,60,15,0,50,Tableau;Pandas;Other Python,I'm able to choose my own tools.,Embedded in a tool;Dashboard;Static Web Page;Documents;Presentations,Line Chart;Bar Chart,General Public;Analysts;Product Managers;Executives,Intro;Moderate,Daily,Summarization,Consultative,No one understands data science- but they pretend to. ,"People love data tables because they want to ""see all the data"".",I would want a Director of Data Science instead of reporting to a random IT manager.,No pie charts ever ,Data visualization need to tell a story- not just plot a bunch of numbers ,More data literacy in the company,Storytelling advice ,,Same,male,25 or younger,USA or Canada,white,Private sector
3/5/2017 5:24:03,1,Bachelors,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Yes,,Data Visualization Role has Lower compensation,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Marketing,Embedded in another team,General charting libraries,No,Engineering,10,30,0,0,30,D3;Java;C3,I'm able to choose my own tools.,Embedded in a tool;Dashboard,Line Chart;Bar Chart;Pie Chart,Analysts;Marketing team,Moderate,Daily,Analysis;Summarization,Collaborative,I do not learn a lot from my colleague,Have not implemented more dynamic for query and display the data,May be trying some new technology,Apply marchine learning in data visualization,,I need the leader who have experiences and can help me,,,More,male,25 or younger,Asia,,Private sector
3/5/2017 6:34:40,10,Bachelors,Equal Parts School and Self-Taught,Intended to work in data visualization,No,,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Consultant,,,,,,5,70,5,10,10,Excel;Power BI;Other R,I'm able to choose my own tools.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Infographics;Treemap;Network Diagram;Graphs,General Public;Project Managers;Executives,Intro;Moderate,Quarterly,Analysis;Summarization;Research,Consultative,No common language to tell visual stories,,,,,,,,More,male,46 - 55,Latin America,hispanic,Private sector
3/5/2017 7:03:44,4,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,No,,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Marketing;Exploration,Both,Business Intelligence Tools,No,,,,,,,Excel;Qlik,I'm able to choose my own tools.,Dashboard;Documents;Presentations,Line Chart;Bar Chart;Infographics,General Public;Analysts;Executives,Intro,Quarterly,Summarization,Subordinate,,,,,,,,,More,,,,,Public sector
3/5/2017 7:09:41,4,Masters,Mostly Self-Taught,Intended to work in data visualization,No,Senior Software Developer,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Analysis;Summary/Overview;Communication;Exploration,Embedded in another team,Business Intelligence Tools;Completely custom,No,Engineering,5,50,5,5,20,Illustrator;Excel;Tableau;D3;Other Javascript;Other Python;Java;React,We have a set list of tools we're expected to use for data visualization.,Embedded in a tool;Dashboard;Static Web Page,,Analysts,Moderate,Daily,Entertainment;Analysis;Summarization;Learning;Research,Collaborative,,,,,,,,,Much more,male,26 - 35,USA or Canada,asian,Private sector
3/5/2017 11:10:52,1,Masters,Mostly Self-Taught,Ended up doing data visualization as a requirement of the job,Not a data visualization professional yet,Fellow ,Don't Know/Prefer Not to Say,Data visualization is one of several other things I do in my job but not a primary or secondary part of my role,Data visualization is only part of my job,Full-time,Communication,Embedded in another team,Business Intelligence Tools,No,Research,30,10,10,5,20,Illustrator;Excel;Tableau,I'm able to choose my own tools.,Embedded in a tool;Scrollytelling;Documents;Presentations;Email,Line Chart;Bar Chart;Pie Chart;Flow Diagram,General Public;Analysts;Project Managers;Executives,Intro;Moderate,Weekly,Analysis;Summarization;Learning;Research,Consultative,,,,,,,,,More,female,26 - 35,MIddle East & Africa,black,Not-for-profit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment