Planning"


#| include: false
knitr::opts_chunk$set(fig.path = "../man/figures/art-010-")

Analysis of MIDFIELD data begins by identifying the groups of students, programs, and metrics with which we intend to work.

Workflow

Working with MIDFIELD data is iterative---intermediate results often cause us to revisit an earlier assumption or select a different bloc or student attributes to work with. Nevertheless, a completed analysis usually comprises the following steps in roughly the sequence given below. Accented entries indicate topics in the open article.

  1. r accent("Planning")
    • r accent("Records")
    • r accent("Programs")
    • r accent("Metrics, blocs, and groupings")
  2. Initial processing
    • Data sufficiency
    • Degree seeking
    • Identify programs
  3. Blocs
    • Ever-enrolled
    • FYE proxies
    • Starters
    • Graduates
  4. Groupings
    • Program labels
    • Demographics
    • Other variables
  5. Metrics
    • Graduation rate
    • Stickiness
  6. Displays
    • Multiway charts
    • Tables

Definitions






Which records?

There are currently two points of access to MIDFIELD data:


To load research data.   For users with access to the MIDFIELD database, data are imported using any "read" function, e.g.,

#| eval: false

# Not run
student <- fread("local_path_to_student_research_data")
course <- fread("local_path_to_course_research_data")
term <- fread("local_path_to_term_research_data")
degree <- fread("local_path_to_degree_research_data")

To load practice data.   Load from the midfielddata package.

#| eval: false
# Load practice data
library(midfielddata)
data(student, course, term, degree)

The variables in the practice data are a subset of those in the research data. A researcher transitioning from working with the practice data to the research data should find that their scripts need little (if any) modification.


Which programs?

Identify programs in general terms, for example,

Search the cip data set included with midfieldr to identify the 6-digit CIP codes relevant to a study.

Note.   Most of our examples involve engineering programs. However, MIDFIELD research data contain student-level records of all undergraduates in all programs at their institution over the time spans given.

Which metrics, blocs, and groupings?

Before the data processing starts, we have to decide the metrics we want to compare among which blocs of students grouped by what variables. Metrics can include bloc counts or comparative ratios, for example:

The metric determines the blocs to gather, for example:

The research study design determines the grouping variables, for example,

References




Try the midfieldr package in your browser

Any scripts or data that you put into this service are public.

midfieldr documentation built on May 29, 2024, 4:43 a.m.