Skip to content
Snippets Groups Projects
Commit f44a371d authored by Theophile GENTILHOMME's avatar Theophile GENTILHOMME
Browse files

Small modification: input of _setup_hist() are now lists (previous changes in bob.measure

parent 54d07691
Branches
Tags
2 merge requests!146Add 4-5-col files related functionalities and add click commands,!143Set of click commands for bio base
Pipeline #
......@@ -202,8 +202,8 @@ class Hist(measure_figure.Hist):
def _setup_hist(self, neg, pos):
self._title_base = 'Bio scores'
self._density_hist(
pos, label='Genuines', alpha=0.9, color='C2', **self._kwargs
pos[0], label='Genuines', alpha=0.9, color='C2', **self._kwargs
)
self._density_hist(
neg, label='Zero-effort impostors', alpha=0.8, color='C0', **self._kwargs
neg[0], label='Zero-effort impostors', alpha=0.8, color='C0', **self._kwargs
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment