I don't know how your curves were originally calculated. But assuming you have each represented as its own object (a vector of values or something like that), there are many ways to plot two lines/curves on the same graph. One is using the matplot() function. Another is to plot one line using the plot() function and then add the same line using the lines() function. A third option is to use the ggplot2() package, which I understand has many options for building plots incrementally like this.