R&D 투자와 혁신 성과 구조방정식 (초급 STATA)
초급
정량 분석
technological
stata
난이도: 초급 — 입문자를 위한 간략화된 설명입니다.
개요
R&D 투자가 기업 혁신 성과를 거쳐 기업 성과에 미치는 구조적 관계를 구조방정식 모형(Structural Equation Model)으로 분석한다. Stata의 sem 명령어를 사용한다.
분석 절차
1단계: 측정모형 적합
잠재 변수(R&D 강도, 혁신, 기업 성과)를 측정하는 관측 변수들의 확인적 요인분석을 수행한다.
2단계: 구조모형 추정
잠재 변수 간의 인과 경로를 설정하고 모형을 추정한다. R&D → 혁신 → 성과의 매개 경로를 검증한다.
3단계: 모형 적합도 평가
CFI > 0.90, RMSEA < 0.08, SRMR < 0.08이면 모형 적합도가 허용 가능하다.
4단계: 수정 지수 확인
estat mindices로 모형 개선 가능성을 확인한다.
코드 예제
* 측정모형 (확인적 요인분석)
sem (rd_intensity -> rd_budget rd_personnel rd_patent) ///
(innovation -> new_product_count patent_citation process_improvement) ///
(firm_performance -> revenue_growth market_share roa)
* 구조모형 (경로 분석)
sem (rd_intensity -> innovation firm_performance) ///
(innovation -> firm_performance) ///
(firm_size -> rd_intensity)
* 모형 적합도
estat gof, stats(all)
* 수정 지수
estat mindices
참고문헌
Kline, R. B. (2016). Principles and Practice of Structural Equation Modeling (4th ed.). Guilford Press.
학습 팁
이 방법론은 초급 수준입니다. 먼저 기초 통계 개념을 익힌 후 진행하세요. SPSS나 R의 기본 조작법을 숙지하면 더 수월합니다.
코드 예제
STATA
* 측정모형 (확인적 요인분석) sem (rd_intensity -> rd_budget rd_personnel rd_patent) /// (innovation -> new_product_count patent_citation process_improvement) /// (firm_performance -> revenue_growth market_share roa) * 구조모형 (경로 분석) sem (rd_intensity -> innovation firm_performance) /// (innovation -> firm_performance) /// (firm_size -> rd_intensity) * 모형 적합도 estat gof, stats(all) * 수정 지수 estat mindices
참고문헌
Kline, R. B. (2016). Principles and Practice of Structural Equation Modeling (4th ed.). Guilford Press.