first_gen: (IN DEVELOPMENT) Determine First Generation Status

Description Usage Arguments Value Examples

Description

This function determines the first-generation status of a student using the California Community College System Definition of First-Generation Status.

The definition uses the highest level of education of the student's parent(s)/guardian(s).

First-Generation:

  1. Grade 9 or Less

  2. Grade 10, 11, or 12 but did not graduate

  3. Highschool Graduate

Non-First-Generation:

  1. Some college but no degree

  2. AA/AS Degree

  3. BA/BS Degree

  4. Graduate or professional degree beyond a BA/BS

Reference for definition: https://datamart.cccco.edu/App_Doc/Scorecard_Data_Mart_Specs.pdf

Usage

1
first_gen(x, y)

Arguments

x

PARENT_1_STATUS

y

PARENT_2_STATUS

Value

The first generation status of student given Parent Status

Examples

1
2
3
4
5
x = c("GED", "ASSOC", "UNKNOWN", "VOC")
y = c("MAST", "LESS", "LESS12", "VOC")
# library(dplyr)
# SDD <- as.data.frame(cbind(x, y))
# SDD <- mutate(SDD, new_variable = first_gen(x, y))

christian-million/researchR documentation built on May 15, 2019, 12:45 p.m.