Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #95

Merged
merged 2 commits into from
May 22, 2024
Merged

Dev #95

Show file tree
Hide file tree
Changes from all commits
Commits
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
40 changes: 20 additions & 20 deletions PHStatsMethods/__init__.py
Original file line number Diff line number Diff line change
@@ -1,22 +1,3 @@
__all__ = ["wilson_lower", "wilson_upper", "wilson",
"exact_upper", "exact_lower", "exact",
"byars_lower", "byars_upper", "byars",
"dobson_lower", "dobson_upper", "student_t_dist",
"calculate_funnel_limits", "assign_funnel_significance", "calculate_funnel_points"
"ph_dsr", "ph_ISRate", "ph_ISRatio", "ph_mean", "ph_proportion",
"ph_quantile", "ph_rate", "euro_standard_pop"]

from .confidence_intervals import *
from .DSR import ph_dsr
from .funnels import calculate_funnel_limits, assign_funnel_significance, calculate_funnel_points
from .ISRate import ph_ISRate
from .ISRatio import ph_ISRatio
from .means import ph_mean
from .proportions import ph_proportion
from .quantiles import ph_quantile
from .rates import ph_rate
from .utils import euro_standard_pop

"""
This is a Python package to support analysts in the execution of statistical
methods approved for use in the production of Public Health indicators such as
Expand All @@ -37,4 +18,23 @@
This project is released under the `GPL-3 <https://opensource.org/licenses/GPL-3.0>`__
licence.

"""
"""

from .confidence_intervals import *
from .DSR import ph_dsr
from .funnels import calculate_funnel_limits, assign_funnel_significance, calculate_funnel_points
from .ISRate import ph_ISRate
from .ISRatio import ph_ISRatio
from .means import ph_mean
from .proportions import ph_proportion
from .quantiles import ph_quantile
from .rates import ph_rate
from .utils import euro_standard_pop

__all__ = ["wilson_lower", "wilson_upper", "wilson",
"exact_upper", "exact_lower", "exact",
"byars_lower", "byars_upper", "byars",
"dobson_lower", "dobson_upper", "student_t_dist",
"calculate_funnel_limits", "assign_funnel_significance", "calculate_funnel_points"
"ph_dsr", "ph_ISRate", "ph_ISRatio", "ph_mean", "ph_proportion",
"ph_quantile", "ph_rate", "euro_standard_pop"]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name='PHStatsMethods',
version='0.1.8',
version='0.1.9',
packages=['PHStatsMethods'],
url='https://github.com/DataS-DHSC/PHStatsMethods',
license='GPL-3.0',
Expand Down
Loading