How to make plot show the dates in the x-axis, and not the months?

Hi @Aurora99, remember put a reproducible example of data, like this:

Other way is paste the result of

dput(head(youdataframe,20)) # Put the name of you data frame. Is for get the 20 first rows a columns. 
fechas <- as.Date(c("2023-04-23", "2023-05-15", "2023-06-08", "2023-04-05", "2023-06-20"))

#  data frame
df <- data.frame(Fecha = fechas)

# Extract month of a date column
df$Mes <- format(df$Fecha, "%b") # names of month

# plot
ggplot(df, aes(x = Mes)) +
  geom_bar() +
  labs(title = "Frecuencia month",
       x = "month",
       y = "Frecuency")