https://github.com/cran/lattice
Raw File
Tip revision: 9938a6d4be2fb784201e5779370e2580b20061ba authored by Deepayan Sarkar on 17 January 2010, 00:00:00 UTC
version 0.18-1
Tip revision: 9938a6d
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