ctg_count {clintrialx} | R Documentation |
Get Count of Clinical Trials from ClinicalTrials.gov
Description
This function retrieves the count of clinical trials from ClinicalTrials.gov based on specified parameters.
Usage
ctg_count(
condition = NULL,
location = NULL,
title = NULL,
intervention = NULL,
status = NULL
)
Arguments
condition |
A character string specifying the condition being studied (default: NULL). |
location |
A character string specifying the location of the trials (default: NULL). |
title |
A character string specifying keywords in the study title (default: NULL). |
intervention |
A character string specifying the type of intervention (default: NULL). |
status |
A character vector specifying the recruitment status of the trials. Allowed values are: Valid values include:
Default is NULL. |
Value
A number representing the total count of clinical trials matching the specified parameters.
Examples
ctg_count(
condition = "Cancer",
location = "India",
title = NULL,
intervention = "Drug",
status = "RECRUITING"
)