https://github.com/cran/lattice
Raw File
Tip revision: 59526248413e29018fb2cd298ee7b9ef9db7324f authored by Deepayan Sarkar on 14 February 2008, 00:00:00 UTC
version 0.17-6
Tip revision: 5952624
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