plot two columns together as separate ggplot
ggplot(df, aes(x = date)) + geom_line(aes(y = col1), colour="blue") + geom_line(aes(y = col2), colour = "grey")