I'm fairly new to R and am trying to learn how to do some plotting with it. I managed to read in multiple csv files I have from some code analysis (7 of them), and melt them together as shown in the picture, but I'm not sure what I need to do to plot it correctly. The graph is giving me one combined line instead of multiple. How do I fix this? The line I ran to plot the graph is shown in the image, but in case it's too small I ran ggplot(melted, aes(data_size, time_ms, colour=L1)) + geom_line()
Thanks in advance!

group = L1as aesthetic, or make it a discrete variable withcolour = as.factor(L1)