Demo 06: Life & Survival¶
Population dynamics and concentration envelopes.
In [1]:
Copied!
import sys
from pathlib import Path
# Ensure alienbio is importable
_root = Path(".").resolve().parent.parent / "src"
if str(_root) not in sys.path:
sys.path.insert(0, str(_root))
_demos = Path(".").resolve().parent
if str(_demos) not in sys.path:
sys.path.insert(0, str(_demos))
%matplotlib inline
import sys
from pathlib import Path
# Ensure alienbio is importable
_root = Path(".").resolve().parent.parent / "src"
if str(_root) not in sys.path:
sys.path.insert(0, str(_root))
_demos = Path(".").resolve().parent
if str(_demos) not in sys.path:
sys.path.insert(0, str(_demos))
%matplotlib inline
In [2]:
Copied!
from _core import demo_06_features
fig_pop, fig_env = demo_06_features()
from _core import demo_06_features
fig_pop, fig_env = demo_06_features()
Population Dynamics¶
In [3]:
Copied!
fig_pop
fig_pop
Out[3]:
Concentration Envelope¶
Viable range for zynol: 1.0–8.0
In [4]:
Copied!
fig_env
fig_env
Out[4]: