

   AAdddd GGrriidd ttoo aa PPlloott

        grid(nx = 3, ny = 3, col = "lightgray", lty = "dotted")

   DDeessccrriippttiioonn::

        `grid' adds an `nx' by `ny' rectangular grid to an
        existing plot, using lines of type `lty' and color
        `col'.

   SSeeee AAllssoo::

        `plot', `lines', `points'.

   EExxaammpplleess::

        data(iris)
        plot(iris$Sepal.L, iris$Sepal.W, col = rep(1:3, rep(50, 3)),
             xlim = c(4, 8), ylim = c(2, 4.5))
        grid(4, 5, lty = "solid")

