레이블이 Statistics인 게시물을 표시합니다. 모든 게시물 표시
레이블이 Statistics인 게시물을 표시합니다. 모든 게시물 표시

2012년 6월 26일 화요일

One-way ANOVA 와 Univariate

아래 페이지에서 찾게 된 글.
필요할 때만 공부해서 통계는 안 느는거 같다. -_-
http://answers.yahoo.com/question/index?qid=20080518160556AAlpG5F


It is the same thing. 'Univariate' means one IV, as does 'one-way'.

Edit
Repeat: its the same thing. SPSS gives you two ways of doing a 1-way ANOVA. As you are a novice just use the 'One Way' option as it gives you fewer option boxes and make you less confused. ANOVA and regression appear under the GLM option as they both fall under this umbrella term (as do many other tests, but that's another story).





2012년 5월 31일 목요일

Confidence interval in Matlab

있는지 모르지만, 대충 만들어본 confidence interval 구하는 함수 (matlab).

function x = getCI(alpha, stdev, sz)
    %Normal inverse cumulative distribution function
    cc = norminv([alpha/2 1-alpha/2],0,1);
    cc = cc(2);
    x = cc *  stdev / sqrt(sz);


사용은 아래처럼


  • conf95_c = getCI(0.05, stdev, length(A));


Excel의 CONFIDENCE 함수와 동일


참고 페이지
http://support.microsoft.com/kb/828124