I would like to visualize the time frame data of my five projects given below. Currently I am using OpenOffice draw application and manually producing the graph shown below. But I am not satisfied. Could you help me to solve the following. Thank you.
1. How can I produce somewhat similar graphs using R (or excel) with better precision in terms of days?
2. Is there a way for better visualization of the data? If so, please let me know how to produce that using R or Excel.
Project Time
------- ------
A Feb 15 – March 1
B March 15 – June 15
C Feb 1 – March 15
D April 10 – May 15
E March 1 – June 30

ggplot2provides a (reasonably) straightforward way to construct a plot.First you need to get your data into
R. You want your starting and ending dates to be some kind ofDateformat inR(I have usedDate)You will also want to calculate where to put the text, I will use `ddply1 from the plyr package
You want to create
geom_rectHere is an example how to build the plot