https://github.com/cran/lattice
Raw File
Tip revision: 5acc14e6d704a062c0fa9cacbfc12d46a2b45908 authored by Deepayan Sarkar on 10 March 2006, 00:00:00 UTC
version 0.13-5
Tip revision: 5acc14e
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