Make a function that transforms the data. This is for conveniently making a function that calls transform on the data frame, with the arguments provided. See examples.
dl.trans <- structure(function # Direct label data transform ### Make a function that transforms the data. This is for conveniently ### making a function that calls transform on the data frame, with the ### arguments provided. See examples. (... ### Arguments to pass to transform. ){ L <- as.list(match.call())[-1] pf <- function(d,...)do.call("transform",c(list(d),L)) pf ### A Positioning Function. },ex=function(){ complicated <- list(dl.trans(x=x+10), gapply.fun(d[-2,]), rot=c(30,180)) library(lattice) direct.label(dotplot(VADeaths,type="o"),complicated,TRUE) })
Please contact Toby Dylan Hocking if you are using directlabels or have ideas to contribute, thanks! |
Documentation website generated from source code version 2021.2.24 (git revision bb6db07 Mon, 14 Jun 2021 22:38:45 +0530) using inlinedocs. |
validate |