knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "README-"
)

About

Travis-CI Build Status

himrr is an R data package for policy parameters specified by ACA's Health Insurance Market Rating Reform.

Premiums in Health Insurance Marketplace are regulated under the Affordable Care Act (ACA). Specifically, 45 CFR 147.102 - Fair health insurance premiums provides a federal default of

  1. Age rating ratios of 3:1,
  2. Federally established age curve,
  3. Tobacco rating ratios of no more than 1.5:1,
  4. Two tiers: one tier for all adults and a second tier for all children under 21, and
  5. Per member rating.

States can request a standard lower than the federal standard. For example, DC, MA, NY, and UT have their own age curve for both individual and small group markets, and NJ has specific age curve for small group market.

Source

Installation

# install.packages("devtools")
devtools::install_github("jjchern/himrr")

Usage

himrr's Three Tibbles

himrr includes three datasets:

library(dplyr, warn.conflicts = FALSE)
himrr::default
himrr::im
himrr::sgm

State Specific Age Curves for Individual Market

himrr::im %>% 
        select(state, age_curve) %>% 
        tidyr::unnest() 

State Specific Family Tiers for Individual Market

himrr::im %>% 
        select(state, family_tiers) %>% 
        mutate(state = if_else(family_tiers == "Uniform", "Other States", state)) %>% 
        distinct() %>% 
        knitr::kable()

Reference



jjchern/himrr documentation built on May 19, 2019, 11:38 a.m.