Skip to content

Commit

Permalink
fix bug in func effect diffs tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
jbloom committed Dec 20, 2024
1 parent 4e2afe7 commit 41faa9f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

### version 3.19.3
- Fix bug in `func_effect_diffs` tooltips introduced in 3.19.2.

### version 3.19.2
- Make `func_effect_diffs` work when there are many selections by making correlation heatmap rather than many scatters, and showing tooltips as list of per-selection values. Also makes `per_selection_tooltips` not needed in config for `func_effect_diffs`.

Expand Down
2 changes: 1 addition & 1 deletion notebooks/func_effect_diffs.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@
" **{\n",
" f\"{condition} selections\": lambda x: x.apply(\n",
" lambda r: \", \".join(\n",
" r[s] for s in condition_2_selections if not pd.isnull(r[s])\n",
" r[s] for s in condition_selections if not pd.isnull(r[s])\n",
" ),\n",
" axis=1,\n",
" )\n",
Expand Down

0 comments on commit 41faa9f

Please sign in to comment.