Fix: Clean weightedDataset from flatten_list
This commit is contained in:
		| @@ -1,18 +1,19 @@ | |||||||
| #/usr/bin/env python | #/usr/bin/env python | ||||||
| # -*- coding:Utf-8 -*- | # -*- coding:Utf-8 -*- | ||||||
|  |  | ||||||
| # | """ | ||||||
| # |  Statistical tools which should ease statistical exercises creation | ||||||
| # Ensemble de fonction rendant beaucoup plus pratique la résolution et l'élaboration des exercices de stat au lycée | """ | ||||||
| # |  | ||||||
| # |  | ||||||
|  |  | ||||||
| from math import sqrt, ceil | from math import sqrt, ceil | ||||||
| from collections import Counter | from collections import Counter | ||||||
| from .dataset import Dataset | from .dataset import Dataset | ||||||
| from ..calculus.generic import flatten_list | from itertools import chain | ||||||
| from .number_tools import number_factory | from .number_tools import number_factory | ||||||
|  |  | ||||||
|  | def flatten_list(l): | ||||||
|  |     return list(chain(*l)) | ||||||
|  |  | ||||||
| class WeightedDataset(dict): | class WeightedDataset(dict): | ||||||
|     """ A weighted dataset with statistics and latex rendering methods |     """ A weighted dataset with statistics and latex rendering methods | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user