https://github.com/cran/lattice
Raw File
Tip revision: 3000e7e52a06e6e2e812a26883e6a5e7eab81fbf authored by Deepayan Sarkar on 06 October 2003, 00:00:00 UTC
version 0.8-4
Tip revision: 3000e7e
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