Re: [Tutor] Which header to use in python

2015-10-01 Thread Alan Gauld
On 01/10/15 16:23, Michel Guirguis wrote: Good afternoon, Basically, I am trying to find a value of the cumulative distribution in Python. Thanks for your help. I have managed to find the cumulative value in scipy but not in the standard Python 3.4. I have solved my problem with scipy but n

Re: [Tutor] Which header to use in python

2015-10-01 Thread Laura Creighton
In a message of Thu, 01 Oct 2015 15:42:25 +0300, Michel Guirguis writes: >Good afternoon, > >What is the name of the header that I can use in Python 3.4 to convert the >cumulative distribution function number 0.10606601717798211 to >0.54223501331161406 > >from scipy.stats import norm > >norm.cdf(

Re: [Tutor] Which header to use in python

2015-10-01 Thread Alan Gauld
On 01/10/15 13:42, Michel Guirguis wrote: What is the name of the header that I can use in Python 3.4 Can you explain what you mean by "header"? That's not a Python concept, Python doesn't have header files like C/C++ to convert the cumulative distribution function number > 0.106066017177982

[Tutor] Which header to use in python

2015-10-01 Thread Michel Guirguis
Good afternoon, What is the name of the header that I can use in Python 3.4 to convert the cumulative distribution function number 0.10606601717798211 to 0.54223501331161406 from scipy.stats import norm norm.cdf(0.10606601717798211) 0.54223501331161406 Thanks, Michel ___