require(ggplot2)
## Loading required package: ggplot2

df <- read.csv("/tmp/cache_info.csv")
df$bincid <- as.factor(paste(df$bin, df$cid, sep = "."))

ggplot(df, aes(time, reorder(cid, -time), colour = bootstrap)) + geom_point() + 
    # facet_wrap(~bin, ncol=2, scales='free_y') +
theme_bw(base_size = 16)

plot of chunk unnamed-chunk-1

ggplot(df, aes(bin, fill = bootstrap)) + geom_histogram() + theme_bw(base_size = 16)

plot of chunk unnamed-chunk-2