https://github.com/cran/lattice
Raw File
Tip revision: 4f464d8811c91886446d77e2df84cc40589678c8 authored by Deepayan Sarkar on 27 March 2007, 00:00:00 UTC
version 0.15-1
Tip revision: 4f464d8
dotplotscoping.R
postscript("dotplotscoping.ps")
library(lattice)

fubar <- function() {
    k <- 2
    kkk <- 1:10
    names(kkk) <- 1:10
    data = list(x=kkk)
    dotplot(~x^k + rnorm(10), data)
}

fubar()
dev.off()
back to top