I want to combine these 2 graphs.
I want to see them in the same panel one on each other.
Plot 1 - shows the % of academics from the total job seekers.
Plot 2 - shows the % of woman seekers from the total job seekers. thanks for the help!
# PLOT 1
academic_plot <- ggplot(q1Subset, aes(MONTH, percAcademics)) +
geom_point(color="green") +
stat_smooth(method = "lm", formula = y ~ x, geom = "smooth") +
theme_minimal() + ggtitle("Percentage of Academic Seekers") +
ylab("Academic Seekers (%)") +
academic_plot
# PLOT 2
women_plot <- ggplot(q1Subset, aes(MONTH, percWomen)) +
geom_point(color="red") +
stat_smooth(method = "lm", formula = y ~ x, geom = "smooth") +
theme_minimal() + ggtitle("Percentage of Women Seekers") +
ylab("Women Seekers (%)")
women_plot