Open kjm24 opened 7 years ago
I found this same issue, where arguments are put in a different order and are marked as incorrect when they should be accepted, with Lesson 2:
| Type abline(v = median(ppm), col = "magenta", lwd = 4) at the command
| prompt.
> abline(v = median(ppm), lwd = 4, col = "magenta")
| You almost had it, but not quite. Try again. Or, type info() for more
| options.
| Type abline(v = median(ppm), col = "magenta", lwd = 4) at the command
| prompt.
> abline(v = median(ppm), col = "magenta", lwd = 4)
| Excellent job!
At 21% of the lesson, the text asks: | Now rerun xyplot with the formula Ozone~Wind as the first argument | and the second argument data set equal to airquality (use the up | arrow to save typing). This time add the arguments col set equal | to "red", pch set equal to 8, and main set equal to "Big Apple | Data".
I entered:
Which corresponds with the order suggested in the text and produces the desired plot
But the program called it incorrect:
| Give it another try. Or, type info() for more options.
| Type xyplot(Ozone ~ Wind, data = airquality, pch=8, col="red", | main="Big Apple Data") at the command prompt.
Both forms should be accepted