Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/takluyver/pandawash

Magic commands to quickly & transparently clean up data
https://github.com/takluyver/pandawash

Last synced: about 2 months ago
JSON representation

Magic commands to quickly & transparently clean up data

Awesome Lists containing this project

README

        

Magic commands to clean up pandas series

This IPython extension makes it easy to clean up data in a pandas DataFrame,
while preserving a clear record of what you've done. It inserts template code
into your notebook, which you can quickly modify to clean up data.

Installation::

%install_ext https://github.com/takluyver/pandawash/raw/master/pandawash.py

Use::

%load_ext pandawash

%groupcol df['colname']
%numcol df['colname'] numtype
%boundscheckcol df['colname'] min-max
%regexcol df['colname'] pattern

See the `Demo notebook `_ for examples.