I keep getting exponents on the y axis and on top of the bar. How do I change it so it stops showing up as exponents. I am also trying to get the y axis to go up to 8 million.
obama <- data.frame(date=c("March 27", "March 31"),
enrollment=c(6000000, 7066000))
ggplot(data = obama, aes(x= date, y=enrollment))+
geom_bar(stat = "identity")+
ggtitle("Obamacare Enrollment")+
theme_classic()+
geom_text(aes(label=enrollment), vjust=-0.3, size=3.5