Create dummy data for testing the fall enrollment functions
Source:R/create_dummy_data_ef1.R
create_dummy_data_ef1.Rd
Creates students and retention dataframes for use in parts A, B, C, D, E, G, H. Student-faculty ratio (part G) will ask for a number when the function is run and does not need to exist here. To create both dataframes, run the function twice with different arguments, and save results into separate objects.
Examples
set.seed(1234)
#default creates 100 students
students <- create_dummy_data_ef1()
#change the dataframe
retention <- create_dummy_data_ef1(df_type = "retention")
#change the population size
more_students <- create_dummy_data_ef1(df_type = "students", n = 250)