├── .gitignore ├── 01_clean.R ├── 02_output.R ├── CODE_OF_CONDUCT.md ├── COMPLIANCE.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bc-population-indicator.Rproj ├── print_ver └── popn.Rmd ├── run_all.R └── source_image └── popn.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bc-population-indicator/HEAD/.gitignore -------------------------------------------------------------------------------- /01_clean.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bc-population-indicator/HEAD/01_clean.R -------------------------------------------------------------------------------- /02_output.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bc-population-indicator/HEAD/02_output.R -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bc-population-indicator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COMPLIANCE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bc-population-indicator/HEAD/COMPLIANCE.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bc-population-indicator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bc-population-indicator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bc-population-indicator/HEAD/README.md -------------------------------------------------------------------------------- /bc-population-indicator.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bc-population-indicator/HEAD/bc-population-indicator.Rproj -------------------------------------------------------------------------------- /print_ver/popn.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bc-population-indicator/HEAD/print_ver/popn.Rmd -------------------------------------------------------------------------------- /run_all.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bc-population-indicator/HEAD/run_all.R -------------------------------------------------------------------------------- /source_image/popn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/bc-population-indicator/HEAD/source_image/popn.png --------------------------------------------------------------------------------