~ubuntu-branches/ubuntu/trusty/python-networkx/trusty

« back to all changes in this revision

Viewing changes to doc/source/reference/utils.rst

  • Committer: Bazaar Package Importer
  • Author(s): Cyril Brulebois
  • Date: 2009-11-23 15:44:34 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20091123154434-ellm2ut3a4edf9wh
Tags: 1.0~rc1~svn1492-1
* New upstream snapshot, past 1.0~rc1, as requested by Yaroslav
  Halchenko (Closes: #549996).
* Refresh patch accordingly:
   + debian/patches/10_doc_relocation.
* Get rid of extra LICENSE.txt file in /usr/share/doc.
* Use dh_compress -Xexamples/ to avoid compressing examples, thanks to
  Sandro Tosi (Closes: #539942).
* Bump Standards-Version from 3.8.0 to 3.8.3 (no changes needed).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
*********
 
2
Utilities
 
3
*********
 
4
 
 
5
.. automodule:: networkx.utils
 
6
.. currentmodule:: networkx.utils
 
7
 
 
8
Helper functions
 
9
----------------
 
10
 
 
11
.. autosummary::
 
12
   :toctree: generated/
 
13
 
 
14
   is_string_like
 
15
   flatten
 
16
   iterable
 
17
   is_list_of_ints
 
18
   _get_fh
 
19
 
 
20
Data structures and Algorithms
 
21
------------------------------
 
22
.. autosummary::
 
23
   :toctree: generated/
 
24
 
 
25
   UnionFind.union
 
26
 
 
27
Random sequence generators
 
28
--------------------------
 
29
.. autosummary::
 
30
   :toctree: generated/
 
31
 
 
32
   pareto_sequence
 
33
   powerlaw_sequence
 
34
   uniform_sequence
 
35
   cumulative_distribution
 
36
   discrete_sequence
 
37
 
 
38
 
 
39
SciPy random sequence generators
 
40
----------------------------------
 
41
.. autosummary::
 
42
   :toctree: generated/
 
43
 
 
44
   scipy_pareto_sequence
 
45
   scipy_powerlaw_sequence
 
46
   scipy_poisson_sequence
 
47
   scipy_uniform_sequence
 
48
   scipy_discrete_sequence
 
49