Skip to content

Commit 2f5b405

Browse files
committed
prep for release
1 parent 83fcb85 commit 2f5b405

File tree

8 files changed

+619
-673
lines changed

8 files changed

+619
-673
lines changed

docs/api/models/glm.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ Helper methods for more advanced functionality and debugging
9090

9191
```{eval-rst}
9292
93-
.. autofunction:: pymer4.models.base.model.to_sklearn
9493
.. autofunction:: pymer4.models.base.model.report
9594
.. autofunction:: pymer4.models.base.model.show_logs
9695
.. autofunction:: pymer4.models.base.model.clear_logs

docs/api/models/glmer.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ Helper methods for more advanced functionality and debugging
8686

8787
```{eval-rst}
8888
89-
.. autofunction:: pymer4.models.base.model.to_sklearn
9089
.. autofunction:: pymer4.models.base.model.report
9190
.. autofunction:: pymer4.models.base.model.show_logs
9291
.. autofunction:: pymer4.models.base.model.clear_logs

docs/api/models/lm.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ Helper methods for more advanced functionality and debugging
6767

6868
```{eval-rst}
6969
70-
.. autofunction:: pymer4.models.base.model.to_sklearn
7170
.. autofunction:: pymer4.models.base.model.report
7271
.. autofunction:: pymer4.models.base.model.show_logs
7372
.. autofunction:: pymer4.models.base.model.clear_logs

docs/api/models/lmer.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ Helper methods for more advanced functionality and debugging
8484

8585
```{eval-rst}
8686
87-
.. autofunction:: pymer4.models.base.model.to_sklearn
8887
.. autofunction:: pymer4.models.base.model.report
8988
.. autofunction:: pymer4.models.base.model.show_logs
9089
.. autofunction:: pymer4.models.base.model.clear_logs

docs/pages/new.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ As of this version, `pymer4` is now *only* installable via `conda` following the
5656
These following features are planned for upcoming versions in `0.9.x` line
5757

5858
- support for `lmerControl` options
59-
- automatic convertion to `scikit-learn` compatible estimators via `.to_sklearn()`
6059
- simulation and power modules
6160

6261
## 0.8.2

docs/pages/quickstart.ipynb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2484,6 +2484,7 @@
24842484
"- [categorical variables tutorial](../tutorials/02_categorical) if you're working with factorial designs or non-numeric predictors \n",
24852485
"- [multi-level models tutorial](../tutorials/03_lmms.ipynb) for repeated-measures or hierarchical data\n",
24862486
"- [generalized linear/multi-level models tutorial](../tutorials/04_glmms.ipynb) for non-gaussian outcome variables (e.g. logistic regression)\n",
2487+
"- [`scikit-learn` compatible estimators](../api/models/skmer.md) using the `skmer` class\n",
24872488
"\n",
24882489
"You can read about the specific arguments and outputs of different model methods on their respective API pages, e.g. [`lm.fit()`](../api/models/lm.md#pymer4.models.lm.lm.fit) \n",
24892490
"\n",

pixi.lock

Lines changed: 618 additions & 657 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pymer4/models/base.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -710,14 +710,3 @@ def report(self):
710710
str: A natural language description of the model results
711711
"""
712712
print(report_(self.r_model))
713-
714-
@requires_fit
715-
def to_sklearn(self):
716-
"""Convert the fitted model to a scikit-learn compatible format.
717-
718-
Note: This method is not yet implemented.
719-
720-
Raises:
721-
NotImplementedError: This method is not yet implemented
722-
"""
723-
raise NotImplementedError("Not yet implemented")

0 commit comments

Comments
 (0)