I have been reading the Hastie and Tibshirani book again lately, and I noticed in Chapter 9 that the mention the MARS algorithm: Multivariate Adaptive Regression Splines, which is a nonparametric method for fitting a curve to some data.
My question was, how well does this technique work on high-dimensional data? If I remember correctly, one of the key arguments against nonparametric or local regression models was that they did not work very well on high dimensional problems. In high dimensions, the points are already so far away, that you end up creating very wide bins for the data, and this defeats the purpose of local regression or nonparametric methods. This problem was one of the reasons why Tree based methods became so popular.
However, the Hastie and Tibshirani book., Elements of Statistical Learning introduces the MARS algorithm in the same chapter as Tree based methods. So I can't tell if MARS overcomes the problem with dimension that other similar methods have. Does anyone know the answer?
Note that I checked Wikipedia and the HT book itself, but they don't address this question.