Skip to contents

Brunei census data 2021

Usage

census2021

Format

An object of class tbl_df (inherits from tbl, data.frame) with 365 rows and 11 columns.

Details

A tibble containing the population, split into male/female or Bruneian/PR/foreigners for each kampong. Also contains number of households and occupied living quarters.

References

DEPS. “The Population and Housing Census Report (BPP) 2021: Demographic, Household and Housing Characteristics.” Department of Economic Planning and Statistics, Ministry of Finance and Economy, Brunei Darussalam, October 2022. URL: https://deps.mofe.gov.bn/SitePages/Population.aspx

Examples

library(tidyverse)
#> ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
#>  dplyr     1.1.4      readr     2.1.5
#>  forcats   1.0.0      stringr   1.5.1
#>  lubridate 1.9.4      tibble    3.2.1
#>  purrr     1.0.2      tidyr     1.3.1
#> ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
#>  dplyr::filter() masks stats::filter()
#>  dplyr::lag()    masks stats::lag()
#>  Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
census2021 |>
  summarise(
    population = sum(population),
    .by = district
  )
#> # A tibble: 4 × 2
#>   district     population
#>   <chr>             <dbl>
#> 1 Temburong          9444
#> 2 Tutong            47210
#> 3 Brunei Muara     320323
#> 4 Belait            65531