I have a dataframe/tibble which looks likes:
z <- tibble(Time = as.POSIXct(c(
'2020-01-06 00:22:15',
'2020-01-06 00:45:16',
'2020-01-06 00:46:37',
'2020-01-06 01:29:55')),
Value = c(0,1,0,1))
and I want to plot something like bar chart using time series and value data Please see attachment as I can't add inline images yet.