Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

result of paper #26

Open
LYF14020510036 opened this issue May 6, 2019 · 2 comments
Open

result of paper #26

LYF14020510036 opened this issue May 6, 2019 · 2 comments

Comments

@LYF14020510036
Copy link

def mean_confidence_interval(data, confidence=0.95):
a = 1.0*np.array(data)
n = len(a)
m, se = np.mean(a), scipy.stats.sem(a)
h = se * sp.stats.t._ppf((1+confidence)/2., n-1)
return m,h

hello,could you tell me this h means? Volatility value of Paper Result ?

@buaa-luzhi
Copy link

@LYF14020510036
Do you know what h means? Thanks

@kravrolens
Copy link

Percent point function (inverse of cdf) at q of the given RV.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants