Installation#
pip install numeraire-graphics
This pulls in numeraire (the framework whose results it plots) and
plotnine with its rendering stack. Python 3.11+ is required.
numeraire-graphics is a companion package; the framework installs it for you through the
convenience extra:
pip install "numeraire[graphics]" # numeraire + numeraire-graphics
pip install "numeraire[all]" # numeraire + graphics + dataset
With uv:
uv add numeraire-graphics
Verify#
from importlib.metadata import version
import numeraire_graphics # noqa: F401
print(version("numeraire-graphics"))