Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
95c1e19
Updating dependencies
idanmoradarthas Feb 8, 2026
0c17600
Updating version
idanmoradarthas Feb 8, 2026
dc434d6
Updating dependencies
idanmoradarthas Feb 8, 2026
b94ec42
Create the preprocess package directory
idanmoradarthas Feb 9, 2026
f8e73b4
Move methods to statistics.py
idanmoradarthas Feb 9, 2026
4254a73
Move methods to visualization.py
idanmoradarthas Feb 9, 2026
02aca07
Move methods to _plot_helpers.py
idanmoradarthas Feb 9, 2026
cb57cc4
Remove _plot_helpers.py file, consolidating plotting functions into o…
idanmoradarthas Feb 11, 2026
e375820
Add new plotting utilities for categorical and datetime features
idanmoradarthas Feb 11, 2026
b774cf1
Remove preprocess.py file and add test suite for preprocessing utilit…
idanmoradarthas Feb 11, 2026
aa85441
Refactor test suite for preprocessing utilities
idanmoradarthas Feb 11, 2026
c482e59
Add baseline images for visualization tests
idanmoradarthas Feb 11, 2026
0198cd8
Add docstrings to preprocessing modules and test suite
idanmoradarthas Feb 11, 2026
1f3a7d1
Fixes test test_statistics.py::test_extract_statistics_dataframe_per_…
idanmoradarthas Feb 12, 2026
976b95c
Update README.md to reflect new organization of preprocess module
idanmoradarthas Feb 13, 2026
d4cf33a
Update image paths
idanmoradarthas Feb 13, 2026
6e18f2c
Update documentation to reflect new module structure and import paths
idanmoradarthas Feb 13, 2026
9e3877b
Refactor metrics module by reorganizing and splitting functionality i…
idanmoradarthas Feb 13, 2026
dd7ea2f
Add docstrings to metrics modules for improved documentation
idanmoradarthas Feb 15, 2026
6243c45
Refactor metrics module and add comprehensive tests
idanmoradarthas Feb 16, 2026
9866ab0
Update test metrics to reflect new module structure
idanmoradarthas Feb 16, 2026
747243e
Refactor test paths in probability analysis tests
idanmoradarthas Feb 16, 2026
e55ef2f
Add plotly models fixture and ensure result directory creation in tes…
idanmoradarthas Feb 16, 2026
426a5a1
minor linting
idanmoradarthas Feb 16, 2026
fdf63d3
Update README.md to reflect new metrics module organization
idanmoradarthas Feb 16, 2026
d140a42
Refactor metrics documentation structure
idanmoradarthas Feb 16, 2026
953a792
Refactor XAI tests and add baseline images
idanmoradarthas Feb 16, 2026
acdbae9
Update image paths in documentation and README for consistency
idanmoradarthas Feb 16, 2026
37a43af
Move baseline images and tests for visualization functions
idanmoradarthas Feb 21, 2026
15b86a0
Update image paths in README and visualization documentation for cons…
idanmoradarthas Feb 21, 2026
bf73311
Enhance documentation in metrics module
idanmoradarthas Feb 21, 2026
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
74 changes: 42 additions & 32 deletions README.md

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@

# -- Path setup --------------------------------------------------------------
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.

# add these directories to sys.path here. Use the project root so that
# "import ds_utils" loads the source package (including ds_utils.preprocess
# as a package with statistics/visualization submodules), not an installed copy.
_project_root = Path(__file__).resolve().parents[2]
sys.path.insert(0, str(_project_root))
sys.path.insert(0, os.path.abspath("."))
sys.path.insert(0, os.path.abspath("../../ds_utils"))

# -- Project information -----------------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ visualizations for data science projects.

installation
math_utils
metrics
preprocess
metrics/index
preprocess/index
strings
unsupervised
xai
Expand Down
2 changes: 1 addition & 1 deletion docs/source/math_utils.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This module contains common methods that help calculate statistical values.
Safe Percentile
***************

.. autofunction:: math_utils::safe_percentile
.. autofunction:: ds_utils.math_utils.safe_percentile

.. highlight:: python

Expand Down
326 changes: 0 additions & 326 deletions docs/source/metrics.rst

This file was deleted.

Loading
Loading