You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 1, 2023. It is now read-only.
Define generic for pretty-printing objects inside a table. (#12)
* Define generic for pretty-printing objects inside a table.
Also define a function for formatting a table, so that we don't
have to rely on third-party libraries for our pretty-printing.
Adapt package for Python 3.8 (#10)
- In addition updates github action to test the package from python 3.8 to 3.12.
- Most changes deal with registering dispatchers for scipy's sparray.
Support lists in combine generic (#7)
This updates the `combine` generic to delegate the call to `combine_seqs` if one of the elements in the object is a list. In addition, added a few tests for mis and match of supported types and updated documentation. Fixed a few docstrings for inconsistencies.
more changes to `combine-*` generics (#3)
Add dispatchers for sparse, dense and pandas dataframes. the intent is `combine` is for 1-dimensional vectors and combine_rows and combine_cols are for 2-dimensional arrays/matrices.