Zax
Zax
First off, thank you for this awesome tool. Contributions to open source projects should definitely get more recognition than they do, so I was excited to add this to my...
First off, thank you for this library - it's a hugely helpful for creating toy ML datasets. Is there a way to download just a list of the image URLs...
Many of our events recur on a regular schedule, and have a common base description (e.g. Project Night). Creating each event manually is tedious. It'd be nice to be able...
Currently the sponsors page (https://www.chipy.org/sponsors/list/) can only be navigated to via a subnav under "support us," and this page is a combination of both the current sponsors AND info on...
Awesome repo! I wrote/presented a pandas MultiIndex tutorial awhile back and link a few other good resources in there - would be cool if they were on the list: Notebook:...
See commit messages for list of hotfixes and changes. Closes PR #8
Inherit BaseDecorator and the functions' docstrings w / __doc__
Poorly formatted and not clear what the output means. Added bonus for an output format that lets you select from the df
Currently `multi_check` requires unnecessary specification when there are no args and doesn't have an easy way to add small custom functions. For example, an empty dict is needed as a...
``` def has_n_values(df, items): """Has exactly n unique values in specified columns.""" cols_n_unique = {col: df[col].nunique() for col in list(items.keys())} bad_cols = [col for col, n_unique in items.items() if cols_n_unique[col]...