I need to use probability and cumulative density functions in a Python application I'm programming. SciPy offers both, but it seems too hefty of a dependency for just those two functions. PDF seems easy enough to implement without SciPy. (From the docs:)
The probability density function for norm is:
norm.pdf(x) = exp(-x**2/2)/sqrt(2*pi)
Is there a way to get CDF as well without using SciPy?