이 수치를 어떻게 산출하는지 설명합니다.
이 사이트의 모든 수치는 표절 논문 철회율입니다. 즉, 한 국가, 기관, 또는 학문 분야가 표절로 인해 받은 논문 철회 건수를 해당 기간 내 발표 논문 수로 나눈 값입니다. 이 페이지에서는 각 수치가 어떻게 산출되는지, 신뢰 수준, 인용 시 유의해야 할 편향을 상세히 설명합니다.
집계 방식
분자는 Retraction Watch 데이터베이스(Crossref에서 호스팅, 약 70 000건)에서 가져옵니다. 표절 사유가 엄격하게 plagiarism of/in 코드로 명시된 기록만 포함하며, '표절의 완곡어법'이나 단순 중복 등은 제외합니다. 2015–2024 기간 동안 1,879건의 고유 기록이 해당됩니다.
기관 및 학문 분야 정보는 논문 DOI를 통해 OpenAlex에서 매칭합니다. Retraction Watch의 자유 입력 소속 필드는 사용하지 않습니다. OpenAlex는 각 논문의 소속을 표준 ROR 식별자로 정규화하고 학문 분야를 태깅하므로, DOI 조회 시 정확한 기관과 분야가 반환됩니다. 자유 입력 소속 문자열을 해석하면 학과명 등으로 시작해 잘못된 기관에 매칭될 수 있으므로, 이는 명시적으로 허용하지 않습니다.
~91% of plagiarism records carry a DOI; ~90% of those resolve to a ROR institution, so roughly four in five records attribute to a canonical institution.
정규화 방식
Raw counts mislead: high-output research systems accumulate more retractions simply because they publish more. By raw count China leads with 564; by rate it sits at 7.0 per 100k. We therefore report rates, and the system is built so it cannot rank entities by absolute count.
모든 수치에 대한 출처 신뢰도
각 통계는 산출 방식을 명시하여 인용 전 신뢰도를 평가할 수 있도록 했습니다.
Direct measurement
Counted from primary records (Retraction Watch).
Curated aggregate
Compiled from multiple primary sources.
Modeled / inferred
Statistical extrapolation with stated confidence.
Survey-based
Self-reported, with sampling limitations.
알려진 편향 및 한계
직접 재현하기
전체 파이프라인은 무료이면서 인증키가 필요 없는 HTTP 요청 두 번과 조인 연산만으로 구성됩니다. API 키나 유료 등급이 필요하지 않습니다.
# 1. Retraction Watch 데이터베이스 (~65MB CSV) curl "https://api.labs.crossref.org/data/retractionwatch?mailto=YOU@example.com" \ -o retraction_watch.csv # 2. OpenAlex 국가별 연구성과, 2015–2024 (분모) curl "https://api.openalex.org/works?filter=publication_year:2015-2024\ &group_by=authorships.institutions.country_code&per-page=200&mailto=YOU@example.com" # 3. 'plagiarism of/in' 사유가 명확히 기재된 건만 유지, DOI로 매칭, # 논문 수로 나누고, 100,000을 곱함. 신뢰구간은 Wilson 구간 사용.
참고 구현 코드는 프로젝트의 stats/ 파이프라인에 있습니다.