https://github.com/cran/lattice
Raw File
Tip revision: 5a4724ae2ed755b0e69356d0fe35a4a75481d01c authored by Deepayan Sarkar on 04 December 2004, 00:00:00 UTC
version 0.10-16
Tip revision: 5a4724a
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, allow = T)
}

fubar()
dev.off()
back to top