assign_web_group: Assigns UCLA website groupings

View source: R/assign_web_group.R

assign_web_groupR Documentation

Assigns UCLA website groupings

Description

Assigns UCLA website groupings based on a combination of a Jurisdiction and Age field. Web groupings include ICE, Federal, Juvenile, Prison, Psychiatric, and County. ICE and Federal facilities will never be assigned Juvenile (i.e., Jurisdiction takes precedence for ICE and Federal facilities, and Age takes precedence for State, County, and Psychiatric facilities).

Usage

assign_web_group(dat)

Arguments

dat

data frame with columns for Jurisdiction and Age (at least)

Value

original data frame with new Web.Group column added

Examples

assign_web_group(
    tibble(
        Name = "Sample youth facility", 
        Age = "Juvenile", 
        Jurisdiction = "state"
    ) %>% add_row(
        Name = "Sample federal facility", 
        Age = "Adult", 
        Jurisdiction = "federal"
        )
)

uclalawcovid19behindbars/behindbarstools documentation built on April 22, 2022, 4:08 a.m.