https://github.com/cran/lattice
Raw File
Tip revision: c976011ee6160f82e7f49a7966407a7077f8f56a authored by Deepayan Sarkar on 08 October 2010, 00:00:00 UTC
version 0.19-13
Tip revision: c976011
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