https://github.com/cran/lattice
Raw File
Tip revision: 19581ef05a8d0ea3a7ac65e09a234d672ec99e69 authored by Deepayan Sarkar on 15 August 2013, 00:00:00 UTC
version 0.20-21
Tip revision: 19581ef
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