Sorry if this is a noobish question, but I don't know what $I$ means in this context:
$$\hat{f}(X) = \sum_{m=1}^5 c_m I\{(X_1, X_2) \in R_m\}$$
I am reading about Decision Trees in The Elements of Statistical Learning.1 $I$ isn't introduced2 so I assume it is a kind of operator on the following set?
Thanks a lot for any explanation!
1 T. Hastie, R. Tibshirani, J. Friedman: The Elements of Statistical Learning, second edition, Springer 2009, p. 305.
2 I haven't worked through the whole book, but at least it isn't introduced in this chapter and there is no general section about notation as far as I see.
It most likely means the function that is one when the statement within the curly brackets is true, and zero otherwise. i.e. The function $f$ defined by $$f(X_1, X_2) = I\{(X_1, X_2) \in R_m\}$$ equals $1$ if $(X_1, X_2) \in R_m$, and equals $0$ otherwise. It is called an indicator function.