Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds

pandas 0.23 released

Save for later
  • 120 min read
  • 2018-05-17 20:00:09

article-image

From its previous major release v0.22, the contributors of pandas release the next major version 0.23.0 with numerous new features, enhancements, lists of API changes and deprecations. This release adds pivotal support in performing custom types operations and extended support to arguments and conversion tasks.The upgraded version also power ups with performance improvements along with a large number of bug fixes.

New feature highlights v0.23:

  • Round-trippable JSON format with ‘table’ orient.
  • Instantiation from dicts respects order for Python 3.6+.
  • Dependent column arguments for assign.
  • Merging/sorting on a combination of columns and index levels.
  • Extending Pandas with custom types.
  • Excluding unobserved categories from groupby.
  • Unlock access to the largest independent learning library in Tech for FREE!
    Get unlimited access to 7500+ expert-authored eBooks and video courses covering every tech area you can think of.
    Renews at $19.99/month. Cancel anytime
  • Changes to make output shape of DataFrame.apply consistent.

Bug Fixes:

  • Resolved bugs related to categorical operations like merge, index constructor, factorize.
  • Bugs in numeric operations like Series constructor, Index multiplication, DataFrame flex arithmetic fixed.
  • Other bugs related to Strings, indexing, Timezones, TimeDelta are also fixed in this version.


Python’s pandas package provides developers with fast, flexible, and expressive data structures making it easy and intuitive to work with “relational” and “labeled” data.

With its continuation release of feature-packed versions, pandas could soon become the most powerful and flexible open source data analysis and manipulation tool for your data science project.

To know more about the API changes, deprecations and performance improvements, please read release documentation on Github.

“Pandas is an effective tool to explore and analyze data”: An interview with Theodore Petrou

Working with pandas DataFrames

Up and Running with pandas