Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
OrdinalEncoder | Preprocessing Data with Scikit-learn
ML Introduction with scikit-learn
course content

Course Content

ML Introduction with scikit-learn

ML Introduction with scikit-learn

1. Machine Learning Concepts
2. Preprocessing Data with Scikit-learn
3. Pipelines
4. Modeling

book
OrdinalEncoder

The next problem we will solve is categorical data. Recall that there are two types of categorical data.

Ordinal data follows some natural order, while nominal does not. Since there is a natural order, we can encode categories to the numbers in that order.

For example, we would encode the 'rate' column containing 'Terrible', 'Bad', 'OK', 'Good', and 'Great' values as follows:

  • 'Terrible' – 0;
  • 'Bad' – 1;
  • 'OK' – 2;
  • 'Good' – 3;
  • 'Great' – 4.

To encode ordinal data, OrdinalEncoder is used. It just encodes the categories to 0, 1, 2, ... .

OrdinalEncoder is easy to use like any other transformer. The only difficulty is to specify the categories argument correctly.

Let's look at an example of use. We have a dataset (not the penguins dataset) with an 'education' column. Now, let's examine its unique values.

12345
import pandas as pd df = pd.read_csv('https://codefinity-content-media.s3.eu-west-1.amazonaws.com/a65bbc96-309e-4df9-a790-a1eb8c815a1c/adult_edu.csv') print(df['education'].unique())
copy

We need to create a list of ordered categorical values, in this case, from 'HS-grad' to 'Doctorate'.

1234567891011121314
import pandas as pd from sklearn.preprocessing import OrdinalEncoder # Load the data and assign X, y variables df = pd.read_csv('https://codefinity-content-media.s3.eu-west-1.amazonaws.com/a65bbc96-309e-4df9-a790-a1eb8c815a1c/adult_edu.csv') y = df['income'] # 'income' is a target in this dataset X = df.drop('income', axis=1) # Create a list of categories so HS-grad is encoded as 0 and Doctorate as 6 edu_categories = ['HS-grad', 'Some-college', 'Assoc', 'Bachelors', 'Masters', 'Prof-school', 'Doctorate'] # Initialize an OrdinalEncoder instance with the correct categories ord_enc = OrdinalEncoder(categories=[edu_categories]) # Transform the 'education' column and print it X['education'] = ord_enc.fit_transform(X[['education']]) print(X['education'])
copy

If you need to transform multiple features using the OrdinalEncoder, it's important to specify the categories for each column. You can do this using the categories argument as shown below:

1. Which statement best describes the use of the `OrdinalEncoder` for handling categorical data in a dataset?
2. Suppose you have a categorical column named `'Color'`. Would it be appropriate to use the `OrdinalEncoder` to encode its values?
Which statement best describes the use of the `OrdinalEncoder` for handling categorical data in a dataset?

Which statement best describes the use of the OrdinalEncoder for handling categorical data in a dataset?

Select the correct answer

Suppose you have a categorical column named `'Color'`. Would it be appropriate to use the `OrdinalEncoder` to encode its values?

Suppose you have a categorical column named 'Color'. Would it be appropriate to use the OrdinalEncoder to encode its values?

Select the correct answer

Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 2. Chapter 5
We're sorry to hear that something went wrong. What happened?
some-alt