Modification du type de données en catégorie

# Specify the logical order of the weather ratings
cats = pd.CategoricalDtype(['good', 'bad', 'worse'], ordered=True)

# Change the data type of 'rating' to category
df['column'] = df.column.astype(cats)
josh.ipynb