https://github.com/cran/lattice
Raw File
Tip revision: 5a5b12ebde5e506146b409b0997f8484238798db authored by Deepayan Sarkar on 09 September 2005, 00:00:00 UTC
version 0.12-7
Tip revision: 5a5b12e
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