HypoTestX Documentation

Natural Language Hypothesis Testing — Powered by LLMs or Pure Regex

HypoTestX lets you ask a plain-English question and a DataFrame and returns a full structured HypoResult — statistic, p-value, effect size, confidence interval, and human-readable interpretation. Zero mandatory dependencies, pure Python math core.

import hypotestx as hx
import pandas as pd

df = pd.read_csv("survey.csv")
result = hx.analyze(df, "Do males earn more than females?")
print(result.summary())

Indices and tables