minoRityPower 는 특히 소수 참가자 모집을 가속화하는 데 중점을 두고 의료 시스템 수준 개입이 임상 시험 등록에 미치는 영향을 탐지하기 위한 통계적 검정력을 추정하도록 설계된 R 패키지입니다. ARPA-H 프로그램 애플리케이션용으로 개발된 이 패키지는 혼합 효과 모델과 부트스트랩 기반 시뮬레이션을 통해 시설 수준 및 참가자 수준 분석을 모두 제공합니다.
임상 시험은 종종 소수 참가자를 모집하는 데 어려움을 겪어 의학 연구에서 과소대표되는 결과를 낳습니다. 의료 시스템 수준의 개입은 소수자 등록을 개선하기 위한 체계적인 변화를 구현함으로써 이 문제를 해결하는 것을 목표로 합니다. 이 패키지는 다음을 수행하는 도구를 제공합니다.
# Install from GitHub
devtools :: install_github( " biostochastics/ minoRityPower " )
이 패키지는 전력 분석에 대한 두 가지 보완적인 접근 방식을 구현합니다.
이 접근 방식은 중재가 시설당 등록된 참가자 수에 어떻게 영향을 미치는지에 초점을 맞춰 시설 수준의 등록 비율을 모델링합니다.
# Facility-level power analysis
facility_results <- run_power_facility(
effect_sizes1 = c( 1.25 , 1.50 ), # 25% and 50% increase in enrollment rate
Ns = c( 30 , 45 , 60 ), # Number of facilities per arm
tau2_facility = 0.64 , # Facility-level variance
mean_rate = 11 # Average monthly enrollment rate
)
이 접근 방식은 개입이 소수 참가자의 등록 가능성에 어떻게 영향을 미치는지에 초점을 맞춰 개별 등록 확률을 모델링합니다.
# Participant-level power analysis
participant_results <- run_power_participant(
effect_sizes1 = c( 1.25 , 1.50 ), # Main intervention effects
effect_sizes2 = c( 1.75 , 2.00 ), # Minority-specific effects
Ns = c( 30 , 45 , 60 ), # Facilities per arm
minority_rate = 0.3 , # Expected minority enrollment proportion
tau2_trial = 1.19 # Trial-level variance
)
이 패키지는 두 분석 유형 모두에 대한 자세한 출력을 제공합니다.
library( minoRityPower )
# 1. Facility-level analysis
facility_results <- run_power_facility(
effect_sizes1 = c( 1.25 , 1.50 ),
Ns = c( 30 , 45 , 60 ),
tau2_facility = 0.64 ,
R_boot = 1000
)
# 2. Participant-level analysis
participant_results <- run_power_participant(
effect_sizes1 = c( 1.25 , 1.50 ), # Main effects
effect_sizes2 = c( 1.75 , 2.00 ), # Minority interaction effects
Ns = c( 30 , 45 , 60 ),
minority_rate = 0.3 ,
R_boot = 1000
)
# 3. View results
print( facility_results $ power_table )
print( participant_results $ power_table )
# 4. Display plots
print( facility_results $ power_plot )
print( participant_results $ power_plot )
이 패키지를 사용하는 경우 다음을 인용해 주세요.
@software { your_citation_2024 ,
author = { Sergey Kornilov } ,
title = { minoRityPower : Power Analysis for Healthcare System Interventions in Clinical Trial Enrollment } ,
year = { 2024 } ,
publisher = { GitHub } ,
version = { 0.1.1 } ,
url = { https://github.com/biostochastics/minoRityPower }
}
이 프로젝트는 MIT 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 LICENSE 파일을 참조하세요.
기여를 환영합니다! GitHub를 통해 이슈 및 풀 요청을 제출해 주세요.
이 작업은 ARPA-H 프로그램 적용을 위한 의료 시스템 수준 개입의 평가를 지원하기 위해 개발되었으며, 소수 참가자의 임상 시험 등록을 가속화하는 데 중점을 두고 있습니다.