viewof heatmap = vega({
data: { values: data },
width: 700,
height: 500,
title: 'Project Disciplines and Researcher\'s Training in the Field',
mark: 'rect',
selection: { highlight: {type: "single"}} ,
encoding: {
x: { field: 'discipline', type: 'o' , title:'Humanities discipline'},
y: { field: 'expertise', type: 'o' ,title:'Training',sort:["Doctoral degree","Master's degree","Experiential or informal study","Field of study within degree program","Undergraduate major","Undergraduate minor or certificate","Other"]},
color: {
field: 'value',
type: 'q',
scale: { scheme: selection, domain: [0, 32] }
},
}
});