R&D 투자와 혁신 성과 구조방정식 (Stata)

중급 정량 분석 technological stata
예상 소요 시간 90분
사전 지식 요인분석, 회귀분석
표본 크기 기준 최소 200개 기업
통계 가정 다변량 정규성, 선형성
난이도: 중급 — 실제 연구에 바로 적용 가능한 수준입니다.

개요

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.

코드 예제

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.

이 방법론과 연결된 콘텐츠