I am trying to plot each point on a geom_histogram() with titles beneath each line. I want it to look like this:
but my graph look this in R:
This is my current code:
row.names(east) <- c("Daytona Beach, Fl","Palm Bay, FL","Mytrle Beach, SC","Folly BEach,SC","Bethel Beach, VA","Sandy Hook,NJ","Pleasure Bay, MA","Wingaersheek Beach, MA","Odiorne Point, NH","Bar Harbour, ME")
ggplot(east,aes(east))+
geom_histogram()
I have already labelled everything.