Combo: Ecosystem¶
Multi-compartment organism heatmap and concentration envelope violations.
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 combo_ecosystem
fig_heat, fig_env = combo_ecosystem()
from _core import combo_ecosystem
fig_heat, fig_env = combo_ecosystem()
Organism Heatmap¶
In [3]:
Copied!
fig_heat
fig_heat
Out[3]:
Envelope Violations¶
In [4]:
Copied!
fig_env
fig_env
Out[4]: