Good day,
I am a new user and am trying to plot some data and the dates all run together on the x-axis. My data is in a table format.
I am using the following code
ggplot(dmr,aes(x = date, y = bod)) +
geom_point() +
labs(x = "Date",y = "BOD(mg/L)",
theme(axis.text.x=element_text(angle=45,hjust=1)),
title = "City of XXXX")
I can't seem to figure out why the dates won't display at the 45 degree angle?
Many thanks!!
Marty