it_out_of_sd = {
let all_rows = [];
it_classifications.forEach((d) => {
positions[d][data_last_year].male_outside_of_one_sd.forEach((m) =>
all_rows.push({
position: d,
gender: "m",
salary: m,
average: positions[d][data_last_year].average_salary
})
);
positions[d][data_last_year].female_outside_of_one_sd.forEach((f) =>
all_rows.push({
position: d,
gender: "f",
salary: f,
average: positions[d][data_last_year].average_salary
})
);
});
return all_rows;
}