Skip to content

Commit

Permalink
Fix biology quartile (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
svittoz committed Jun 21, 2024
1 parent 9cd7f1a commit 5539046
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Unreleased
### Fixed
- Quartiles computed from plot_concepts_set does not depend on value selection anymore

## v0.1.8 (2024-06-13)

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions eds_scikit/biology/viz/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ def plot_interactive_distribution(measurement: DataFrame):
),
],
)
)
).transform_filter(value_selection)

terminology_outlier_base = (
terminology_dist_base.transform_joinaggregate(
Expand Down Expand Up @@ -502,7 +502,7 @@ def plot_interactive_distribution(measurement: DataFrame):
lambda terminology_distribution_1, terminology_distribution_2: terminology_distribution_1
| terminology_distribution_2,
terminologies_distribution,
).transform_filter(value_selection)
)
overall_densities = reduce(
lambda overall_density_1, overall_density_2: alt.hconcat(
overall_density_1, overall_density_2, spacing=75
Expand Down

0 comments on commit 5539046

Please sign in to comment.