Effect size package
Python package to calculate affect sizes (Cohen's δ, Hedge's g, Cliff's δ and Vargha-Delaney's A)
At the moment, only Cliff's delta is implemented. The other effect sizes will be added soon.
Usage
from effect_size_analysis import cliff_delta
from numpy.random import rand
x: ndarray = rand(100)
y: ndarray = rand(100)
cliff_delta(s1=x,s2=y,alpha=0.05,accurate_ci=True)
(0.0136, (-0.1455859031658134, 0.17209949612394954))
The first value is the delta value, while the second tuple represents the confidence interval al 95%.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file effect_size_analysis-0.1.0.tar.gz.
File metadata
- Download URL: effect_size_analysis-0.1.0.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/3.7.1 importlib_metadata/4.11.3 pkginfo/1.8.3 requests/2.28.1 requests-toolbelt/0.9.1 tqdm/4.64.1 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d999278342b58d5019e5f9bb7b1ad7f477c1999ce34368e7acdb986e9b8cf817
|
|
| MD5 |
98259f18670ac3b10f0601b2f9191be1
|
|
| BLAKE2b-256 |
c2780cbf156137f70696c227f466ac629b763f5cf6245b06dfa491db10d01d8c
|