Differences between revisions 3 and 7 (spanning 4 versions)
Revision 3 as of 2005-12-31 16:41:30
Size: 1086
Editor: 141
Comment:
Revision 7 as of 2008-08-14 09:44:15
Size: 1287
Editor: 203
Comment:
Deletions are marked like this. Additions are marked like this.
Line 6: Line 6:
data
 * categorical(qualitative) data (범주형 자료)
  * nominal data (명목형 자료)
  * ordinal data (순서형 자료)
 * numerical(quantitative) data (수치형 자료)
  * discrete data (이산형 자료)
  * continuous data (연속형 자료)
Line 7: Line 14:
average
 * arithmetic mean (산술평균)
 * median (중앙값)
 * mode (최빈값)
 * geometric mean (기하평균)
 * weighted mean (가중평균)

그외정보
Line 16: Line 31:
 * Test
  * T-Test
  * F-Test
[http://rpy.sourceforge.net/ RPy]를 이용하면 쉽게 p-value를 구할 수 있다.
{{{#!python
from rpy import *
x = [1,2,3,4,5,6,7,8,9,10]
y = [2,2,3,3,4,4]
result = r.var_test(x,y,alternative='greater') # alternative가 없으면 default로 two-sided test가 된다.
print result['p.value']
}}}
 * Test : [RPy]를 이용하면 쉽게 할 수 있다.
Line 33: Line 38:

== 관련도서 ==
 * MedicalStatisticsAtaGlance

The NormalDistribution of the relevance of every statistic ever collected:

http://flea.sourceforge.net/statisticalDistribution.png

Statistics

data

  • categorical(qualitative) data (범주형 자료)
    • nominal data (명목형 자료)
    • ordinal data (순서형 자료)
  • numerical(quantitative) data (수치형 자료)
    • discrete data (이산형 자료)
    • continuous data (연속형 자료)

average

  • arithmetic mean (산술평균)
  • median (중앙값)
  • mode (최빈값)
  • geometric mean (기하평균)
  • weighted mean (가중평균)

그외정보

Useful Term

관련도서

The Book of Statistics

ISBN(0393970833)

혹시 이 책 필요하시면 영풍문고에 가보세요. 3만3천원에 팔고 있던데. 아마존은 너무 비싸죠.(2003/4/24일정보)


See also StatisticsStudy, StatisticsStudyMethod


CategoryBookStatistics

Statistics (last edited 2014-04-22 14:02:38 by 61)

web biohackers.net