Skip to content

Commit

Permalink
Second bugfix on sensitivity comparison in VolumetricAnalysis (#863)
Browse files Browse the repository at this point in the history
  • Loading branch information
tnatt authored Dec 1, 2021
1 parent 0771e9f commit 924ac97
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,8 @@ def create_comparison_df(
return pd.DataFrame()

df = df.loc[:, groups + responses].pivot_table(
columns=compare_on, index=[x for x in groups if x != compare_on]
columns=compare_on,
index=[x for x in groups if x not in [compare_on, "SENSNAME_CASE"]],
)
responses = [x for x in responses if x in df]
for col in responses:
Expand Down

0 comments on commit 924ac97

Please sign in to comment.