키와 몸무게,혈압, 콜레스테롤 수치와 같은 값들은 두 숫자 사이에 끊임없이 다른 숫자가 나타날 수 있는 연속형 수치이며 또한 동일 간격을 가집니다. 이러한 특성을 가진 자료를 비 척도 자료라고 합니다.
반면, IQ 및 온도와 같은 수치도 동일 간격을 가지는 연속형 수치입니다.
하지만 위에서 든 예와는 달리 한 숫자를 다른 숫자에 비해 몇 배 더 크다라고 할 수는 없습니다. 섭씨 40도 온도가 섭씨 20도 온도보다 2배 더 덥다고 할 수 없는 것도 마찬가지입니다. 이러한 특성을 가진 자료를 간격 척도자료라고 합니다.
이렇게 자료가 동일 간격을 가진 연속형 수치인 비 척도 또는 간격 척도인 경우에만 대응 표본 T검정 방법을 사용할 수 있습니다.
2. 두 집단은 반드시 서로 짝을 이루고 있어야 합니다.
3. 자료의 수치는 정규성을 가져야 합니다. 좌 우가 거의 대칭구조를 보이는 정규분포를 이루어야합니다.
n, mean, std.dev, median, trimmed, mad,min, max, range, skew, kurtosis, se
1
library('psych')
1
describe(a$satisf_b)
vars
n
mean
sd
median
trimmed
mad
min
max
range
skew
kurtosis
se
X1
1
247
2.890688
0.7809953
3
2.869347
0
1
5
4
0.1404754
0.3237416
0.04969354
1
describe(a$satisf_i)
vars
n
mean
sd
median
trimmed
mad
min
max
range
skew
kurtosis
se
X1
1
247
3.404858
0.8301096
3
3.482412
1.4826
1
5
4
-0.6955943
0.9204758
0.05281861
1
t.test(a$satisf_b,a$satisf_i,paired=T)
1
2
3
4
5
6
7
8
9
10
Paired t-test
data: a$satisf_b and a$satisf_i
t = -7.1559, df = 246, p-value = 9.519e-12
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-0.6556945 -0.3726456
sample estimates:
mean of the differences
-0.51417
Paired t-test
data: a$satisf_al and a$repurchase
t = -2.1233, df = 246, p-value = 0.03472
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-0.179495526 -0.006739292
sample estimates:
mean of the differences
-0.09311741
1
t.test(a$repurchase,a$satisf_al,paired=T)
1
2
3
4
5
6
7
8
9
10
Paired t-test
data: a$repurchase and a$satisf_al
t = 2.1233, df = 246, p-value = 0.03472
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
0.006739292 0.179495526
sample estimates:
mean of the differences
0.09311741
결론 - 통계적으로 유의하다 대립가설 성립
밀도함수 그리기
1
library(ggplot2)
1
2
3
4
5
Attaching package: 'ggplot2'
The following objects are masked from 'package:psych':
%+%, alpha
Leave a comment