var_info <- tribble(
~Variable, ~Description, ~Type,
"URN", "School unique reference number", "Identifier",
"school_name", "School name", "Identifier",
"la_code / la_name", "Local authority code and name", "Identifier",
"academic_year", "Academic year (e.g. 2023-2024)", "Identifier",
"source", "Data source: CFR or AAR", "Identifier",
"phase", "School phase (Primary, Secondary, etc.)", "Characteristic",
"num_pupils", "Number of pupils (FTE)", "Characteristic",
"num_teachers", "Number of teachers (FTE)", "Characteristic",
"pct_fsm", "% pupils eligible for FSM", "Characteristic",
"total_income", "Total income (GBP)", "Income",
"grant_funding", "Grant funding from government", "Income",
"self_generated", "Self-generated income (lettings, catering, etc.)", "Income",
"pupil_premium", "Pupil premium income (CFR only)", "Income",
"total_expenditure", "Total expenditure (GBP)", "Expenditure",
"staff_costs", "Total staff costs", "Expenditure",
"teaching_staff", "Teaching staff costs", "Expenditure",
"premises_costs", "Premises costs", "Expenditure",
"energy", "Energy costs", "Expenditure",
"learning_resources", "Learning resources (not ICT)", "Expenditure",
"supply_staff", "Supply staff costs", "Expenditure",
"catering_costs", "Catering expenses", "Expenditure",
"educational_supplies", "Educational supplies total", "Expenditure",
"bought_in_professional", "Bought-in professional services", "Expenditure",
"in_year_balance", "In-year balance (income - expenditure)", "Balance",
"revenue_reserve", "Revenue reserve", "Balance",
"total_income_pp", "Total income per pupil", "Per-pupil",
"total_expenditure_pp", "Total expenditure per pupil", "Per-pupil",
"staff_costs_pp", "Staff costs per pupil", "Per-pupil",
"teaching_staff_pp", "Teaching staff costs per pupil", "Per-pupil",
"premises_costs_pp", "Premises costs per pupil", "Per-pupil",
"grant_funding_pp", "Grant funding per pupil", "Per-pupil",
"staff_income_ratio", "Staff costs / total income", "Ratio",
"teaching_expenditure_ratio", "Teaching staff / total expenditure", "Ratio",
"balance_income_ratio", "In-year balance / total income", "Ratio"
)
var_info %>% kable()