Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I think numpy or scipy will do it, but didn't find. Thanks!

share|improve this question
1  
Could you define your problem more precisely. – David Heffernan Jan 20 '12 at 16:01

2 Answers

import numpy as np
import scipy.stats as stats

np.random.seed(0)
gaussian = stats.norm

Generating some random, normal data:

data = gaussian.rvs(loc = 5, scale = 22, size = 1000)

Computing descriptive statistics:

print(data.mean())
# 4.00435243522
print(data.std())
# 21.7147294907

Fitting the data to a normal distribution:

mean, std = gaussian.fit(data)
print(mean, std)
# (4.0043524352157016, 21.714729490718568)
share|improve this answer
Is there any way I can do extrapolation? – Hailiang Zhang Jan 20 '12 at 16:32
What do you mean by extrapolation? – unutbu Jan 20 '12 at 16:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.