I have a comma separated file named foo.csv containing the following data:
foo.csv
scale, serial, spawn, for, worker 5, 0.000178, 0.000288, 0.000292, 0.0003
Try this:
data <- read.csv('foo.csv') plot(serial ~ scale, data) dev.new() plot(spawn ~ scale, data) dev.new() plot(for. ~ scale, data) dev.new() plot(worker ~ scale, data)