Skip to content

Commit

Permalink
bug fix for 'gridkey' missing argument
Browse files Browse the repository at this point in the history
  • Loading branch information
JAnns98 committed Sep 9, 2024
1 parent a14be86 commit 3f65777
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dabest/plotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -1146,10 +1146,10 @@ def effectsize_df_plotter(effectsize_df, **plot_kwargs):
].iloc[0]
curr_esval_str = np.format_float_positional(
curr_esval,
precision=es_sf,
precision=2,
sign=True,
trim="k",
min_digits=es_sf,
min_digits=2,
)
effsize_list.append(curr_esval_str)
else:
Expand Down
4 changes: 2 additions & 2 deletions nbs/API/plotter.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1205,10 +1205,10 @@
" ].iloc[0]\n",
" curr_esval_str = np.format_float_positional(\n",
" curr_esval,\n",
" precision=es_sf,\n",
" precision=2,\n",
" sign=True,\n",
" trim=\"k\",\n",
" min_digits=es_sf,\n",
" min_digits=2,\n",
" )\n",
" effsize_list.append(curr_esval_str)\n",
" else:\n",
Expand Down

0 comments on commit 3f65777

Please sign in to comment.