Skip to contents

Joins components to enrolments, students, and intakes in one step. Useful for building detailed per-component reports with full student and intake context.

Usage

selma_component_pipeline(components, enrolments, students, intakes)

Arguments

components

A tibble from selma_components().

enrolments

A tibble from selma_enrolments().

students

A tibble from selma_students().

intakes

A tibble from selma_intakes().

Value

A tibble combining component, enrolment, student, and intake data.

Examples

if (FALSE) { # \dontrun{
con <- selma_connect()
full_components <- selma_component_pipeline(
  selma_components(con),
  selma_enrolments(con),
  selma_students(con),
  selma_intakes(con)
)
} # }