Function for 3D plotting the effect of changing values of two inputs on one output.
ciu.plot.3D(
ciu,
instance,
ind.inputs,
ind.output,
in.min.max.limits = NULL,
n.points = 40,
main = NULL,
xlab = NULL,
ylab = NULL,
zlab = NULL,
zlim = NULL,
...
)
"void", or whatever happens to be result of last instruction.
ciu
object as created with ciu function (not to be confused
with CIU
object as created by ciu.new).
Input values for the instance to explain. Should be a
data.frame even though a vector
or matrix
might work too if input
names and other needed metadata can be deduced from the dataset or other
parameters given to ciu.new
.
Indices of input features to plot.
Index of output to plot.
data.frame or matrix with one row per output and two columns, where the first column indicates the minimal value and the second column the maximal value for that output. ONLY NEEDED HERE IF not given as parameter to ciu.new or if the limits are different for this specific instance than the default ones.
Number of x/y-axis points to use.
main and sub title, as for title
.
titles for the axes. N.B. These must be character strings; expressions are not accepted. Numbers will be coerced to character strings.
titles for the axes. N.B. These must be character strings; expressions are not accepted. Numbers will be coerced to character strings.
titles for the axes. N.B. These must be character strings; expressions are not accepted. Numbers will be coerced to character strings.
x-, y- and z-limits. These should be chosen to cover the range of values of the surface: see ‘Details’.
additional graphical parameters (see par
).
Kary Främling