Skip to content

Commit

Permalink
Removed reset_index() call causing DataFrame indices to be plotted
Browse files Browse the repository at this point in the history
  • Loading branch information
PrinceWalnut committed Dec 18, 2024
1 parent ed24341 commit bc8e54d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion careless/stats/completeness.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def run_analysis(args):
print(results.to_string(index=False))

ax = sns.lineplot(
data=results.reset_index().melt(xlabel),
data=results.melt(xlabel),
x=xlabel,
y='value',
hue='variable',
Expand Down

0 comments on commit bc8e54d

Please sign in to comment.