minoRityPowerは、臨床試験登録に対する医療システムレベルの介入の影響を検出するための統計検出力を推定するために設計された R パッケージであり、特に少数派の参加者の募集を加速することに重点を置いています。 ARPA-H プログラム アプリケーション用に開発されたこのパッケージは、混合効果モデルとブートストラップ ベースのシミュレーションを通じて、施設レベルと参加者レベルの両方の分析を提供します。
臨床試験では、少数派の参加者を集めるという課題に直面することが多く、医学研究における参加者の過小評価につながります。医療制度レベルの介入は、少数派の登録を改善するための体系的な変更を実施することで、この問題に対処することを目的としています。このパッケージは、次のためのツールを提供します。
# Install from GitHub
devtools :: install_github( " biostochastics/ minoRityPower " )
このパッケージは、電力解析に対する 2 つの相補的なアプローチを実装します。
このアプローチは、介入が施設ごとの登録参加者数にどのような影響を与えるかに焦点を当て、施設レベルでの登録率をモデル化します。
# 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 プログラム適用のための医療システムレベルの介入の評価をサポートするために開発され、少数派参加者の臨床試験登録の加速に焦点を当てています。