After you have collected the data from the various sources, you need to compare the results and identify the gaps between the required and the current skills and competencies of your team. You can use a simple matrix to plot the results, such as:
| Skill/Competency | Required Level | Current Level | Gap |
|------------------|---------------|--------------|-----|
| Market research and analysis | 4 | 3 | -1 |
| Innovation and creativity | 5 | 4 | -1 |
| Project management and execution | 4 | 3 | -1 |
| Communication and collaboration | 5 | 4 | -1 |
| Adaptability and resilience | 4 | 4 | 0 |
You can also use a spider chart or a radar chart to visualize the results, such as:
// Spider chart example
var options = {
scale: {
ticks: {
min: 0,
max: 5
}
}
};
var data = {
labels: ["Market research and analysis", "Innovation and creativity", "Project management and execution", "Communication and collaboration", "Adaptability and resilience"],
datasets: [{
label: "Required Level",
backgroundColor: "rgba(255,99,132,0.2)",
borderColor: "rgba(255,99,132,1)",
pointBackgroundColor: "rgba(255,99,132,1)",
pointBorderColor: "#fff",
pointHoverBackgroundColor: "#fff",
pointHoverBorderColor: "rgba(255,99,132,1)",
data: [4, 5, 4, 5, 4]
}, {
label: "Current Level",
backgroundColor: "rgba(54,162,235,0.2)",
borderColor: "rgba(54,162,235,1)",
pointBackgroundColor: "rgba(54,162,235,1)",
pointBorderColor: "#fff",
pointHoverBackgroundColor: "#fff",
pointHoverBorderColor: "rgba(54,162,235,1)",
data: [3, 4, 3, 4, 4]
}]
};
var ctx = document.getElementById("myChart").getContext("2d");
var myChart = new Chart(ctx, {
type: "radar",
data: data,
options: options
});