I am building an R function to plot a few lines from a data table, I don\'t understand why this is not working?
data = read.table(path, header=TRUE); plot(da
You don't need to load any package of for or apply, just simply use the matplot function built in R... Each column of a table will be a line in your graph (or symbols if you prefer).