Project Timeline and Priorities

Submitted by dylan on Wed, 2005-12-07 02:10.

Sample R program is as follows:
From: http://addictedtor.free.fr/graphiques/sources/source_74.R

require(plotrix)

Ymd.format <- "%Y/%m/%d"

Ymd <- function(x){ as.POSIXct(strptime(x, format=Ymd.format))}

gantt.info <- list(
  labels     =c("SSC220","PORE Picts","Winter Classes","PINN Field","MS Project"),
  starts     =Ymd(c("2005/10/25","2005/12/08","2006/01/05","2006/01/01","2004/01/25")),
  ends       =Ymd(c("2005/12/14","2005/12/14","2006/03/15","2006/06/01","2007/6/01")),
  priorities =c(1,2,3,4,5))

gantt.chart(gantt.info,main="Things to get done.")

Example Timeline with R
Example