p1 <- ggplot(impeachment_clean) +
geom_histogram(aes(x = Rep_Numeric, fill = "Republican"), position = "identity", alpha = 1, binwidth = 2) +
geom_histogram(aes(x = Dem_Numeric, fill = "Democrat"), position = "identity", alpha = 1, binwidth = 2) +
geom_histogram(aes(x = Ind_Numeric, fill = "Independent"), , position = "identity", alpha = 1, binwidth = 2) +
labs(x = "Percent of Participants in Favor of Impeaching Trump", y = "Number of Polls Conducted", title = "Poll Respondants in favor of Impeaching President Trump", caption = " Authors Aaron Bycoffe, Ella Koeze, Nathaniel Rakich") +
scale_fill_manual (name = "Party",
values = c("Republican" = "maroon","Democrat" = "navy", "Independent" = "grey")) +
theme_minimal()
p1