I have a dataframe that looks like the one attached, with 6 columns and 1000 rows (tab separated). The column headings (0,30,60,120,240 and 360) are a time series (with 0 re
Did you try just using melt?
library(reshape2) ggplot(melt(df), aes(variable, value)) + geom_boxplot()