We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0c9b4a commit fc47574Copy full SHA for fc47574
growthviz/charts.py
@@ -460,7 +460,8 @@ def overlap_view_double_pediatrics(
460
color_secondary = "tab:blue"
461
462
# Allow zooming in a bit if this is a young subject
463
- if (maxage := individual["ageyears"].max()) < 10:
+ maxage = individual["ageyears"].max()
464
+ if maxage < 10:
465
ax1_xlim = [0, maxage * 1.1]
466
# Find stature at P95 for maxage
467
pct_max = round(
requirements.txt
@@ -3,4 +3,5 @@ jupyter-server<2.0.0
3
matplotlib>=3.3.4
4
pandas>=1.2.2
5
qgrid>=1.3.1
6
+scipy
7
seaborn>=0.11.1
0 commit comments