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

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

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

      <tfoot id='jRd9b'></tfoot>

        <bdo id='jRd9b'></bdo><ul id='jRd9b'></ul>

    1. 如何将 pandas 数据框的数据类型更改为具有定义格

      时间:2023-10-08

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

        <tbody id='W2pPr'></tbody>
      <legend id='W2pPr'><style id='W2pPr'><dir id='W2pPr'><q id='W2pPr'></q></dir></style></legend>
      <tfoot id='W2pPr'></tfoot>

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

              <bdo id='W2pPr'></bdo><ul id='W2pPr'></ul>

              • 本文介绍了如何将 pandas 数据框的数据类型更改为具有定义格式的字符串?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                我开始为此扯头发 - 所以我希望有人能提供帮助.我有一个使用 openpyxl 从 Excel 电子表格创建的 pandas DataFrame.生成的 DataFrame 如下所示:

                I'm starting to tear my hair out with this - so I hope someone can help. I have a pandas DataFrame that was created from an Excel spreadsheet using openpyxl. The resulting DataFrame looks like:

                print image_name_data
                     id           image_name
                0  1001  1001_mar2014_report
                1  1002  1002_mar2014_report
                2  1003  1003_mar2014_report
                
                [3 rows x 2 columns]
                

                …具有以下数据类型:

                print image_name_data.dtypes
                id            float64
                image_name     object
                dtype: object
                

                问题在于 id 列中的数字实际上是标识号,我需要将它们视为字符串.我尝试使用以下方法将 id 列转换为字符串:

                The issue is that the numbers in the id column are, in fact, identification numbers and I need to treat them as strings. I've tried converting the id column to strings using:

                image_name_data['id'] = image_name_data['id'].astype('str')
                

                这看起来有点难看,但它确实产生了一个类型为object"而不是float64"的变量:

                This seems a bit ugly but it does produce a variable of type 'object' rather than 'float64':

                print image_name_data.dyptes
                id            object
                image_name    object
                dtype: object
                

                但是,创建的字符串有一个小数点,如图:

                However, the strings that are created have a decimal point, as shown:

                print image_name_data
                       id           image_name
                0  1001.0  1001_mar2014_report
                1  1002.0  1002_mar2014_report
                2  1003.0  1003_mar2014_report
                
                [3 rows x 2 columns]
                

                如何将 pandas DataFrame 中的 float64 列转换为具有给定格式的字符串(在本例中,例如 '%10.0f')?

                How can I convert a float64 column in a pandas DataFrame to a string with a given format (in this case, for example, '%10.0f')?

                推荐答案

                我无法重现您的问题,但您是否尝试过先将其转换为整数?

                I'm unable to reproduce your problem but have you tried converting it to an integer first?

                image_name_data['id'] = image_name_data['id'].astype(int).astype('str')
                

                然后,关于您更一般的问题,您可以使用 map (在这个答案中).在你的情况下:

                Then, regarding your more general question you could use map (as in this answer). In your case:

                image_name_data['id'] = image_name_data['id'].map('{:.0f}'.format)
                

                这篇关于如何将 pandas 数据框的数据类型更改为具有定义格式的字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:Python3 - 在字符串格式化程序参数中使用变量 下一篇:ValueError:python格式的零长度字段名称

                相关文章

                最新文章

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

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