Giter Site home page Giter Site logo

Comments (2)

ahmedembeddedx avatar ahmedembeddedx commented on June 17, 2024
import pandas as pd

# Create DataFrame
df = pd.DataFrame([[1, 2, 'March'],[5, 6, 'Dec'],[3, 4, 'April']], columns=['a','b','month'])

# Define custom_dict
custom_dict = {'March': 0, 'April': 1, 'Dec': 3}

# Convert 'month' column to Categorical with custom order
df['month'] = pd.Categorical(df['month'], categories=custom_dict.keys())

# Sort DataFrame based on the custom order
df.sort_values(by='month', key=lambda x: x.map(custom_dict))

from pandas.

rtlee9 avatar rtlee9 commented on June 17, 2024

To be more specific, sort_values doesn't respect the key parameter for categorical series.

Sorting does work as expected if the categorical is ordered using the ordered param:

import pandas as pd

df = pd.DataFrame([[1, 2, 'March'],[5, 6, 'Dec'],[3, 4, 'April']], columns=['a','b','month'])
df['month_cat_ordered'] = pd.Categorical(df.month, ['March', 'April', 'Dec'], ordered=True)
df.sort_values('month_cat_ordered')
a b month month_cat_ordered
0 1 2 March March
2 3 4 April April
1 5 6 Dec Dec

Mapping an unordered categorical as in the original example maps the old categories to the new categories but doesn't reorder the new categories. This is possible to implement this reordering in Categorical.map but would come at a performance cost and it isn't immediately clear it's worth it.

from pandas.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.