Learn R Programming

IPEDSuploadables (version 3.0.1)

create_dummy_data_com: Create dummy data for testing the completions functions

Description

Creates a prepared dataframe to test scripts related to IPEDS Completions reporting. Produces either a student/degree dataframe or a dataframe of cips previously reported but not in the current student data, depending on the argument you select

Usage

create_dummy_data_com(df_type = "student")

Value

a dataframe ready for the rest of the comp scripts

Arguments

df_type

a string: "student" to get the main df needed, "cip" to get extracips

Examples

Run this code
set.seed(1892)

# one date fails to parse:
# this is to provide an example of missing
# data which is acceptable to IPEDS
students <- create_dummy_data_com()

additional_cips <- create_dummy_data_com(df_type = "cip")

Run the code above in your browser using DataLab