I Just need to build a graph with a median and its 95% confidence interval and I just can't do it. Here is my code where I set up the data.
library(ggplot2)
setwd('C:/Documents and Settings/usuario/Mis documentos/Martin/Midazolam/')
dat <- read.table (file='sim008', skip=1, header=T)
ggplot (dat) +
geom_point (aes(x=TIME, y=IPRED), colour='darkblue') +
xlab('TIME') +
ylab('IPRED')