Newbie to R here. Trying to plot this data using the code below, but running into a problem in that the data is being overlapped by each other. Ideally, I would like to see both pieces of data on each bar, but currently, the greater value is dominating. Is there any way to change the opacity bars or solve the issue?
{ggplot(data_income_BA) +
geom_col(aes(x = Degree,
y = Male,),
fill = 'blue',
width = 0.7) +
geom_col(aes(x = Degree,
y = Female),
fill = 'red',
width = 0.7) +
theme_classic() +
ggtitle("Gender Divide",
subtitle = "BA ") +
labs(x = "Degrees",
y = "Male + Female")}