mihaighidoveanu / data-science-lab

Data Science on the kaggle Android Play Store dataset
Other
0 stars 2 forks source link

Finish feature preprocessing and feature extraction #3

Closed mihaighidoveanu closed 5 years ago

mihaighidoveanu commented 5 years ago

Complex features can be created as you wish, based on the ones already existing. Anything that makes sense to you can be created. There are still some basic features that need to be preprocessed in order to be used : categorical features( like 'Category', 'Type') and ordinal features (like 'Price'). The ordinal features will be treated by keeping only the numbers. The categorical ones can be transformed in many ways, using dummy, one-hot or factorization encoding.

mihaighidoveanu commented 5 years ago
mihaighidoveanu commented 5 years ago