rsm.steepest (object, dist = seq(0, 5, by = .5), descent = FALSE)
canonical.path(object, which = ifelse(descent, length(object$b), 1),
dist = seq(-5, 5, by = 0.5), descent = FALSE)rsm object to be analyzed.steepest, these must all be non-negative; in canonical.path,
you may want both positive and negative values, which specify opposite directions froTRUE to obtain the path of steepest descent, or
FALSE to obtain the path of steepest ascent. This value is ignored in
canonical.path if which is specified.data.frame of points along the path of steepest ascent (or descent).
For steepest, this path originates from the center of the experiment; for canonical.path,
it starts at the stationary point.
If coding information is available, the data frame also includes the uncoded values of the variables.
For first-order response surfaces, only steepest may be used; the path is linear in that case.
For second-order surfaces, steepest uses ridge analysis, and the path may be curved.steepest returns the linear path of steepest ascent for first-order models, or a path obtained by ridge analysis (see Draper 1963) for second-order models. In either case, the path begins at the origin.
canonical.path applies only to second-order models (at least a TWI term present). It determines a linear path along one of the canonical variables, originating at the stationary point (not the origin). We need to specify which canonical variable to use.
The eigenvalues obtained in the canaonical analysis are always in decreasing order, so the first canonical direction will be the path of steepest ascent (or slowest descent, if all eigenvalues are negative) from the stationary point, and the last one will be the path of steepest descent (or slowest ascent, if all eigenvalues are positive). These are the defaults for which when descent=FALSE and descent=TRUE respectively.
With either function, the path in uncoded units depends on how the data are coded. Accordingly, it is important to code the predictor variables appropriately before fitting the response-surface model. See coded.data and its relatives for more information.rsm, coded.datalibrary(rsm)
heli.rsm = rsm (ave ~ block + SO(x1, x2, x3, x4), data = heli)
steepest(heli.rsm)
canonical.path(heli.rsm)Run the code above in your browser using DataLab