Py
PyNow

Run Statistics in Your Browser

Statistical Analysis in Python

Run statistical analysis in Python online for free. Use the statistics module and scipy.stats for descriptive stats, hypothesis testing, and distributions.

main.py
Ln 1, Col 1Spaces: 4
Python 3.13 (Pyodide)
Hit Run to see output here.

What You Get

Descriptive statistics
Distributions
Hypothesis testing
Correlation analysis

Statistics Examples

Normal Distribution

from statistics import NormalDist

dist = NormalDist(mu=100, sigma=15)
print(f"P(X < 120) = {dist.cdf(120):.4f}")
print(f"P(85 < X < 115) = {dist.cdf(115) - dist.cdf(85):.4f}")
print(f"95th percentile: {dist.inv_cdf(0.95):.2f}")