From d1899d3860dc89c1df593e121a88c7c2a51137dc Mon Sep 17 00:00:00 2001
From: Manuel Guenther <manuel.guenther@idiap.ch>
Date: Thu, 2 Oct 2014 12:20:02 +0200
Subject: [PATCH] Included bob.measure... submodules into documentation.

---
 doc/guide.rst  |  4 ++--
 doc/py_api.rst | 18 ++++++++++++++++++
 2 files changed, 20 insertions(+), 2 deletions(-)

diff --git a/doc/guide.rst b/doc/guide.rst
index 88009cd..e64e8c8 100644
--- a/doc/guide.rst
+++ b/doc/guide.rst
@@ -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
 
diff --git a/doc/py_api.rst b/doc/py_api.rst
index f9aec07..125a671 100644
--- a/doc/py_api.rst
+++ b/doc/py_api.rst
@@ -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
+
-- 
GitLab