Pandas 中的'skiprows”如何知道是否要跳过第一行或索引为 1 的行?

Linda Hamilton
发布: 2024-10-30 03:39:02
原创
147 人浏览过

How does `skiprows` in Pandas know if you want to skip the first row or the row with index 1?

使用 Pandas 导入 CSV 时跳过行

使用 Pandas 导入 CSV 数据时,通常需要跳过不需要的行包含在您的分析中。然而,围绕skiprows参数的歧义可能会令人困惑。

skiprows的语法如下:

skiprows : list-like or integer
Row numbers to skip (0-indexed) or number of rows to skip (int) at the start of the file.
登录后复制

问题出现了:Pandas如何知道是否跳过第一行或当指定skiprows=1 时索引为1 的行?

为了解决这个问题,让我们使用包含三行的示例 CSV 文件执行一个实验:

1, 2
3, 4
5, 6
登录后复制

跳过行索引为 1

如果要跳过索引为 1 的行,请将跳行作为列表传递:

<code class="python">import pandas as pd
from io import StringIO

s = """1, 2
... 3, 4
... 5, 6"""

df = pd.read_csv(StringIO(s), skiprows=[1], header=None)  # Skip row with index 1
print(df)</code>
登录后复制

输出:

   0  1
0  1  2
1  5  6
登录后复制

跳过行数

要跳过特定数量的行(在本例中为 1),请将skiprows 作为整数传递:

<code class="python">df = pd.read_csv(StringIO(s), skiprows=1, header=None)  # Skip the first row
print(df)</code>
登录后复制

输出:

   0  1
0  3  4
1  5  6
登录后复制

因此,很明显,skiprows 参数的行为会有所不同,具体取决于您提供的是列表还是整数。如果您想按索引跳过一行,请使用列表。否则,使用整数从文件开头跳过指定行数。

以上是Pandas 中的'skiprows”如何知道是否要跳过第一行或索引为 1 的行?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!