-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update __init__.py, increment dev version
- Loading branch information
1 parent
eb9c6d3
commit 2afae14
Showing
2 changed files
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,21 @@ | ||
""" | ||
Decision Curve Analysis in Python | ||
Modules exported by this package: | ||
Functions exported by this package: | ||
- `dca` | ||
- `plot_graphs` | ||
- `prevalence` | ||
- `risks` | ||
- `load_test_data.load_binary_df` | ||
- `load_test_data.load_survival_df` | ||
- `load_test_data.load_case_control_df` | ||
""" | ||
|
||
__version__ = "1.1.2.2" | ||
|
||
import os | ||
from dcurves import load_test_data | ||
from dcurves.dca import dca | ||
from dcurves.plot_graphs import plot_graphs | ||
|
||
__version__ = "1.1.2.4" | ||
|
||
data = os.path.join(os.path.dirname(os.path.abspath(__file__)), "data") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "dcurves" | ||
version = "1.1.2.3" | ||
version = "1.1.2.4" | ||
description = "A Python package for Decision Curve Analysis to evaluate prediction models, molecular markers, and diagnostic tests." | ||
authors = [ | ||
"Shaun Porwal <[email protected]>", | ||
|