William Stein wrote: > Sage also includes the scipy.stats package, which has 100 or > so distributions: > > sage: import scipy.stats > sage: help(scipy.stats)
For further information, you can look on the scipy documentation webpage too: http://docs.scipy.org/doc/scipy/reference/stats.html Because numpy does not recognize the sage numbers, you do have to be a bit careful. For example, the function you wanted I believe is: sage: scipy.stats.norm.cdf(0.3r) array(0.61791142218895267) (notice the "r"; it won't work without it. That means to make a python 0.3, not a Sage 0.3. You could also use float(0.3) ) Jason --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sage-support URLs: http://www.sagemath.org -~----------~----~----~----~------~----~------~--~---