I have a dataframe with one row, i'd like to show it when the horizontal axis is of type datetime. for some reason when I have a single dot, there are no ticks on the horizontal axis.
table_hr_tags_per_bin <- data.frame(matrix(c("2018-11-21 12:40:35", "25"),nrow = 1,ncol = 2))
colnames(table_hr_tags_per_bin) <-c('StartTimeStamp', 'cars')
plot_conf = ggplot() +
  geom_point(data = table_hr_tags_per_bin, aes_string(x='StartTimeStamp', y= "cars"),colour = "red", size=3) +
  labs(subtitle="plot_name", 
       y="y_axis_name", 
       x="Time", 
       title="my mitle", 
       caption = "") +
  theme(axis.text.x = element_text(angle = 80, hjust = 1)) +
  scale_x_datetime(date_breaks  = paste0(4," sec"), label=function(x) substr(x,12,19))+ 
  scale_y_continuous(breaks=waiver())
plot(plot_conf)
The problematic output is shown below:
Any suggestion would be helpful!

 
    