

pyjanitor 0.3 Released!
PythonTools & Languagesposted by Eric Ma August 8, 2018 Eric Ma

A new release of pyjanitor
is out!
Two new features that I have added in include:
- Concatenating column names into a single column, such that each item is separated by a delimiter.
- Deconcatenating a column into multiple columns, separating on the basis of a delimiter.
Both of these tasks come up frequently in data preparation.
For example, concatenating a few columns together oftentimes lets us create an unique index based sample properties.
On the other hand, deconcatenating columns into multiple columns can be useful when our index is used to store metadata. (This really shouldn’t be happening, but… sometimes that’s just how the world works right now…)
Here’s an example of how it works:
To install pyjanitor
, grab it from PyPI:
$ pip install pyjanitor
The conda-forge build will be coming soon!
Original Source