pystatpower
0.0.3
중국어 간체 |
pystatpower 는 통계 분야의 전력 분석에 초점을 맞춘 오픈 소스 Python 라이브러리입니다.
주요 기능: 표본 크기 및 검정력 계산, 주어진 매개변수 하에서 필요한 효과 크기 추정.
pip install pystatpower
from pystatpower . models import one_proportion
result = one_proportion . solve_for_sample_size (
alpha = 0.05 , power = 0.80 , nullproportion = 0.80 , proportion = 0.95 , alternative = "two_sided" , test_type = "exact_test"
)
print ( result )
산출:
Size ( 41.59499160228066 )
복제 저장소
git clone https://github.com/Snoopy1866/pystatpower.git
종속성 설치
pip install .[docs]
사전 커밋 설치
pre-commit install
pre-commit install --hook-type commit-msg
문서 디렉토리로 전환
cd docs
문서 작성
make clean
make html
docs/build/html
디렉토리에서 생성된 문서를 볼 수 있으며 index.html
두 번 클릭하여 브라우저에서 볼 수 있습니다.