Learn R Programming

pccc (version 1.0.7)

pccc-package: pccc: Pediatric Complex Chronic Conditions

Description

An implementation of the pediatric complex chronic conditions (CCC) classification system. Implemented for the International Classification of Disease (ICD) 9th and 10th revisions.

Arguments

Reference Material

The original paper, Feudtner C, et al. (2014), was publish with open access. For ease, a copy of the paper is included in this package. See the examples below for instructions on opening this pdf from within R or outside of R. You can view the publication online at tools:::Rd_expr_doi("10.1186/1471-2431-14-199").

Feudtner et. al. provided a SAS macro and STATA program to implement the CCC. These files are also provided for reference. See the Examples for instructions on opening these files.

Lastly, the appendix tables in the file system.file("pccc_references", "Categories_of_CCCv2_and_Corresponding_ICD.docx", package = "pccc") have also been included with this package.

Author

Maintainer: Seth Russell seth.russell@cuanschutz.edu (ORCID)

Authors:

Other contributors:

References

Feudtner C, et al. Pediatric complex chronic conditions classification system version 2: updated for ICD-10 and complex medical technology dependence and transplantation, BMC Pediatrics, 2014, 14:199, DOI: 10.1186/1471-2431-14-199

See Also

Examples

Run this code
if (FALSE) {
# To open the Feudtner et.al. pdf from within R use the following
if (!is.null(getOption("pdfviewer"))) {
  system(paste0(getOption("pdfviewer"), " ",
                file.path(system.file("pccc_references", package = "pccc")), "/",
                "Feudtner_etal_2014.pdf"))
}

# If the pdf cannot be opened, you should be able to open it manually by
# navagating to
file.path(system.file("pccc_references", package = "pccc"))

# To view the original SAS program
file.show(system.file("pccc_references", "ccc_version2_sas.sas", package = "pccc"))

# To view the original STATA program
file.show(system.file("pccc_references", "ccc.do", package = "pccc"))
}

Run the code above in your browser using DataLab