Enrollment numbers aren't super informative without knowing the target numbers. This update should formalize target numbers in the group metadata model.
Example Code
Possible Implementation
Update the study mapping workflow to explicitly included planned sites (num_plan_site > SiteTarget) and planned subjects (num_plan_subj > ParticipantTarget). Derive these new columns:
Feature Details
Enrollment numbers aren't super informative without knowing the target numbers. This update should formalize target numbers in the group metadata model.
Example Code
Possible Implementation
Update the study mapping workflow to explicitly included planned sites (
num_plan_site
>SiteTarget
) and planned subjects (num_plan_subj
>ParticipantTarget
). Derive these new columns:PercentSitesActivated
:SiteCount / SiteTarget * 100
PercentParticipantsEnrolled
:ParticipantCount / ParticipantTarget * 100
SiteActivationLabel
:{SiteCount} / {SiteTarget} ({PercentSitesActivated}%)
ParticipantEnrollmentLabel
:{ParticipantCount} / {ParticipantTarget} ({PercentParticipantsEnrolled}%)
Additional Comments