Skip to content

Commit

Permalink
Update network legend and header in IO documentation page
Browse files Browse the repository at this point in the history
  • Loading branch information
cynddl committed Jul 1, 2015
1 parent b34749e commit 7870537
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion demo/viz/network_view/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

</style>
<body>
<object data="legend.svg" type="image/svg+xml" width="400px" height="300px" class="legend"></object>
<object data="legend.svg" type="image/svg+xml" width="300px" height="150px" class="legend"></object>
<script type="text/javascript" src="../bower_components/d3/d3.min.js"></script>
<script type="text/javascript" src="../bower_components/papaparse/papaparse.min.js"></script>
<script type="text/javascript" src="../bower_components/jquery/dist/jquery.min.js"></script>
Expand Down
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
bandicoot -- a python toolbox to learn from metadata
====================================================
bandicoot, an open-source python toolbox to analyze mobile phone metadata
=========================================================================

`bandicoot <http://bandicoot.mit.edu/>`_ is an open-source python toolbox to analyze and extract behavioral indicators from mobile phone data. It
is developed by `Yves-Alexandre de Montjoye <http://deMontjoye.com/>`_, `Luc
Expand Down
2 changes: 1 addition & 1 deletion docs/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ bandicoot takes one file per user and assume that all user records are in the pr

>>> B = bc.read_csv('my_user', 'records/', 'antennas.csv')

This :meth:`~bandicoot.io.read_csv` will load records for the user `my_user` from `records/my_user.csv` and will load antennas from the file `antennas.csv`. Optionally, bandicoot can also load a file containing :ref:`attributes <loadingdata-label>` for this user.
This :meth:`~bandicoot.io.read_csv` will load records for the user `my_user` from `records/my_user.csv` and will load antennas from the file `antennas.csv`. Optionally, bandicoot can also load a file containing :ref:`attributes <attributes-label>` for this user.


.. image:: _static/mini-mockups-01.png
Expand Down
15 changes: 7 additions & 8 deletions docs/reference/bandicoot.io.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
IO
==


:meth:`~bandicoot.io.read_csv` is the standard way to load users. bandicoot can also load users though
:meth:`~bandicoot.io.load` (low-level function, called by :meth:`~bandicoot.io.read_csv`) or other CSV formats such as
:meth:`~bandicoot.io.read_orange` or :meth:`~bandicoot.io.read_telenor` (deprecated).


.. currentmodule:: bandicoot.io

.. autosummary::
Expand All @@ -15,14 +21,7 @@ IO
filter_record


.. _loadingdata-label:

Loading data and exporting indicators
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

:meth:`~bandicoot.io.read_csv` is the standard way to load users. bandicoot can also load users though
:meth:`~bandicoot.io.load` (low-level function, called by :meth:`~bandicoot.io.read_csv`) or other CSV formats such as
:meth:`~bandicoot.io.read_orange` or :meth:`~bandicoot.io.read_telenor` (deprecated).
.. _attributes-label:

Attributes
----------
Expand Down

0 comments on commit 7870537

Please sign in to comment.