remove "exemple" in docstring

This commit is contained in:
Benjamin Bertrand 2016-01-12 11:29:14 +03:00
parent 529870b680
commit 2cb909e31e
2 changed files with 0 additions and 3 deletions

View File

@ -19,7 +19,6 @@ def random_generator(length,\
:param v_max: maximum accepted value
:param exact_mean: if set, the last generated number will be create in order that the computed mean is exacly equal to "exact_mean"
: Exemple:
>>> random_generator(10)
>>> random_generator(10, distrib = uniform, rd_args = (5, 10))
>>> random_generator(10, distrib = "uniform", rd_args = (5, 10))

View File

@ -95,8 +95,6 @@ class WeightedDataset(dict):
:return: un tuple avec (min, Q1, Me, Q3, Max)
: Exemple:
>>> w = WeightedDataset(flatten_list([i*[i] for i in range(5)]))
>>> w.quartiles()
(1, 2, 3, 4, 4)