Is there any way to import modules for stat. functions like SD, probabilities, distribution equations? Does the math module cover such functions? If so where's the syntax for it?
NumPy, SciPy and matplotlib are Python libraries that contain basic statistics functions. You're going to need them if you want to do anything serious. Statsmodels could also be useful.
NumPy, SciPy and matplotlib are Python libraries that contain basic statistics functions. You're going to need them if you want to do anything serious. Statsmodels could also be useful.
Apart from the ones already mentioned, try out 'rpy2' which implements quite a bit of R functionality within python. Pretty easy to use, especially if you have experience with R.
More correctly speaking, rpy2 is an interface to R that lets you call R from Python. That is, it is not an implementation of R functionality in Python. You will also need R to be installed in your system to be able to use rpy2.
I think you can use pandas module (http://pandas.pydata.org/) or some wrapper for R. There is also SAGE (www.sagemath.org) - but this software is a huge set of packages and not all would be useful for You.