https://github.com/cran/lattice
Raw File
Tip revision: 6339fef780f6a59618482834c9e13038c32f7e4c authored by Deepayan Sarkar on 20 November 2008, 00:00:00 UTC
version 0.17-17
Tip revision: 6339fef
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