1. <tfoot id='H04VK'></tfoot>

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

    2. <legend id='H04VK'><style id='H04VK'><dir id='H04VK'><q id='H04VK'></q></dir></style></legend>
        <i id='H04VK'><tr id='H04VK'><dt id='H04VK'><q id='H04VK'><span id='H04VK'><b id='H04VK'><form id='H04VK'><ins id='H04VK'></ins><ul id='H04VK'></ul><sub id='H04VK'></sub></form><legend id='H04VK'></legend><bdo id='H04VK'><pre id='H04VK'><center id='H04VK'></center></pre></bdo></b><th id='H04VK'></th></span></q></dt></tr></i><div id='H04VK'><tfoot id='H04VK'></tfoot><dl id='H04VK'><fieldset id='H04VK'></fieldset></dl></div>
          <bdo id='H04VK'></bdo><ul id='H04VK'></ul>
      1. 如何将列表附加到 pandas 列、系列?

        时间:2023-09-27
          • <small id='SfT41'></small><noframes id='SfT41'>

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

            • <i id='SfT41'><tr id='SfT41'><dt id='SfT41'><q id='SfT41'><span id='SfT41'><b id='SfT41'><form id='SfT41'><ins id='SfT41'></ins><ul id='SfT41'></ul><sub id='SfT41'></sub></form><legend id='SfT41'></legend><bdo id='SfT41'><pre id='SfT41'><center id='SfT41'></center></pre></bdo></b><th id='SfT41'></th></span></q></dt></tr></i><div id='SfT41'><tfoot id='SfT41'></tfoot><dl id='SfT41'><fieldset id='SfT41'></fieldset></dl></div>
                <bdo id='SfT41'></bdo><ul id='SfT41'></ul>
                  <tbody id='SfT41'></tbody>

                  <tfoot id='SfT41'></tfoot>
                  本文介绍了如何将列表附加到 pandas 列、系列?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  假设我有以下数据框:

                  d = {'col1': [1, 2], 'col2': [3, 4]}
                  df = pd.DataFrame(data=d)
                  

                  我想用数组 xtra 扩展 col1.但是这会出错.

                  I would like to extend col1 with array xtra. However this errors out.

                  xtra = [3,4]
                  df['col1'].append(xtra)
                  

                  如何将 xtra 附加到 df.col1,以使最终的 otuput 看起来像这样?

                  How can I append xtra to df.col1, so that the final otuput would looks as so?

                     col1  col2
                  0     1     3
                  1     2     4
                  2     3     nan
                  3     4     nan
                  

                  推荐答案

                  只需复制您使用的相同格式 (dict) 即可制作如下数据框:

                  just copy the same format you used (dict) to make a dataframe like so:

                  import pandas as pd
                  
                  d = {'col1': [1, 2], 'col2': [3, 4]}
                  df = pd.DataFrame(data=d)
                  
                  xtra = {'col1': [3,4]}
                  
                  df = df.append(pd.DataFrame(xtra))
                  

                  这篇关于如何将列表附加到 pandas 列、系列?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:重复附加到一个大列表(Python 2.6.6) 下一篇:如何附加“python --version"的输出到 bash shell 中的文件?

                  相关文章

                1. <legend id='v5olc'><style id='v5olc'><dir id='v5olc'><q id='v5olc'></q></dir></style></legend>
                    <bdo id='v5olc'></bdo><ul id='v5olc'></ul>
                  <i id='v5olc'><tr id='v5olc'><dt id='v5olc'><q id='v5olc'><span id='v5olc'><b id='v5olc'><form id='v5olc'><ins id='v5olc'></ins><ul id='v5olc'></ul><sub id='v5olc'></sub></form><legend id='v5olc'></legend><bdo id='v5olc'><pre id='v5olc'><center id='v5olc'></center></pre></bdo></b><th id='v5olc'></th></span></q></dt></tr></i><div id='v5olc'><tfoot id='v5olc'></tfoot><dl id='v5olc'><fieldset id='v5olc'></fieldset></dl></div>
                2. <tfoot id='v5olc'></tfoot>

                    1. <small id='v5olc'></small><noframes id='v5olc'>