Skip to content

UBC-MDS/pypkgs_ubc

Repository files navigation

pypkgs_ubc

codecov Deploy Documentation Status

Demo python package for the UBC MDS Collaborative Software Development course.

Installation

$ pip install -i https://test.pypi.org/simple/ pypkgs_ubc

Features

catbind function let's you merge pandas categoricals with ease!

Dependencies

  • pandas

Usage

>>> from pypkgs import pypkgs
>>> import pandas as pd
>>> a = pd.Categorical(["character", "hits", "your", "eyeballs"])
>>> b = pd.Categorical(["but", "integer", "where it", "counts"])
>>> pypkgs.catbind(a, b)
[character, hits, your, eyeballs, but, integer, where it, counts]
Categories (8, object): [but, character, counts,
eyeballs, hits, integer, where it, your]

Documentation

The official documentation is hosted on Read the Docs: https://pypkgs_ubc.readthedocs.io/en/latest/

Contributors

We welcome and recognize all contributions. You can see a list of current contributors in the contributors tab.

Credits

This package was created with Cookiecutter and the UBC-MDS/cookiecutter-ubc-mds project template, modified from the pyOpenSci/cookiecutter-pyopensci project template and the audreyr/cookiecutter-pypackage.