Skip to content

Commit

Permalink
Included bob.measure... submodules into documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Guenther committed Oct 2, 2014
1 parent 651554e commit d1899d3
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ town. To plot an ROC curve, in possession of your **negatives** and
>>> # we assume you have your negatives and positives already split
>>> npoints = 100
>>> bob.measure.plot.roc(negatives, positives, npoints, color=(0,0,0), linestyle='-', label='test') # doctest: +SKIP
>>> pyplot.xlabel('FRR (%)') # doctest: +SKIP
>>> pyplot.ylabel('FAR (%)') # doctest: +SKIP
>>> pyplot.xlabel('FAR (%)') # doctest: +SKIP
>>> pyplot.ylabel('FRR (%)') # doctest: +SKIP
>>> pyplot.grid(True)
>>> pyplot.show() # doctest: +SKIP

Expand Down
18 changes: 18 additions & 0 deletions doc/py_api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,23 @@
This section includes information for using the pure Python API of ``bob::measure``.


Measurement
-----------

.. automodule:: bob.measure

Loading data
------------

.. automodule:: bob.measure.load

Calibration
-----------

.. automodule:: bob.measure.calibration

Plotting
--------

.. automodule:: bob.measure.plot

0 comments on commit d1899d3

Please sign in to comment.