When using XGBoost
we need to convert categorical variables into numeric.
Would there be any difference in performance/evaluation metrics between the methods of:
- dummifying your categorical variables
- encoding your categorical variables from e.g. (a,b,c) to (1,2,3)
ALSO:
Would there be any reasons not to go with method 2 by using for example labelencoder
?
Here is a code example of adding One hot encodings columns to a Pandas DataFrame with Categorical columns:
I want to answer this question not just in terms of XGBoost but in terms of any problem dealing with categorical data. While "dummification" creates a very sparse setup, specially if you have multiple categorical columns with different levels, label encoding is often biased as the mathematical representation is not reflective of the relationship between levels.
For Binary Classification problems, a genius yet unexplored approach which is highly leveraged in traditional credit scoring models is to use Weight of Evidence to replace the categorical levels. Basically every categorical level is replaced by the proportion of Goods/ Proportion of Bads.
Can read more about it here.
Python library here.
This method allows you to capture the "levels" under one column and avoid sparsity or induction of bias that would occur through dummifying or encoding.
Hope this helps !
xgboost
only deals with numeric columns.if you have a feature
[a,b,b,c]
which describes a categorical variable (i.e. no numeric relationship)Using LabelEncoder you will simply have this:
Xgboost
will wrongly interpret this feature as having a numeric relationship! This just maps each string('a','b','c')
to an integer, nothing more.Proper way
Using OneHotEncoder you will eventually get to this:
This is the proper representation of a categorical variable for
xgboost
or any other machine learning tool.Pandas get_dummies is a nice tool for creating dummy variables (which is easier to use, in my opinion).
Method #2 in above question will not represent the data properly