Overview
This dataset contains budget reports from the past 12 years for all municipal and city governments in the Philippines.
Download
Source of data
Philippine budget reports are published yearly by the Commission on Audit and publicly available here .
Description of variables
Using data with R
All data processing has been conducted in R using RStudio, which is available for download here .
Start R:
Load the necessary packages.
library(readr)
library(modelsummary)
Read data:
Read data.
dat <- readr(path = "file path here")
Display summary statistics:
Modelsummary is an excellent package for computing and displaying summary statistics.
datasummary_skim(dat)