Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How does python pandas traverse each row and accumulate for conditional filtering

2025-02-21 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)05/31 Report--

Today, I would like to share with you how python pandas traverses each line and accumulates the relevant knowledge points of conditional filtering. The content is detailed and the logic is clear. I believe most people still know too much about this knowledge, so share this article for your reference. I hope you can get something after reading this article.

Pandas traverses each row and accumulates conditional filtering

The main purpose of this record is to sort each row and retain the previous 80% preference.

Train of thought:

The probability of each row is sorted and then accumulated, and preferences with cumulative values less than or equal to 0.8 are retained to obtain a cumulative filtered dataframe, which is then mapped back to the original data to retain the preferences of each row. Next is the implementation of the code.

A = [0.2,0.35,0.45], [0.1,0.2,0.7], [0.3,0.5,0.2]] data = pd.DataFrame (a, index= ['user1','user2','user3'], columns= ["a", "b", "c"]) sum_df= [] for index Row in data.iterrows (): df = row.sort_values (ascending=False). Cumsum () if df [0] > 0.8: new_df = df [: 1] else: new_df = df [df0.8: new_df = df [: 1] else: new_df = df [df

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report