https://github.com/cran/lattice
Raw File
Tip revision: 1db387a24205c64950db75b38caf2f98a5a27bcf authored by Deepayan Sarkar on 02 May 2021, 12:30:02 UTC
version 0.20-44
Tip revision: 1db387a
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