2.2.1 版本的新增内容(2024年2月22日)#

这是 pandas 2.2.1 的更改。请参阅 发行说明 以获取包括其他版本 pandas 的完整更新日志。

增强功能#

  • 添加了 pyarrow pip 额外项,以便用户可以通过 pip install pandas[pyarrow] 使用 pip 安装 pandas 和 pyarrow (GH 54466)

修复回归问题#

错误修复#

其他#

备注

当未安装 PyArrow 时,在导入 pandas 时引发的 DeprecationWarning 已被移除。这一决定是因为该警告对太多用户来说过于嘈杂,并且关于将 PyArrow 作为必需依赖的决定收集了大量反馈。Pandas 目前正在考虑是否应在 3.0 中将 PyArrow 添加为硬依赖。感兴趣的用户可以在此处跟踪讨论 here

  • DataFrameGroupBy.first()DataFrameGroupBy.last()SeriesGroupBy.first()SeriesGroupBy.last() 添加了参数 skipna;以前可以通过 DataFrameGroupBy.nth() 实现 skipna=False,但该行为在 pandas 2.0.0 中发生了变化 (GH 57019)

  • Resampler.first()Resampler.last() 添加了 skipna 参数 (GH 57019)

贡献者#

总共有14个人为这次发布贡献了补丁。名字后面带有“+”的人首次贡献了补丁。

  • Albert Villanova del Moral

  • Luke Manley

  • Lumberbot (aka Jack)

  • Marco Edward Gorelli

  • Matthew Roeschke

  • Natalia Mokeeva

  • Pandas Development Team

  • Patrick Hoefler

  • Richard Shadrach

  • Robert Schmidtke +

  • Samuel Chai +

  • Thomas Li

  • William Ayd

  • dependabot[bot]