Alternating Conditional Expectations
   HOME

TheInfoList



OR:

Alternating conditional expectations (ACE) is an algorithm to find the optimal transformations between the response variable and predictor variables in regression analysis.Breiman, L. and Friedman, J. H
Estimating optimal transformations for multiple regression and correlation
J. Am. Stat. Assoc., 80(391):580–598, September 1985b.


Introduction

In
statistics Statistics (from German language, German: ''wikt:Statistik#German, Statistik'', "description of a State (polity), state, a country") is the discipline that concerns the collection, organization, analysis, interpretation, and presentation of ...
, nonlinear transformation of variables is commonly used in practice in regression problems. Alternating conditional expectations (ACE) is one of the methods to find those transformations that produce the best fitting
additive model In statistics, an additive model (AM) is a nonparametric regression method. It was suggested by Jerome H. Friedman and Werner Stuetzle (1981) and is an essential part of the ACE algorithm. The ''AM'' uses a one-dimensional smoother to build a rest ...
. Knowledge of such transformations aids in the interpretation and understanding of the relationship between the response and predictors. ACE transform the response variable Y and its predictor variables, X_i to minimize the fraction of variance not explained. The transformation is nonlinear and is obtained from data in an iterative way.


Mathematical description

Let Y,X_1,\dots,X_p be
random variables A random variable (also called random quantity, aleatory variable, or stochastic variable) is a mathematical formalization of a quantity or object which depends on random events. It is a mapping or a function from possible outcomes (e.g., the po ...
. We use X_1,\dots,X_p to predict Y. Suppose \theta(Y),\varphi_1(X_1),\dots,\varphi_p(X_p) are zero-mean functions and with these transformation functions, the fraction of variance of \theta(Y) not explained is : e^2(\theta,\varphi_1,\dots,\varphi_p)=\frac Generally, the optimal transformations that minimize the unexplained part are difficult to compute directly. As an alternative, ACE is an iterative method to calculate the optimal transformations. The procedure of ACE has the following steps: # Hold \phi_1(X_1),\dots,\phi_p(X_p) fixed, minimizing e^2gives \theta_1(Y)=\mathbb\left Y\right/math> # Normalize \theta_1(Y) to unit variance. # For each k, fix other \varphi_i(X_i) and \theta(Y), minimizing e^2 and the solution is:: \tilde_k = \mathbb\left X_k\right/math> # Iterate the above three steps until e^2 is within error tolerance.


Bivariate case

The optimal transformation \theta^*(Y), \varphi^*(X) for p=1 satisfies : \rho^*(X, Y) = \rho^*(\theta^*, \varphi^*) = \max_ \rho(\theta(Y), \varphi(X)) where \rho is Pearson correlation coefficient. \rho^*(X, Y) is known as the maximal correlation between X and Y. It can be used as a general measure of dependence. In the bivariate case, ACE algorithm can also be regarded as a method for estimating the maximal correlation between two variables.


Software implementation

The ACE algorithm was developed in the context of known distributions. In practice, data distributions are seldom known and the conditional expectation should be estimated from data. R language has a package acepack which implements ACE algorithm. The following example shows its usage: library(acepack) TWOPI <- 8 * atan(1) x <- runif(200, 0, TWOPI) y <- exp(sin(x) + rnorm(200)/2) a <- ace(x, y) par(mfrow=c(3,1)) plot(a$y, a$ty) # view the response transformation plot(a$x, a$tx) # view the carrier transformation plot(a$tx, a$ty) # examine the linearity of the fitted model


Discussion

The ACE algorithm provides a fully automated method for estimating optimal transformations in multiple regression. It also provides a method for estimating maximal correlation between random variables. Since the process of iteration usually terminates in a limited number of runs, the time complexity of the algorithm is O(np) where n is the number of samples. The algorithm is reasonably computer efficient. A strong advantage of the ACE procedure is the ability to incorporate variables of quite different type in terms of the set of values they can assume. The transformation functions \theta(y), \varphi_i(x_i) assume values on the real line. Their arguments can, however, assume values on any set. For example, ordered real and unordered categorical variables can be incorporated in the same regression equation. Variables of mixed type are admissible. As a tool for data analysis, the ACE procedure provides graphical output to indicate a need for transformations as well as to guide in their choice. If a particular plot suggests a familiar functional form for a transformation, then the data can be pre-transformed using this functional form and the ACE algorithm can be rerun. As with any regression procedure, a high degree of association between predictor variables can sometimes cause the individual transformation estimates to be highly variable, even though the complete model is reasonably stable. When this is suspected, running the algorithm on randomly selected subsets of the data, or on bootstrap samples can assist in assessing the variability.


References

{{reflist * ''This draft contains quotations fro
Estimating Optimal Transformations For Multiple Regression And Correlation By Leo Breiman And Jerome Freidman. Technical Report No. 9 July 1982
which is in the public domain.'' Nonparametric regression