add statistics imports

This commit is contained in:
Benjamin Bertrand 2016-08-17 09:38:02 +03:00
parent 0579535350
commit 4cf7f19fad
1 changed files with 4 additions and 0 deletions

View File

@ -18,6 +18,8 @@ from pymath.calculus.polynomDeg2 import Polynom_deg2
from pymath import Fraction
from pymath import random_str
from pymath import random_pythagore
from pymath import Dataset
from pymath import WeightedDataset
export_dict = {}
@ -31,6 +33,8 @@ export_dict.update({"Expression":Expression,\
"Equation":Equation,\
"random_str": random_str,\
"random_pythagore":random_pythagore,\
"Dataset": Dataset, \
"WeightedDataset": WeightedDataset,\
})
def produce_and_compile(options):