Software Packages

I have started to develop some R packages. Most of the work is publicly available on github. Here are the highlights:


Table of Contents

  • R Packages:
    • cpr: Control Polygon Reduction
    • pccc: Pediatric Complex Chronic Conditions: An R Package
    • qwraps2: Quick Wraps 2
    • sccm: Schwarz-Christoffel Conformal Mapping

cpr: Control Polygon Reduction.

back to top

cpr on GitHub

Project Status: Active – The project has reached a stable, usable state and is being actively developed. Build Status Coverage Status CRAN_Status_Badge

Control Polygon Reduction (CPR) is a method for finding parsimonious B-spline regression models. The cpr package provides methods for working with B-splines, control polygons, and running the CPR algorithm. Extension to control nets, and the control net reduction (CNR) algorithm for multi-variable B-spline models is also part of this package.


pccc: Pediatric Complex Chronic Conditions: An R Package

back to top

pccc on GitHub

I started th pccc R package as a side project while finishing up my Ph.D. When I graduated, others took the work and published the package.

Pediatric Complex Chronic Conditions (CCC) system was published “Pediatric complex chronic conditions classification system version 2: updated for ICD-10 and complex medical technology dependence and transplantation” by Chris Feudtner, James A Feinstein, Wenjun Zhong, Matt Hall and Dingwei Dai.

SAS and STATA scripts to generate CCC categories from ICD codes were provided by Feudtner et al. as an appendix to the above manuscript. However, those scripts can take many hours to run on large datasets.

This package provides R functions to generate the CCC categories. Because the R functions are built with a C++ back-end, they are very computationally efficient.


qwraps2: Quick Wraps 2

back to top

qwraps2 on GitHub

Project Status: Active – The project has reached a stable, usable state and is being actively developed. Build Status Coverage Status CRAN_Status_Badge CRAN RStudio mirror downloads CRAN RStudio mirror downloads

When I need to provide a data analysis report, a manuscript draft, or working on my dissertation, I am almost certainly working in a literate programming paradigm. Nearly every document I produce is done using some subset of of R, knitr, pandoc, LaTeX, or markdown. As such, I have commonly needed for format strings, build data summary tables, or build specific graphics. The qwraps2 package is a collection of functions and tools I have been building and collecting to make my life easier. There are many packages like this on CRAN and elsewhere. The API and use of qwraps2 is design for my idiosyncrasies. I hope you will try it out, check the vignettes and even contribute to the work on github.


sccm: Schwarz-Christoffel Conformal Mapping

back to top

sccm on GitHub

Project Status: Active – The project has reached a stable, usable state and is being actively developed. Build Status Coverage Status CRAN_Status_Badge

An R package Providing a conformal mapping of one 2D polygon to a rectangular region via the Schwarz-Christoffel theorem.

Methods are provide to find a convex hull for an arbitrary set (x, y) coordinates. This hull, and the points within, are, via an (inverse) Schwarz-Christoffel mapping, mapped to the unit disk. A second Schwarz-Christoffel mapping from the unit disk to an arbitrary rectangle is use to finish the conformal mapping.

This package builds hulls via Andrew’s monotone chain algorithm implemented in C++. The Schwarz-Christoffel mappings are provided by the FORTRAN SCPACK by Lloyd N. Trefethen.

Not on CRAN The FORTRAN code writes to the terminal directly. It is possible that when the FORTRAN code errors that the R session will be terminated as well. For these reasons the package does not pass CRAN checks. My FORTRAN skills are minimal, and it is a low priority, to fix this problem. If you’d like to help fix see Issue #1.