load(url("http://academic.uprm.edu/wrolke/Resma3/Resma3.RData"))

and not

load("C:/myfolder/Resma3.RData"))

it is ok to have that while you are working on the assignment, but you have to change it back before you submit it.

```{r error=TRUE}

so for example say the problem statement is: draw the following graph:

attach(wine)
plot(Heart.Disease.Deaths, Wine.Consumption)

your own example might be:

Amount <- runif(20, 1, 6)
Dead <- 100*Amount + runif(20, 0, 100)
plot(Amount, Dead)