https://github.com/cran/lattice
Raw File
Tip revision: dac0edabeffe6ac2508a9d1996010b002431c923 authored by Deepayan Sarkar on 05 April 2023, 16:43:19 UTC
version 0.21-8
Tip revision: dac0eda
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