Skip to content
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
bc99458
chore: headers for easier navigation of large notebook.
ngupta23 Feb 27, 2025
34db7b2
docs: clean spaces
ngupta23 Feb 27, 2025
0f12097
feat: initial version of the audit_data method
ngupta23 Feb 27, 2025
b5ac178
feat: added clean_data (initial version)
ngupta23 Feb 28, 2025
6525ee2
feat: add audit functions
MMenchero Mar 1, 2025
aff28c5
add missing title
MMenchero Mar 1, 2025
2163988
WIP: audit_data and clean_data changes
MMenchero Mar 1, 2025
cf46fe9
feat: add functions to audit_data and audit_clean
MMenchero Mar 4, 2025
2205133
add missing cell tag
MMenchero Mar 4, 2025
124da0f
Merge branch 'main' into feat/audit_missing
ngupta23 Mar 4, 2025
b72872a
chore: merged code from Mariana in main cell + cleanup
ngupta23 Mar 4, 2025
508133b
fix: for https://github.com/AnswerDotAI/nbdev/issues/1501
ngupta23 Mar 4, 2025
80c9834
fix: for https://github.com/AnswerDotAI/nbdev/issues/1501
ngupta23 Mar 4, 2025
77b287d
fix: for https://github.com/AnswerDotAI/nbdev/issues/1501
ngupta23 Mar 4, 2025
6a08cad
fix: for test failure on windows 3.9
ngupta23 Mar 4, 2025
5bb4b9e
feat: add tests to new methods
MMenchero Mar 5, 2025
36ff077
clean nb
MMenchero Mar 5, 2025
b40449f
feat: add aditional test
MMenchero Mar 5, 2025
63928d3
feat: updated to not clean case specific issues by default
ngupta23 Mar 18, 2025
127d04e
chore: fix docstring
ngupta23 Mar 18, 2025
4a40535
chore: simpler detection of categorical columns
ngupta23 Mar 18, 2025
4eb6757
fix: sorting dataframe when checking leading zeros
ngupta23 Mar 18, 2025
a6c21f9
Merge branch 'main' into feat/audit_missing
ngupta23 Mar 18, 2025
deb1e99
Merge branch 'main' into feat/audit_missing
ngupta23 Mar 18, 2025
6ca20a3
Merge branch 'main' into feat/audit_missing
MMenchero Mar 24, 2025
6b3c596
clean tests
MMenchero Mar 25, 2025
3a8a06f
clean nb
MMenchero Mar 25, 2025
2f26abb
Merge branch 'main' into feat/audit_missing
ngupta23 Mar 26, 2025
37608fb
change placement of ensure_sorted function
MMenchero Mar 26, 2025
a0121e4
Merge branch 'main' into feat/audit_missing
MMenchero Mar 26, 2025
17f10dc
fix tests
MMenchero Mar 26, 2025
4f8ca43
Merge branch 'main' into feat/audit_missing
MMenchero Mar 26, 2025
d03adc7
Merge branch 'main' into feat/audit_missing
elephaint Mar 27, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install pip requirements
run: pip install uv && uv pip install --system . matplotlib nbdev python-dotenv
run: pip install uv && uv pip install --system . "ipython<=8.32.0" matplotlib nbdev python-dotenv

- name: Run tests
run: nbdev_test --n_workers 0 --path nbs/docs/getting-started/2_quickstart.ipynb
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ nbdev_export
If you're working on the local interface you can just use `nbdev_test --n_workers 1 --do_print --timing`.

### Cleaning notebooks
Since the notebooks output cells can vary from run to run (even if they produce the same outputs) the notebooks are cleaned before committing them. Please make sure to run `nbdev_clean ` before committing your changes.
Since the notebooks output cells can vary from run to run (even if they produce the same outputs) the notebooks are cleaned before committing them. Please make sure to run `nbdev_clean` before committing your changes.

## Do you want to contribute to the documentation?

Expand Down
Loading