| PakPC2017Tehsil | R Documentation |
PakPC2017Tehsil data of Pakistan population census 2017.
data(PakPC2017Tehsil)
A data.table and data.frame with 543 observations of 06 variables.
ProvinceProvinces of Pakistan
DivisionDivisions of Pakistan
DistrictDistricts of Pakistan
TehsilTehsils of Pakistan
Pop1998Population of census 1998
Pop2017Population of census 2017
Muhammad Yaseen (myaseen208@gmail.com)
Pakistan Bureau of Statistics, Pakistan Population Census 2017 (http://www.pbscensus.gov.pk/).
PakPC2017Balochistan
, PakPC2017City10
, PakPC2017FATA
, PakPC2017Islamabad
, PakPC2017KPK
, PakPC2017Pak
, PakPC2017Pakistan
, PakPC2017Punjab
, PakPC2017Sindh
library(PakPC2017)
library(dplyr)
library(magrittr)
data("PakPC2017Tehsil")
PakPC2017Tehsil %>%
group_by(Province, Division, District) %>%
summarise(
Pop1998 = sum(Pop1998, na.rm = TRUE)
, Pop2017 = sum(Pop2017, na.rm = TRUE))
PakPC2017Tehsil %>%
filter(District == "Faisalabad")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.