久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

<small id='obi06'></small><noframes id='obi06'>

      1. <legend id='obi06'><style id='obi06'><dir id='obi06'><q id='obi06'></q></dir></style></legend>

      2. <i id='obi06'><tr id='obi06'><dt id='obi06'><q id='obi06'><span id='obi06'><b id='obi06'><form id='obi06'><ins id='obi06'></ins><ul id='obi06'></ul><sub id='obi06'></sub></form><legend id='obi06'></legend><bdo id='obi06'><pre id='obi06'><center id='obi06'></center></pre></bdo></b><th id='obi06'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='obi06'><tfoot id='obi06'></tfoot><dl id='obi06'><fieldset id='obi06'></fieldset></dl></div>
          <bdo id='obi06'></bdo><ul id='obi06'></ul>
        <tfoot id='obi06'></tfoot>
      3. 在 groupby 聚合之后指定列順序

        Specifying column order following groupby aggregation(在 groupby 聚合之后指定列順序)
        • <small id='Qm44B'></small><noframes id='Qm44B'>

            <legend id='Qm44B'><style id='Qm44B'><dir id='Qm44B'><q id='Qm44B'></q></dir></style></legend>

              <i id='Qm44B'><tr id='Qm44B'><dt id='Qm44B'><q id='Qm44B'><span id='Qm44B'><b id='Qm44B'><form id='Qm44B'><ins id='Qm44B'></ins><ul id='Qm44B'></ul><sub id='Qm44B'></sub></form><legend id='Qm44B'></legend><bdo id='Qm44B'><pre id='Qm44B'><center id='Qm44B'></center></pre></bdo></b><th id='Qm44B'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='Qm44B'><tfoot id='Qm44B'></tfoot><dl id='Qm44B'><fieldset id='Qm44B'></fieldset></dl></div>
                <bdo id='Qm44B'></bdo><ul id='Qm44B'></ul>

                    <tbody id='Qm44B'></tbody>
                • <tfoot id='Qm44B'></tfoot>
                  本文介紹了在 groupby 聚合之后指定列順序的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  每次運行代碼時,我的年齡、身高和體重列的順序都會發生變化.我需要保持 agg 列的順序不變,因為我最終會根據列位置引用此輸出文件.如何確保每次都以相同的順序輸出年齡、身高和體重?

                  The ordering of my age, height and weight columns is changing with each run of the code. I need to keep the order of my agg columns static because I ultimately refer to this output file according to the column locations. What can I do to make sure age, height and weight are output in the same order every time?

                  d = pd.read_csv(input_file, na_values=[''])
                  df = pd.DataFrame(d)
                  df.index_col = ['name', 'address']
                  
                  df_out = df.groupby(df.index_col).agg({'age':np.mean, 'height':np.sum, 'weight':np.sum})
                  df_out.to_csv(output_file, sep=',')
                  

                  推薦答案

                  我覺得你可以使用subset:

                  I think you can use subset:

                  df_out = df.groupby(df.index_col)
                             .agg({'age':np.mean, 'height':np.sum, 'weight':np.sum})[['age','height','weight']]
                  

                  你也可以使用 pandas 函數:

                  Also you can use pandas functions:

                  df_out = df.groupby(df.index_col)
                             .agg({'age':'mean', 'height':sum, 'weight':sum})[['age','height','weight']]
                  

                  示例:

                  df = pd.DataFrame({'name':['q','q','a','a'],
                                     'address':['a','a','s','s'],
                                     'age':[7,8,9,10],
                                     'height':[1,3,5,7],
                                     'weight':[5,3,6,8]})
                  
                  print (df)
                    address  age  height name  weight
                  0       a    7       1    q       5
                  1       a    8       3    q       3
                  2       s    9       5    a       6
                  3       s   10       7    a       8
                  df.index_col = ['name', 'address']
                  df_out = df.groupby(df.index_col)
                             .agg({'age':'mean', 'height':sum, 'weight':sum})[['age','height','weight']]
                  
                  print (df_out)
                                age  height  weight
                  name address                     
                  a    s        9.5      12      14
                  q    a        7.5       4       8
                  

                  根據建議編輯 - 添加 reset_index,如果也需要索引值,這里 as_index=False 不起作用:

                  EDIT by suggestion - add reset_index, here as_index=False does not work if need index values too:

                  df_out = df.groupby(df.index_col)
                             .agg({'age':'mean', 'height':sum, 'weight':sum})[['age','height','weight']]
                             .reset_index()
                  
                  print (df_out)
                    name address  age  height  weight
                  0    a       s  9.5      12      14
                  1    q       a  7.5       4       8
                  

                  這篇關于在 groupby 聚合之后指定列順序的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  How to make a discord bot that gives roles in Python?(如何制作一個在 Python 中提供角色的不和諧機器人?)
                  Discord bot isn#39;t responding to commands(Discord 機器人沒有響應命令)
                  Can you Get the quot;About mequot; feature on Discord bot#39;s? (Discord.py)(你能得到“關于我嗎?Discord 機器人的功能?(不和諧.py))
                  message.channel.id Discord PY(message.channel.id Discord PY)
                  How do I host my discord.py bot on heroku?(如何在 heroku 上托管我的 discord.py 機器人?)
                  discord.py - Automaticaly Change an Role Color(discord.py - 自動更改角色顏色)
                  1. <legend id='DmyQd'><style id='DmyQd'><dir id='DmyQd'><q id='DmyQd'></q></dir></style></legend>
                      <i id='DmyQd'><tr id='DmyQd'><dt id='DmyQd'><q id='DmyQd'><span id='DmyQd'><b id='DmyQd'><form id='DmyQd'><ins id='DmyQd'></ins><ul id='DmyQd'></ul><sub id='DmyQd'></sub></form><legend id='DmyQd'></legend><bdo id='DmyQd'><pre id='DmyQd'><center id='DmyQd'></center></pre></bdo></b><th id='DmyQd'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='DmyQd'><tfoot id='DmyQd'></tfoot><dl id='DmyQd'><fieldset id='DmyQd'></fieldset></dl></div>

                      <tfoot id='DmyQd'></tfoot>
                      • <bdo id='DmyQd'></bdo><ul id='DmyQd'></ul>
                          <tbody id='DmyQd'></tbody>

                        <small id='DmyQd'></small><noframes id='DmyQd'>

                            主站蜘蛛池模板: 久久久免费观看视频 | 中文字幕精品一区 | 2018天天干天天操 | 在线观看黄色大片 | 欧美日日 | 欧美视频网 | 奇米四色在线观看 | 久久久久久亚洲精品 | 国产免费让你躁在线视频 | 国产在线高清 | 久久久久免费精品国产小说色大师 | 亚洲国产欧美国产综合一区 | 美国黄色毛片 | 欧美精品久久久 | 黄网站涩免费蜜桃网站 | 国产黄色网 | 天天影视网天天综合色在线播放 | av一区二区在线观看 | 99久久婷婷国产综合精品电影 | 亚洲a人 | 国产中文视频 | 国产一级毛片精品完整视频版 | 国精产品一区二区三区 | 国产一区二区欧美 | 亚洲精品黄色 | 欧美一区二区在线观看 | 伊人网在线播放 | 暖暖日本在线视频 | 日本久久久一区二区三区 | 日韩中文一区二区三区 | 91看片在线观看 | 91视视频在线观看入口直接观看 | 色视频在线免费观看 | 成人在线视频观看 | 久久成人综合 | 成人片免费看 | 91久久久久久久 | 精品国产乱码久久久久久蜜臀 | 97国产超碰 | 九九热国产精品视频 | 一区二区三区视频在线观看 |