Skip to content
Prev 21018 / 63424 Next

do.call and hist

Try

x <- 1:10
do.call(hist, list(quote(x)))

or

do.call(hist, list(x = 1:10, xlab = "x"))
On 6/12/06, Florian Hahne <f.hahne at dkfz-heidelberg.de> wrote: