Hello! I am back with a new problem. Right now I am working with a dataset, where I wish to show how the concentration in totp (total phosphorus) changes throughout the season. I've imported my dataset from excel into r-studio, and by using this code I've changed one of the columns into date and made a plot:
utlop <- utlop %>%
mutate(Date = lubridate::dmy(Date))
class(utlop$Date)
ggplot(data = utlop)+geom_line(mapping = aes(x=Date, y=Totp))+labs(title = "Total Phosphorus measured at the outlet of x")
This gives me a plot, where everything looks great except I want the x-axis to show the specific dates the samples were taken. Right now it looks like this:
It only shows the months, not the specific dates. I also do not wish to include unnecessary dates, only the dates from the sampling. I will also include a picture of my dataset:
Thanks in advance for the help!