Vertical Time Line

Is it possible to plot a vertical timeseries data like a vertical milestone chart something as in the below link http://benalexkeen.com/creating-a-timeline-graphic-using-r-and-ggplot2/.

Thank you in advance.

@raja26 you could for example use a bar chart with thin bars (see https://plot.ly/python/bar-charts). Bear in mind that for datetime axis the width of bars has to be given in ms, so you have to compute the right width. As in the tutorial you refer to, you can compute random heights for the bar so that the text labels do not overlap.

Thank you @Emmanuelle. Let me give a try.