I
I
Ivan Melnikov2021-11-28 14:39:23
Python
Ivan Melnikov, 2021-11-28 14:39:23

How to increase by 1 the top 5 largest values ​​in a DataFrame column?

There is a DataFrame:
61a3622393f36117889587.png
How to competently increase by 1 the top 5 largest values?
Did it like this:

df_new = df.sort_values(by=['qty'], ascending=False)
cnt = 1
for i, item in df_new.iterrows():
    if cnt <= 5:
        item['qty'] = item['qty'] + 1
        cnt += 1

, but it seems to me that there should be a one-line solution.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
dmshar, 2021-11-29
@dmshar

Wouldn't you like to try reading something on Pandas first and then asking a question? Otherwise, you will run after every comma to the forum with questions.
I have already written to you:

df_new = df.sort_values(by=['qty'], ascending=False)
df_new.qty.loc[:4]=df_new.qty.loc[:4]+1

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question