For 03 notebooks you need to import:
from empyrical_dist import Pmf, Cdf
If installed from environment.yaml this module is named "empyrical-dist". Changing to:
from empyrical-dist import Pmf, Cdf
throws an invalid syntax error. I've treid
empydist = __import__("empyrical-dist")
to no avail. What's the best way to work around the dash?
For 03 notebooks you need to import:
from empyrical_dist import Pmf, CdfIf installed from environment.yaml this module is named "empyrical-dist". Changing to:
from empyrical-dist import Pmf, Cdfthrows an invalid syntax error. I've treid
empydist = __import__("empyrical-dist")to no avail. What's the best way to work around the dash?