https://github.com/cran/lattice
Raw File
Tip revision: ef51d0f36e6944390175a4db075e672f997dd74b authored by Deepayan Sarkar on 23 June 2008, 00:00:00 UTC
version 0.17-10
Tip revision: ef51d0f
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