Skip to content
Advertisement

Pandas DataFrame: How do I create numerical values out of numerical values from another column?

I have probably not explained my issue right in the headline, so let’s try to clarify it here.

I want to categorise values from 1 column into a new one.

The first ten lines in my data set are this:

JavaScript

And the code I use is this

JavaScript

I think this can be done easier with a user-defined function, but I got stuck on that. There are many issues with this code and I can’t figure out how to fix it. Why does it see -0.8 as a value higher than 1? If you only run the code for the negative values, it works so why is that?

If anyone can give me a hand that would be fantastic.

Advertisement

Answer

If you want to split values in a column into several ranges, you can use pandas.cut(). It transforms each value into a range that the value belongs to.

More information here: https://pandas.pydata.org/docs/reference/api/pandas.cut.html

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement