I am trying to plot "breaks" counts that occur on a specific day over time. But get issues since the "Time" variable is in a date:time format and the graph fails to generate.
ggplot(df, aes(y = `Breaks`, x = `Date`)) +
geom_histogram(bins = 100, binwidth = 1, colour = "white", fill = "#1380A1")
example data:
structure(list(Date = structure(c(1544107050, 1544100120, 1540557866,
1540558168, 1544100123, 1544100135, 1545299546, 1545299518, 1545822865,
1545822864, 1545822866, 1545822875, 1546016246, 1546016252, 1546016263
), class = c("POSIXct", "POSIXt"), tzone = "UTC"), Breaks = c(NA,
NA, 2, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 1, NA)), row.names = c(NA,
15L), class = "data.frame")