One important use of the British Columbia Labour Market Outlook is to encourage prospective students to choose fields of study that have a clear/narrow path to high opportunity occupations. Consider optometry, where 91% of people with a degree in optometry work as optometrists. For such narrow paths the LMO can provide positive guidance regarding field of study.
However there are many occupations that do not have such a clear linkage with education, which makes education a risky investment. Most people are risk averse1, and are willing to sacrifice some expected return in exchange for greater certainty in outcomes. Here we focus on the relative risk of ending up in a low-skill, low-salary (LSLS) occupation.
We define LSLS occupations to be those that have a median salary in the bottom 20%, and an average ONET skill score in the bottom 20%, resulting in 47 LSLS occupations.
The relative risk of a given education is defined as:
\[ \frac{prob[LSLS~occupation~|~this~education]}{prob[LSLS~occupation~|~all~other~educations]}\] Note that a relative risk greater/less than 1 indicates that for this choice of education you are more/less likely to end up in a LSLS occupation, relative to all other occupations. If relative risk was exactly 1 then you would be no more or less likely than with any other choice of education.
All the relative risks of ending up in a low salary low skill occupation, by education
College, CEGEP or other non-university certificate or diploma 4
Show the code
nested[[4]][[1]]
University certificate or diploma below bachelor level
Show the code
nested[[4]][[2]]
Bachelor’s degree
Show the code
nested[[4]][[3]]
University certificate or diploma above bachelor level
Show the code
nested[[4]][[4]]
Master’s degree
Show the code
nested[[4]][[5]]
Earned doctorate 5
Show the code
nested[[4]][[6]]
Apprenticeship or trades certificate or diploma
Show the code
nested[[4]][[7]]
Degree in medicine, dentistry, veterinary medicine or optometry
Show the code
nested[[4]][[8]]
Top and bottom 20 fields of study
College, CEGEP or other non-university certificate or diploma 4
Show the code
nested[[3]][[1]]
University certificate or diploma below bachelor level
Show the code
nested[[3]][[2]]
Bachelor’s degree
Show the code
nested[[3]][[3]]
University certificate or diploma above bachelor level
Show the code
nested[[3]][[4]]
Master’s degree
Show the code
nested[[3]][[5]]
Earned doctorate 5
Show the code
nested[[3]][[6]]
Apprenticeship or trades certificate or diploma
Show the code
nested[[3]][[7]]
Degree in medicine, dentistry, veterinary medicine or optometry
Show the code
nested[[3]][[8]]
Risk of LSLS occupation by highest attainment
For fields of study that have 6 or more levels of highest attainment, the risk of LSLS occupation decreasing in highest attainment.
Show the code
lots_levels <- relative_risk|>mutate(highest=factor(highest, ordered =TRUE,levels =c("Apprenticeship or trades certificate or diploma","College, CEGEP or other non-university certificate or diploma 4","University certificate or diploma below bachelor level","Bachelor's degree","University certificate or diploma above bachelor level","Master's degree","Earned doctorate 5")))|>group_by(CIP)|>mutate(num_highest=n())|>filter(num_highest>5)plt <-ggplot(lots_levels, aes(relative_risk, fct_reorder(CIP, relative_risk, sum), colour=highest, text=CIP))+geom_vline(xintercept =1)+scale_x_continuous(trans=scales::pseudo_log_trans(base =10))+geom_point(size=2)+scale_color_viridis_d()+theme_minimal()+labs(x="Relative Risk of LSLS occupation",y=NULL,colour=NULL )+theme(legend.position="bottom")+guides(colour=guide_legend(nrow=4,byrow=TRUE))plt
Sociology and anthropology vs. Computer and information sciences and support services, other
One might be surprised that Sociology and anthropology made it into the lowest risk Bachelor’s degrees, when Computer and information sciences and support services, other were in the highest risk group. Lets take a closer look:
Show the code
plt <-ggplot(joined2, aes(average_skill, median_salary, size = value, colour=Education, text=paste0("In 2021 there were ", value," people working as \n", Description," with education \n", Education)))+geom_hline(yintercept =max(lsls_occ$median_salary))+geom_vline(xintercept =max(lsls_occ$average_skill))+geom_point(alpha=.5)+scale_y_continuous(labels = scales::dollar)+labs(x="Average Skill",y="Median Wage",size=NULL,colour=NULL)ggplotly(plt, tooltip ="text")
With relative risk, most of the differences are due to differences in the numerator: \(prob[LSLS~|~this~education]\), as the denominator is (roughly) constant at \(prob[LSLS~|~all~other~educations]~\approx~.1\). In the above plot, the LSLS occupations are in the southwest quadrant. Visual inspection clearly indicates that there are far fewer LSLS for Sociology and Anthropology than for Computer and information sciences and support services, other. However, there are also fewer in the other 3 quadrants so we probably need to look at the numbers:
The LMO encourages prospective students to follow educational paths that lead clearly/narrowly to high opportunity occupations. In contrast, here we are warning prospective students about fields of study with a higher risk of ending up in LSLS occupations. This information is critically important to risk averse individuals.
Note that these education investment decisions are also important from a social perspective: as a society we are better off if we can curtail low or negative return education investments.