In R, you can plot multiple y variables with two lines on one axis like this:
plot(x, y1, type="l", col="blue")     # First line
lines(x, y2, col="red")              # Second line on same axis
👉 Use plot() for the first line, then lines() to add more.
check this:https://www.nike.com/