Tiffany Timbers, 2020-02-19
note - this is a toy Python package repo for UBC's DSCI 524 Collaborative Software Development course
Python package that eases the pain concatenating Pandas categoricals!
pip install -i https://test.pypi.org/simple/ foocat
- Pandas
>>> import pandas as pd
>>> a = pd.Categorical(["character", "hits", "your", "eyeballs"])
>>> b = pd.Categorical(["but", "integer", "where it", "counts"])
>>> cat.catbind(a, b)
[character, hits, your, eyeballs, but, integer, where it, counts]
Categories (8, object): [but, character, counts, eyeballs, hits, integer, where it, your]