I know how to create a graph using data from 1 column, but how do I create a line graph from a df containing multiple columns, having one line per column?
looking like: x-axis = age and y = n
sample dataset:
DF <- data.frame(age = c('0-20', '21-30', '31-40'), q1_10 = c(3,2,1), q1_11 = c(4,5,6), q1_12 = c(5,3,1))
ty!