Answer the question
In order to leave comments, you need to log in
How to increase by 1 the top 5 largest values in a DataFrame column?
There is a DataFrame:
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
Answer the question
In order to leave comments, you need to log in
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 questionAsk a Question
731 491 924 answers to any question