get_colorectal_colonoscopy {cancerscreening}R Documentation

Retrieves Data for Colorectal Screening using Colonoscopy

Description

get_colorectal_colonoscopy() retrieves data for colorectal screening using colonoscopy within a specified period from the KHIS API server.

Usage

get_colorectal_colonoscopy(
  start_date,
  end_date = NULL,
  level = c("country", "county", "subcounty", "ward", "facility"),
  organisations = NULL,
  ...
)

Arguments

start_date

The start date to retrieve data. It is required and in the format YYYY-MM-dd.

end_date

The ending date for data retrieval (default is the current date).

level

The desired data granularity: "country" (the default), "county", "subcounty", "ward", or "facility".

organisations

A list of organization units ids to be filtered.

...

Other options that can be passed onto KHIS API.

Value

A tibble containing data for colorectal screening with the following columns:

Examples



# Download data from February 2023 to current date
data <- get_colorectal_colonoscopy(start_date = '2023-02-01')
data


[Package cancerscreening version 1.1.0 Index]