|
本帖最后由 Menuett 于 2013-12-22 15:59 编辑
" ?9 {, I+ U& R4 Z煮酒正熟 发表于 2013-12-20 12:05 3 [# f6 s3 O" @6 {$ b3 w; S
基本可以说是显著的。总的来说,在商界做统计学分析,95%信心水平是用得最多的,当95%上不显著时,都会去 ... ( x y8 l" h5 L
% L+ Z, H. N: |2 E
这个其实是一种binomial response,应该用Contigency Table或者Logisitic Regression(In case there are cofactors)来做。只记比率丢弃了Number of trial的信息(6841和1217个客户)。 5 C9 X9 a! P6 @/ E
, x8 {. [6 o9 D& M& d结果p=0.5731。 远远不显著。要在alpha level 0.05的水平上检验出76.42%和75.62%的区别,即使实验组和对照组各自样本大小相同,各自尚需44735个样本(At power level 80%)。see: Statistical Methods for Rates and Proportions by Joseph L. Fleiss (1981). w* m e7 F) F" ~: V0 Z
& e9 s: L- t/ v0 P m
R example:2 n# d; p( b2 P0 z- h
$ T: D. ^$ n: p* `+ y( c> M<-as.table(rbind(c(1668,5173),c(287,930)))
: J( z' E; K X* y b6 E> chisq.test(M)7 t1 y6 r y* a: c `
5 u% Y- x3 Y3 d4 Z' \- z" l Pearson's Chi-squared test with Yates' continuity correction) C+ G7 Q! R9 h& F$ a
- d4 d2 A) j0 n3 ]data: M
: m% L3 a' S: O L, {X-squared = 0.3175, df = 1, p-value = 0.5731
* U& t) @! w8 W- s
# m. ]7 U* m* k& C: yPython example:
* M% J: r" ]" m% r. K/ i
8 i7 {2 i* C; V3 o* j0 k; V7 i/ {>>> from scipy import stats
2 b h# |6 v3 o" F8 J9 T, F>>> stats.chi2_contingency([[6841-5173,5173],[1217-930,930]])
" f0 g, s6 ~' i: o! s. h(0.31748297614660292, 0.57312422493552839, 1, array([[ 1659.73628692, 5181.26371308],
$ d4 g- O& |0 U. C [ 295.26371308, 921.73628692]])) |
|