Skip to content

Commit

Permalink
renamed a few things
Browse files Browse the repository at this point in the history
  • Loading branch information
abstractqqq committed Oct 31, 2024
1 parent 38b051f commit f637648
Show file tree
Hide file tree
Showing 7 changed files with 677 additions and 678 deletions.
1 change: 1 addition & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
python -c 'from polars_ds import linear_models'
python -c 'from polars_ds.ts_features import *'
python -c 'from polars_ds.spatial import *'
python -c 'from polars_ds.sample_and_split import *'
- name: Upload sdist
uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion docs/sample_and_splits.md → docs/sample_and_split.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## Polars Native Machine Learning Pipeline

::: polars_ds.sample_and_splits
::: polars_ds.sample_and_split
1,211 changes: 605 additions & 606 deletions examples/diagnosis.ipynb

Large diffs are not rendered by default.

136 changes: 68 additions & 68 deletions examples/sample_and_split.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ nav:
- Home: index.md
- Diagnosis: dia.md
- Pipeline: pipeline.md
- Sample and Splits: sample_and_splits.md
- Sample and Split: sample_and_split.md
- Numerical Functions: num.md
- Statistics: stats.md
- String Related: string.md
Expand Down
3 changes: 1 addition & 2 deletions python/polars_ds/diagnosis.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,13 @@
from . import query_cond_entropy, query_principal_components, query_r2
from .type_alias import CorrMethod, PolarsFrame
from .stats import corr
from .sample import sample
from .sample_and_split import sample

alt.data_transformers.enable("vegafusion")


# DIA = Data Inspection Assistant / DIAgonsis
class DIA:

"""
Data Inspection Assistant. Most plots are powered by plotly/great_tables. Plotly may require
additional package downloads.
Expand Down
File renamed without changes.

0 comments on commit f637648

Please sign in to comment.