목차
1.상호작용 있는 이원변량분석
2.분석한 프로그램
2.분석한 프로그램
본문내용
단순 주효과 분석 결과는 다음과 같다. 첫째, 삼성을 제외한 두 브랜드에서 DSLR의 제품선호도의 평균이 컴팩트의 제품선호도 평균보다 높은 것으로 나타났다. 반면 삼성은 DSLR에선 72.33으로 가장 낮은 제품선호도를 보였으나 컴팩트에서는 84.33으로 가장 높은 제품선호도를 나타내었다. 둘째, 단순 주효과 분석에서 캐논은 F비 26.28을 나타내어 카메라 종류에 상관없이 제품선호도가 가장 높았고, 그다음으로 니콘이 F비 24.53로 역시 카메라 종류에 상관없이 제품선호도 두 번째를 차지했다.
2.분석한 프로그램
1-(가)
data system;
input a b y@@;
cards;
1 1 240 2 1 110 3 1 56
1 1 206 2 1 118 3 1 60
1 1 217 2 1 103 3 1 68
1 1 225 2 1 95 3 1 58
1 2 71 2 2 47 3 2 37
1 2 53 2 2 52 3 2 33
1 2 68 2 2 31 3 2 40
1 2 57 2 2 49 3 2 45
;
proc tabulate fc(1 6 7 8)=' - ';
class a b;var y;
table b all,(a all)*y*(mean*f=5.2 std*f=5.2)/rts=12;
proc anova;class a b;model y=a b a*b;
proc sort;by b;
proc anova;class a;model y=a;by b;
means a/scheffe;
proc sort;by a;
proc anova;class b;model y=b;by a;
run;
1-(나)
data edu;
input a b y@@;
cards;
1 1 2 2 1 2 3 1 4 4 1 15
1 1 6 2 1 7 3 1 8 4 1 12
1 1 8 2 1 8 3 1 11 4 1 9
1 1 10 2 1 8 3 1 5 4 1 10
1 1 9 2 1 10 3 1 3 4 1 14
1 2 7 2 2 6 3 2 9 4 2 13
1 2 9 2 2 9 3 2 14 4 2 12
1 2 11 2 2 9 3 2 15 4 2 10
1 2 9 2 2 7 3 2 10 4 2 6
1 2 8 2 2 8 3 2 12 4 2 9
;
proc tabulate fc(1 6 7 8)=' - ';
class a b;var y;
table b all,(a all)*y*(mean*f=5.2 std*f=5.2)/rts=12;
proc anova;class a b;model y=a b a*b;
proc sort;by b;
proc anova;class a;model y=a;by b;
means a/scheffe;
proc sort;by a;
proc anova;class b;model y=b;by a;
run;
1-(다)
data camera;
input a b y@@;
cards;
1 1 80 2 1 83 3 1 72
1 1 85 2 1 75 3 1 70
1 1 88 2 1 80 3 1 78
1 2 65 2 2 90 3 2 92
1 2 74 2 2 94 3 2 98
1 2 78 2 2 93 3 2 88
;
proc anova;class a b;model y=a b a*b;
proc tabulate fc(1 6 7 8)=' - ';
class a b;var y;
table b all,(a all)*y*(mean*f=5.2 std*f=5.2)/rts=12;
proc sort;by b;
proc anova;class a;model y=a;by b;
means a/scheffe;
proc sort;by a;
proc anova;class b;model y=b;by a;
run;
*출처는 각 자료 제시 시 각주로 명시하였습니다.
2.분석한 프로그램
1-(가)
data system;
input a b y@@;
cards;
1 1 240 2 1 110 3 1 56
1 1 206 2 1 118 3 1 60
1 1 217 2 1 103 3 1 68
1 1 225 2 1 95 3 1 58
1 2 71 2 2 47 3 2 37
1 2 53 2 2 52 3 2 33
1 2 68 2 2 31 3 2 40
1 2 57 2 2 49 3 2 45
;
proc tabulate fc(1 6 7 8)=' - ';
class a b;var y;
table b all,(a all)*y*(mean*f=5.2 std*f=5.2)/rts=12;
proc anova;class a b;model y=a b a*b;
proc sort;by b;
proc anova;class a;model y=a;by b;
means a/scheffe;
proc sort;by a;
proc anova;class b;model y=b;by a;
run;
1-(나)
data edu;
input a b y@@;
cards;
1 1 2 2 1 2 3 1 4 4 1 15
1 1 6 2 1 7 3 1 8 4 1 12
1 1 8 2 1 8 3 1 11 4 1 9
1 1 10 2 1 8 3 1 5 4 1 10
1 1 9 2 1 10 3 1 3 4 1 14
1 2 7 2 2 6 3 2 9 4 2 13
1 2 9 2 2 9 3 2 14 4 2 12
1 2 11 2 2 9 3 2 15 4 2 10
1 2 9 2 2 7 3 2 10 4 2 6
1 2 8 2 2 8 3 2 12 4 2 9
;
proc tabulate fc(1 6 7 8)=' - ';
class a b;var y;
table b all,(a all)*y*(mean*f=5.2 std*f=5.2)/rts=12;
proc anova;class a b;model y=a b a*b;
proc sort;by b;
proc anova;class a;model y=a;by b;
means a/scheffe;
proc sort;by a;
proc anova;class b;model y=b;by a;
run;
1-(다)
data camera;
input a b y@@;
cards;
1 1 80 2 1 83 3 1 72
1 1 85 2 1 75 3 1 70
1 1 88 2 1 80 3 1 78
1 2 65 2 2 90 3 2 92
1 2 74 2 2 94 3 2 98
1 2 78 2 2 93 3 2 88
;
proc anova;class a b;model y=a b a*b;
proc tabulate fc(1 6 7 8)=' - ';
class a b;var y;
table b all,(a all)*y*(mean*f=5.2 std*f=5.2)/rts=12;
proc sort;by b;
proc anova;class a;model y=a;by b;
means a/scheffe;
proc sort;by a;
proc anova;class b;model y=b;by a;
run;
*출처는 각 자료 제시 시 각주로 명시하였습니다.
추천자료
[심리학] 융의 분석 심리학
[심리학개론] 심리학개론 요점정리 서브노트
스포츠 심리학 A+ 완벽정리(스포츠심리학의 정의와 역사 및 스포츠심리학의 목적과 분류)
심리기술훈련과 수행향상 (스포츠심리학 정의)
[인간과심리 1공통] 이제껏 배운 심리학 이론과 관련된 최근의 사례(뉴스기사)를 찾아, 그 심...
인지심리학에 대해서 논하고 일상생활에서 나타나는 구체적인 사례를 적용하여 5가지 서술하...
(교육심리학 역사) 교육심리학의 역사를 정리하고 교육심리학의 발전과정과 자신의 앞으로의 ...
[문학의 이해 공통] 프로이트의 심리주의 비평의 방법론을 적용하여 자신이 애독, 애청한 소...
[심리학과 심리치료] 아들러치료에 대한 개관적 이해(철학적 전제, 성격모델, 건강모델, 이상...
[스포츠 심리] 스포츠 심리기술훈련의 방법 분석 ; 심리훈련기술의 절차 및 프로그램
심리학이 왜 필요한지, 심리학에는 어떤 분야가 있는지에 대해 정리하세요
교육심리학-교육심리학의 연구방법에 대하여 설명하고, 자신이 관심 있는 교육현상에 대하여 ...
심리학의 여러 분야들에 대해 요약하고 본인이 관심 있는 심리학에 대한 소개와 관련된 영화,...
소개글