nhb

cea.nhb(outcomes, wtp, *, effect=None)

Net health benefit per iteration and intervention: effect - cost / wtp.

Example

import pandas as pd from heormodel.models import Outcomes from heormodel.cea import nhb c = pd.DataFrame({“A”: [100.0]}) e = pd.DataFrame({“A”: [0.01]}) float(nhb(Outcomes.from_wide(c, e), wtp=50_000)[“A”][0]) 0.008