# Creates a standard scatterplot called "multivariable graph", sets the data to the # research_funding rates, the x to the men success rate, the y to the women success# rate, and the color to the majormultivariable_graph <-ggplot(research_funding_rates, aes(x = success_rates_men, y = success_rates_women, color = discipline))+# Creates labels for the title, datasource, color legend, and axiseslabs(title ="How Men and Women Success Rates compare",caption ="Source: dslabs",color ="College Major",x ="Men Success Rate",y ="Women Success Rate")+# Plots the points at the size 3geom_point(size =3)+# Changes the themetheme_bw()multivariable_graph
The data-set I used for this assignment was the, “research_funding_rates” data-set. This data-set compared the applications, awards, and success rate between men and women for different college majors. The purpose of the data-set was to find inequalities between the two genders, rooted in sexism. For this project, I decided to go with a graph comparing the success rates between men and women categorized by their college major. I set the axis’s to the success rates, with men on the x-axis and women on the y-axis. This was to directly compared the two different genders. For the multivariable aspect, I set the color for the plots to be based on the college major that both genders applied in. This allowed for more understanding into biases for select majors. I also changed the size of the plots, to allow for the comparisons to be clearer on the graph.