Displaying 1 result from an estimated 1 matches for "xexp".
Did you mean:
exp
2007 Oct 17
1
passing arguments to functions within functions
...panel.xYplot, scales = NULL, minor.ticks = NULL,
...)
{ # data=df; groups=fac2
require("Hmisc")
require("grid")
require("lattice")
ytext <- as.character(formula[2])
yvname <- formula[[2]]
y <- eval(parse(text = ytext), data)
xexp <- formula[[3]]
if (length(xexp) > 1 && as.character(xexp[[1]]) == "|") {
xvname <- xexp[[2]]
byname <- xexp[[3]]
xtext <- as.character(xexp[2])
bynametext <- as.character(xexp[3])
}
else {xvname <- xe...