1 Report Purpose

To load, test & process NZ Census data at meshblock and other levels as preparation for a spatial microsimulation model. Data source:

2 Load data

Using NZ Census data from NZ Stats at mesh block level we have the files listed in 2.1.

Table 2.1: Census 2013 Mesh block level files
x
2013-mb-dataset-Total-New-Zealand-Dwelling.csv
2013-mb-dataset-Total-New-Zealand-Family.csv
2013-mb-dataset-Total-New-Zealand-Household.csv
2013-mb-dataset-Total-New-Zealand-Individual-Part-1.csv
2013-mb-dataset-Total-New-Zealand-Individual-Part-2.csv
2013-mb-dataset-Total-New-Zealand-Individual-Part-3a.csv
2013-mb-dataset-Total-New-Zealand-Individual-Part-3b.csv

In this report we focus on households/families/dwellings not individuals as the spatial microsimulation will operate at the household level.

Prelimniary inspection of the files shows that they have:

  • data for several different levels (meshblocks, area units, regions etc) in the same file
  • data from different years in the same file
  • a wide format which makes manipulation more difficult in R

To make life easier, we next:

  • load all the data files and merge them on the area Code producing a very wide file;
  • convert this file to a long form;
  • add a year variable for easier aggregation;
  • do various other data cleaning
## Loading: ~/Data/NZ_Census/data/raw/mb2013/2013-mb-dataset-Total-New-Zealand-Dwelling.csv
## Warning in eval(jsub, SDenv, parent.frame()): NAs introduced by coercion
## N rows loaded: 49005
## Loading: ~/Data/NZ_Census/data/raw/mb2013/2013-mb-dataset-Total-New-Zealand-Family.csv
## Warning in eval(jsub, SDenv, parent.frame()): NAs introduced by coercion
## N rows loaded: 49005
## Loading: ~/Data/NZ_Census/data/raw/mb2013/2013-mb-dataset-Total-New-Zealand-Household.csv
## Warning in eval(jsub, SDenv, parent.frame()): NAs introduced by coercion
## N rows loaded: 49005
## Merging loaded files

NB in order to get the label text re-coding to work we had to remove some strange multi-byte characters from the column names of the Family file (income range columns).

Next we add the area level labels for 2013 using the relevant areas file. First we check the area level file (http://archive.stats.govt.nz/browse_for_stats/Maps_and_geography/Geographic-areas/geographic-area-files.aspx#2013) to see how many meshblocks we should expect.

The area level file has:

  • MB 2001: 38,366 unique meshblock codes
  • MB 2006: 41,392 unique meshblock codes
  • MB 2013: 46,637 unique meshblock codes
## Unique meshblock codes in the census dataset: 46,651
## Warning in eval(jsub, SDenv, parent.frame()): NAs introduced by coercion
## Unique meshblock codes extracted from the census dataset: 46,629
##    user  system elapsed 
##   1.033   0.216   0.497
## Unique meshblock codes extracted from the census dataset and linked to labels: 46,629
## N rows in the labelled census 2013 meshblocks dataset: 48,627
## Reminder: N census 2013 meshblocks in the areas file = 46,637

If the last two values are not the same then we must have duplicated Census 2013 meshblock labels in the data file. This might happen if a mesh block from 2001 or 2006 was split into several 2013 meshblocks due to population growth. We need to test this and remove duplicates otherwise there will be errors in our 2013 aggregate counts.

Table 2.2: Do we have duplicated MB2013_codes?
Var1 Freq
FALSE 46629
TRUE 1998
## We do indeed have duplicates. We need to check the 2013 data is also duplicated for these rows so we
## pick a good 2013 data cell - total occupied dwellings should always have data - check.
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
##    0.00   15.00   30.00   34.18   48.00  630.00
Table 2.2: Do we have duplicated MB2013_code data (N occupied dwellings as an example)?
Var1 Freq
FALSE 46629
TRUE 1998
## Looks like it, so we need to keep just the non-duplicated rows
## How many rows do we have now? 46,629
## How many unique 2013 meshblock codes do we have now? 46,629

Now we convert the wide form data to long to make data manipulation and aggregation easier.

## Converting merged wide file to long form
## Warning in melt.data.table(meshblocksDT,
## id.vars = c("Area_Code_and_Description", :
## 'measure.vars' [2001_Census_occupied_private_dwelling_type_Separate_House,
## 2001_Census_occupied_private_dwelling_type_Two_or_More_Flats/
## Units/Townhouses/_Apartments/Houses_Joined_Together,
## 2001_Census_occupied_private_dwelling_type_Other_Occupied_Private_Dwellings(1),
## 2001_Census_occupied_private_dwelling_type_Occupied_Private_Dwelling_Not_Further_Defined, ...]
## are not all of the same type. By order of hierarchy, the molten data value
## column will be of type 'character'. All measure variables not of type
## 'character' will be coerced too. Check DETAILS in ?melt.data.table for more
## on coercion.
##    user  system elapsed 
##   0.408   0.174   0.592
## How many unique 2013 meshblock codes do we have in the long form data? 46,629

Now fix the variable label for ease of aggregation.

## Set years
##    user  system elapsed 
##   2.033   0.508   2.233
## Re-code count variable labels to remove leading redundant text - 20XX_Census_
##    user  system elapsed 
##  12.041   0.142  12.532
Table 2.3: Initial long form data (first 10 rows)
Area_Code_and_Description MB2013_code variable_orig value year countLabel
MB 0000100 100 2001_Census_occupied_private_dwelling_type_Separate_House 6 2001 occupied_private_dwelling_type_Separate_House
MB 0000200 200 2001_Census_occupied_private_dwelling_type_Separate_House 24 2001 occupied_private_dwelling_type_Separate_House
MB 0000300 300 2001_Census_occupied_private_dwelling_type_Separate_House 9 2001 occupied_private_dwelling_type_Separate_House
MB 0000400 400 2001_Census_occupied_private_dwelling_type_Separate_House 6 2001 occupied_private_dwelling_type_Separate_House
MB 0000501 501 2001_Census_occupied_private_dwelling_type_Separate_House ..C 2001 occupied_private_dwelling_type_Separate_House
MB 0000502 502 2001_Census_occupied_private_dwelling_type_Separate_House 12 2001 occupied_private_dwelling_type_Separate_House
MB 0000600 600 2001_Census_occupied_private_dwelling_type_Separate_House 15 2001 occupied_private_dwelling_type_Separate_House
MB 0000700 700 2001_Census_occupied_private_dwelling_type_Separate_House 18 2001 occupied_private_dwelling_type_Separate_House
MB 0000800 800 2001_Census_occupied_private_dwelling_type_Separate_House 36 2001 occupied_private_dwelling_type_Separate_House
MB 0000900 900 2001_Census_occupied_private_dwelling_type_Separate_House 9 2001 occupied_private_dwelling_type_Separate_House
MB 0001000 1000 2001_Census_occupied_private_dwelling_type_Separate_House 30 2001 occupied_private_dwelling_type_Separate_House
MB 0001100 1100 2001_Census_occupied_private_dwelling_type_Separate_House 24 2001 occupied_private_dwelling_type_Separate_House
MB 0001201 1201 2001_Census_occupied_private_dwelling_type_Separate_House 21 2001 occupied_private_dwelling_type_Separate_House
MB 0001202 1202 2001_Census_occupied_private_dwelling_type_Separate_House ..C 2001 occupied_private_dwelling_type_Separate_House
MB 0001203 1203 2001_Census_occupied_private_dwelling_type_Separate_House 42 2001 occupied_private_dwelling_type_Separate_House
MB 0001204 1204 2001_Census_occupied_private_dwelling_type_Separate_House 48 2001 occupied_private_dwelling_type_Separate_House
MB 0001301 1301 2001_Census_occupied_private_dwelling_type_Separate_House 39 2001 occupied_private_dwelling_type_Separate_House
MB 0001302 1302 2001_Census_occupied_private_dwelling_type_Separate_House 69 2001 occupied_private_dwelling_type_Separate_House
MB 0001400 1400 2001_Census_occupied_private_dwelling_type_Separate_House 15 2001 occupied_private_dwelling_type_Separate_House
MB 0001500 1500 2001_Census_occupied_private_dwelling_type_Separate_House 6 2001 occupied_private_dwelling_type_Separate_House

3 Data fixes

According to http://archive.stats.govt.nz/Census/2013-census/data-tables/meshblock-dataset.aspx:

You may need to replace some characters with a numerical value to help you process the data. These characters are:

  • confidentialised cells, represented by ‘..C’
  • data not able to be calculated, represented by ‘*’
  • data not available, represented by ‘..’

How many of them are there?

Table 3.1: Counts of cells with ..C, * & ..
value nAffectedDataCells nAffectedMeshblocks nAffectedVariables
21406 13454 5
.. 93258 46629 2
..C 7387237 43779 139
## These 'errors' affect 33.73 % of the data cells

These will cause data aggregating problems so we need to set them to NA and also make sure the vales are numeric (not characters).

Table 3.2: Summary of long form data before ..C & * fixed
Area_Code_and_Description MB2013_code
                                                                                                      variable_orig </th>
value </th>
  year </th>
countLabel
Length:22242033 Min. : 100 2001_Census_occupied_private_dwelling_type_Separate_House : 46629 Length:22242033 Min. :2001 Length:22242033
Class :character 1st Qu.: 717000 2001_Census_occupied_private_dwelling_type_Two_or_More_Flats/Units/Townhouses/_Apartments/Houses_Joined_Together: 46629 Class :character 1st Qu.:2001 Class :character
Mode :character Median :1446100 2001_Census_occupied_private_dwelling_type_Other_Occupied_Private_Dwellings(1) : 46629 Mode :character Median :2006 Mode :character
NA Mean :1512423 2001_Census_occupied_private_dwelling_type_Occupied_Private_Dwelling_Not_Further_Defined : 46629 NA Mean :2007 NA
NA 3rd Qu.:2335601 2001_Census_occupied_private_dwelling_type_Total_occupied_private_dwellings : 46629 NA 3rd Qu.:2013 NA
NA Max. :3210003 2006_Census_occupied_private_dwelling_type_Separate_House : 46629 NA Max. :2013 NA
NA NA (Other) :21962259 NA NA NA
## Warning in eval(jsub, SDenv, parent.frame()): NAs introduced by coercion
##    user  system elapsed 
##   6.736   0.131   7.247
Table 3.2: Summary of long form data after ..C & * fixed
Area_Code_and_Description MB2013_code
                                                                                                      variable_orig </th>
value </th>
  year </th>
countLabel valueAsNum
Length:22242033 Min. : 100 2001_Census_occupied_private_dwelling_type_Separate_House : 46629 Length:22242033 Min. :2001 Length:22242033 Min. : 0
Class :character 1st Qu.: 717000 2001_Census_occupied_private_dwelling_type_Two_or_More_Flats/Units/Townhouses/_Apartments/Houses_Joined_Together: 46629 Class :character 1st Qu.:2001 Class :character 1st Qu.: 0
Mode :character Median :1446100 2001_Census_occupied_private_dwelling_type_Other_Occupied_Private_Dwellings(1) : 46629 Mode :character Median :2006 Mode :character Median : 6
NA Mean :1512423 2001_Census_occupied_private_dwelling_type_Occupied_Private_Dwelling_Not_Further_Defined : 46629 NA Mean :2007 NA Mean : 943
NA 3rd Qu.:2335601 2001_Census_occupied_private_dwelling_type_Total_occupied_private_dwellings : 46629 NA 3rd Qu.:2013 NA 3rd Qu.: 21
NA Max. :3210003 2006_Census_occupied_private_dwelling_type_Separate_House : 46629 NA Max. :2013 NA Max. :150000
NA NA (Other) :21962259 NA NA NA NA’s :7501901

4 Data tests

We can now run some test aggregation at the whole population level. Ideally the modelling requires exact counts which sum across categories to the same total (number of dwellings, households or families). However, it is quite likely that the number of households/dwellings/families will differ at the meshblock and aggregate levels due to the data ‘errors’ described above.

As a result the aggregations below (see Table 4.1) are likely to be a slight undercount of the official published figures.

Figure 4.1 shows the trends in the totals over time.

Table 4.1: Total counts for selection of ‘totals’ - mesh blocks
year countLabel Total
2001 occupied_private_dwelling_type_Total_occupied_private_dwellings 1359849
2001 total_families_in_occupied_private_dwellings 967596
2001 total_households_in_occupied_private_dwellings 1344603
2006 occupied_private_dwelling_type_Total_occupied_private_dwellings 1471620
2006 total_families_in_occupied_private_dwellings 1067823
2006 total_households_in_occupied_private_dwellings 1454250
2013 occupied_private_dwelling_type_Total_occupied_private_dwellings 1561302
2013 total_families_in_occupied_private_dwellings 1136295
2013 total_households_in_occupied_private_dwellings 1549812
Totals over time

Figure 4.1: Totals over time

According to the original census data the actual totals (without redaction) are:

  • Dwellings (occupied_private_dwelling_type_Total_occupied_private_dwellings): 1561959
  • Families (total_families_in_occupied_private_dwellings) : 1136397
  • Households (total_households_in_occupied_private_dwellings): 1549890

We now repeat the test aggregation but at the regional level using the linked area labels (see Table ??). Note that these aggregations will also not exactly match the official published figures due to the data redaction described above.

Figure 4.2 shows the regional trends as both a static ggplot and an interactive plotly plot which makes it easier to distinguish regions by hovering the cursor over them.

Totals over time at regional level

Figure 4.2: Totals over time at regional level

Figure 4.2: Totals over time at regional level

These trends look fairly reasonable…

5 Aggregation to area units

See http://archive.stats.govt.nz/methods/classifications-and-standards/classification-related-stats-standards/area-unit.aspx

Aggregation to area units will enable the modelling to run faster (fewer units to model) and will also partially resolve the redacted data problem although it will not infill the missing counts, just hopefully prevent there being as many cells with NA. To do this we add the area unit codes and aggregate (sum) the count variables ignoring the NA.

Note that we cannot meaningfuly aggregate the income variables in this way.

## That gives 2,012 area units.
##   AU2013_code     AU2013_label       REGC2013_label       variable        
##  Min.   :500100   Length:959724      Length:959724      Length:959724     
##  1st Qu.:526105   Class :character   Class :character   Class :character  
##  Median :554950   Mode  :character   Mode  :character   Mode  :character  
##  Mean   :557899                                                           
##  3rd Qu.:586801                                                           
##  Max.   :627204                                                           
##       year          value        
##  Min.   :2001   Min.   :      0  
##  1st Qu.:2001   1st Qu.:      3  
##  Median :2006   Median :     42  
##  Mean   :2007   Mean   :  14478  
##  3rd Qu.:2013   3rd Qu.:    225  
##  Max.   :2013   Max.   :7041700
## Remember that some values might be (median) income values not counts... so we should not have summed them. NAs are what used to be ..C or *
## Of the 959,724 value cells 0% are NA...

Just to double-check we re-run the previous total count aggregation (see Table 5.1). We should get the same numbers…

Table 5.1: Total counts for selection of ‘totals’ - area units
year variable Total
2001 occupied_private_dwelling_type_Total_occupied_private_dwellings 1359849
2001 total_families_in_occupied_private_dwellings 967596
2001 total_households_in_occupied_private_dwellings 1344603
2006 occupied_private_dwelling_type_Total_occupied_private_dwellings 1471620
2006 total_families_in_occupied_private_dwellings 1067823
2006 total_households_in_occupied_private_dwellings 1454250
2013 occupied_private_dwelling_type_Total_occupied_private_dwellings 1561302
2013 total_families_in_occupied_private_dwellings 1136295
2013 total_households_in_occupied_private_dwellings 1549812

6 Aggregation to IMD zones

The NZ Index of Mutiple Deprivation uses datazones which are aggregates of meshblocks…

7 Save processed data

7.1 Meshblocks 2013

Most of the modelling work requires meshblock 2013 data so we extract just this subset.

XX Nb some values are counts and some are (median) income values XX

## Saving meshblocks file to  ~/Data/NZ_Census/data/processed/meshblock2013.csv
## Saved 7,414,011 rows of data.
## Variables saved:
##   MB2013_code           year        variable             value        
##  Min.   :    100   Min.   :2013   Length:7414011     Min.   :     0   
##  1st Qu.: 717000   1st Qu.:2013   Class :character   1st Qu.:     0   
##  Median :1446100   Median :2013   Mode  :character   Median :     6   
##  Mean   :1512423   Mean   :2013                      Mean   :  1132   
##  3rd Qu.:2335601   3rd Qu.:2013                      3rd Qu.:    21   
##  Max.   :3210003   Max.   :2013                      Max.   :150000   
##                                                      NA's   :2318367
## Remember that some values might be (median) income values not counts... NAs are what used to be ..C or *
## Of the 7,414,011 value cells 31.27% are NA... Let's hope they are not the variables we need!
## Compressing saved data file
## Gziping /Users/ben/Data/NZ_Census/data/processed/meshblock2013.csv
## Gzipped /Users/ben/Data/NZ_Census/data/processed/meshblock2013.csv

7.2 Area Units 2013

Just in case we need it…

XX Nb some values are counts and some are (median) income values XX

## Saving area units file to  ~/Data/NZ_Census/data/processed/areaunits2013.csv
## Saved 319,908 rows of data.
## Variables saved:
##   AU2013_code     AU2013_label       REGC2013_label       variable        
##  Min.   :500100   Length:319908      Length:319908      Length:319908     
##  1st Qu.:526105   Class :character   Class :character   Class :character  
##  Median :554950   Mode  :character   Mode  :character   Mode  :character  
##  Mean   :557899                                                           
##  3rd Qu.:586801                                                           
##  Max.   :627204                                                           
##       year          value        
##  Min.   :2013   Min.   :      0  
##  1st Qu.:2013   1st Qu.:      6  
##  Median :2013   Median :     48  
##  Mean   :2013   Mean   :  18032  
##  3rd Qu.:2013   3rd Qu.:    246  
##  Max.   :2013   Max.   :7041700
## Remember that some values might be (median) income values not counts... NAs are what used to be ..C or *
## Of the 319,908 value cells 0% are NA... Let's hope they are not the variables we need!
## Compressing saved data file
## Gziping /Users/ben/Data/NZ_Census/data/processed/areaunits2013.csv
## Gzipped /Users/ben/Data/NZ_Census/data/processed/areaunits2013.csv

8 About

This work was funded by the EU Marie Skłodowska-Curie Programme through the SPATIALEC Global Fellowship and is (c) 2019 the University of Southampton.

Analysis completed in 84.997 seconds ( 1.42 minutes) using knitr in RStudio with R version 3.5.1 (2018-07-02) running on x86_64-apple-darwin15.6.0.

Additional R packages used in this report (readr, data.table, Hmisc, ggplot2, plotly, dkUtils, kableExtra, viridis):

  • readr - for data loading [@readr]
  • Hmisc - for data summaries [@Hmisc]
  • data.table - for fast data munching [@data.table]
  • ggplot2 - for slick graphics [@ggplot2]
  • plotly - for interactive graphics [@plotly]
  • kableExtra - for pretty tables [@kableExtra]
  • knitr - to create this document [@knitr]

9 Annex: Codebooks

These are run on the original wide format files so each variable can be interrogated. ## Dwellings

## dwDT 
## 
##  130  Variables      49005  Observations
## ---------------------------------------------------------------------------
## Area_Code_and_Description 
##        n  missing distinct 
##    49005        0    49005 
## 
## lowest : 001 Far North District              00101 Te Hiku Ward                  00102 Bay of Islands-Whangaroa Ward 00103 Kaikohe-Hokianga Ward         002 Whangarei District             
## highest: MB 3209002                          MB 3209003                          MB 3210001                          MB 3210002                          MB 3210003                         
## ---------------------------------------------------------------------------
## Code 
##        n  missing distinct 
##    49005        0    48992 
## 
## lowest : 0000100 0000200 0000300 0000400 0000501
## highest: 627203  627204  99      999     99999  
## ---------------------------------------------------------------------------
## Description 
##        n  missing distinct 
##     2376    46629     2352 
## 
## lowest : Abbey Caves      Abbotsford       Abbotts Park     Acacia Bay       Addington       
## highest: Wyllies Crossing Wymondley        Wyndham          Yaldhurst        Yatton Park     
## ---------------------------------------------------------------------------
## 2001_Census_occupied_private_dwelling_type_Separate_House 
##        n  missing distinct 
##    49005        0      705 
## 
## lowest : ..C  0    1002 1005 1008, highest: 99   990  993  996  999 
## ---------------------------------------------------------------------------
## 2001_Census_occupied_private_dwelling_type_Two_or_More_Flats/Units/Townhouses/_Apartments/Houses_Joined_Together 
##        n  missing distinct 
##    49005        0      319 
## 
## lowest : ..C  0    1005 1011 1014, highest: 975  9810 99   996  999 
## ---------------------------------------------------------------------------
## 2001_Census_occupied_private_dwelling_type_Other_Occupied_Private_Dwellings(1) 
##        n  missing distinct 
##    49005        0       66 
## 
## lowest : ..C 0   105 114 12 , highest: 93  96  978 981 99 
## ---------------------------------------------------------------------------
## 2001_Census_occupied_private_dwelling_type_Occupied_Private_Dwelling_Not_Further_Defined 
##        n  missing distinct 
##    49005        0      248 
## 
## lowest : ..C   0     10164 102   1032 , highest: 954   957   96    9627  99   
## ---------------------------------------------------------------------------
## 2001_Census_occupied_private_dwelling_type_Total_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      817    0.998    146.8    256.3        0        0 
##      .25      .50      .75      .90      .95 
##       12       27       45       69       96 
## 
## lowest :      0      3      6      9     12, highest: 128574 157302 186423 393711 393714
## ---------------------------------------------------------------------------
## 2006_Census_occupied_private_dwelling_type_Separate_House 
##        n  missing distinct 
##    49005        0      743 
## 
## lowest : ..C   0     1002  10026 1005 , highest: 993   99561 996   9966  999  
## ---------------------------------------------------------------------------
## 2006_Census_occupied_private_dwelling_type_Two_or_More_Flats/Units/Townhouses/_Apartments/Houses_Joined_Together 
##        n  missing distinct 
##    49005        0      353 
## 
## lowest : ..C   0     1011  102   1023 , highest: 984   98484 9867  99    996  
## ---------------------------------------------------------------------------
## 2006_Census_occupied_private_dwelling_type_Other_Occupied_Private_Dwellings(1) 
##        n  missing distinct 
##    49005        0       84 
## 
## lowest : ..C  0    102  105  1050, highest: 9    90   93   96   99  
## ---------------------------------------------------------------------------
## 2006_Census_occupied_private_dwelling_type_Occupied_Private_Dwelling_Not_Further_Defined 
##        n  missing distinct 
##    49005        0      210 
## 
## lowest : ..C  0    1005 102  1023, highest: 945  96   984  987  99  
## ---------------------------------------------------------------------------
## 2006_Census_occupied_private_dwelling_type_Total_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      853    0.998    159.1    277.1        0        3 
##      .25      .50      .75      .90      .95 
##       15       30       48       75      105 
## 
## lowest :      0      3      6      9     12, highest: 134727 139647 168849 201660 438609
## ---------------------------------------------------------------------------
## 2013_Census_occupied_private_dwelling_type_Separate_House 
##        n  missing distinct 
##    49005        0      770 
## 
## lowest : ..C   0     10011 1002  1005 , highest: 990   993   9930  996   999  
## ---------------------------------------------------------------------------
## 2013_Census_occupied_private_dwelling_type_Two_or_More_Flats/Units/Townhouses/_Apartments/Houses_Joined_Together 
##        n  missing distinct 
##    49005        0      366 
## 
## lowest : ..C  0    1002 1008 102 , highest: 963  972  975  981  99  
## ---------------------------------------------------------------------------
## 2013_Census_occupied_private_dwelling_type_Other_Occupied_Private_Dwellings(1) 
##        n  missing distinct 
##    49005        0       86 
## 
## lowest : ..C  0    102  105  1068, highest: 90   93   96   987  99  
## ---------------------------------------------------------------------------
## 2013_Census_occupied_private_dwelling_type_Occupied_Private_Dwelling_Not_Further_Defined 
##        n  missing distinct 
##    49005        0      220 
## 
## lowest : ..C  0    1005 1008 102 , highest: 957  96   966  9666 99  
## ---------------------------------------------------------------------------
## 2013_Census_occupied_private_dwelling_type_Total_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      886    0.998      169    294.4        0        3 
##      .25      .50      .75      .90      .95 
##       15       30       51       78      117 
## 
## lowest :      0      3      6      9     12, highest: 130428 151641 177165 206916 472044
## ---------------------------------------------------------------------------
## 2001_Census_dwelling_record_type_for_occupied_dwellings_Occupied_Private_Dwelling 
##        n  missing distinct 
##    49005        0      820 
## 
## lowest : ..C  0    1002 1008 1011, highest: 99   990  993  996  999 
## ---------------------------------------------------------------------------
## 2001_Census_dwelling_record_type_for_occupied_dwellings_Occupied_Non-private_Dwelling 
##        n  missing distinct 
##    49005        0       78 
## 
## lowest : ..C 0   102 108 111, highest: 87  9   90  96  99 
## ---------------------------------------------------------------------------
## 2001_Census_dwelling_record_type_for_occupied_dwellings_Total_occupied_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      820    0.998    147.7    257.8        0        3 
##      .25      .50      .75      .90      .95 
##       12       27       48       69       96 
## 
## lowest :      0      3      6      9     12, highest: 126654 129417 157917 187581 395262
## ---------------------------------------------------------------------------
## 2006_Census_dwelling_record_type_for_occupied_dwellings_Occupied_Private_Dwelling 
##        n  missing distinct 
##    49005        0      859 
## 
## lowest : ..C  0    1002 1005 1008, highest: 99   990  993  996  999 
## ---------------------------------------------------------------------------
## 2006_Census_dwelling_record_type_for_occupied_dwellings_Occupied_Non-private_Dwelling 
##        n  missing distinct 
##    49005        0       68 
## 
## lowest : ..C  0    102  1038 105 , highest: 84   87   9    93   99  
## ---------------------------------------------------------------------------
## 2006_Census_dwelling_record_type_for_occupied_dwellings_Total_occupied_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      873    0.998    159.8    278.3        0        3 
##      .25      .50      .75      .90      .95 
##       15       30       48       75      105 
## 
## lowest :      0      3      6      9     12, highest: 135270 140364 169347 202698 439701
## ---------------------------------------------------------------------------
## 2013_Census_dwelling_record_type_for_occupied_dwellings_Occupied_Private_Dwelling 
##        n  missing distinct 
##    49005        0      883 
## 
## lowest : ..C  0    1002 1005 1008, highest: 99   990  993  996  999 
## ---------------------------------------------------------------------------
## 2013_Census_dwelling_record_type_for_occupied_dwellings_Occupied_Non-private_Dwelling 
##        n  missing distinct 
##    49005        0       80 
## 
## lowest : ..C 0   102 105 108, highest: 90  93  96  99  993
## ---------------------------------------------------------------------------
## 2013_Census_dwelling_record_type_for_occupied_dwellings_Total_occupied_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      887    0.998    169.9      296        0        3 
##      .25      .50      .75      .90      .95 
##       15       30       51       78      120 
## 
## lowest :      0      3      6      9     12, highest: 152493 177816 208146 473448 473451
## ---------------------------------------------------------------------------
## 2001_Census_number_of_rooms_for_occupied_private_dwellings_One_Room 
##        n  missing distinct 
##    49005        0       68 
## 
## lowest : ..C 0   102 108 111, highest: 9   90  93  96  99 
## ---------------------------------------------------------------------------
## 2001_Census_number_of_rooms_for_occupied_private_dwellings_Two_Rooms 
##        n  missing distinct 
##    49005        0      111 
## 
## lowest : ..C 0   102 105 111, highest: 90  93  96  99  996
## ---------------------------------------------------------------------------
## 2001_Census_number_of_rooms_for_occupied_private_dwellings_Three_Rooms 
##        n  missing distinct 
##    49005        0      199 
## 
## lowest : ..C  0    1002 102  1035, highest: 963  978  99   996  999 
## ---------------------------------------------------------------------------
## 2001_Census_number_of_rooms_for_occupied_private_dwellings_Four_Rooms 
##        n  missing distinct 
##    49005        0      266 
## 
## lowest : ..C  0    1008 1011 102 , highest: 96   960  981  984  99  
## ---------------------------------------------------------------------------
## 2001_Census_number_of_rooms_for_occupied_private_dwellings_Five_Rooms 
##        n  missing distinct 
##    49005        0      337 
## 
## lowest : ..C   0     10035 1014  102  , highest: 942   9513  96    99    9909 
## ---------------------------------------------------------------------------
## 2001_Census_number_of_rooms_for_occupied_private_dwellings_Six_Rooms 
##        n  missing distinct 
##    49005        0      410 
## 
## lowest : ..C  0    1011 1017 102 , highest: 963  966  969  9750 99  
## ---------------------------------------------------------------------------
## 2001_Census_number_of_rooms_for_occupied_private_dwellings_Seven_Rooms 
##        n  missing distinct 
##    49005        0      312 
## 
## lowest : ..C  0    1002 1005 1008, highest: 948  96   978  987  99  
## ---------------------------------------------------------------------------
## 2001_Census_number_of_rooms_for_occupied_private_dwellings_Eight_or_More_Rooms 
##        n  missing distinct 
##    49005        0      368 
## 
## lowest : ..C   0     102   10311 1044 , highest: 942   957   96    99    996  
## ---------------------------------------------------------------------------
## 2001_Census_number_of_rooms_for_occupied_private_dwellings_Total_dwellings_stated 
##        n  missing distinct 
##    49005        0      806 
## 
## lowest : ..C   10002 1008  1011  1014 , highest: 990   993   996   9969  999  
## ---------------------------------------------------------------------------
## 2001_Census_number_of_rooms_for_occupied_private_dwellings_Not_Elsewhere_Included(2) 
##        n  missing distinct 
##    49005        0      184 
## 
## lowest : ..C  0    1008 1014 102 , highest: 930  96   960  981  99  
## ---------------------------------------------------------------------------
## 2001_Census_number_of_rooms_for_occupied_private_dwellings_Total_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      831    0.998    146.8    256.3        0        0 
##      .25      .50      .75      .90      .95 
##       12       27       45       69       96 
## 
## lowest :      0      3      6      9     12, highest: 128574 157302 186426 393711 393714
## ---------------------------------------------------------------------------
## 2006_Census_number_of_rooms_for_occupied_private_dwellings_One_Room 
##        n  missing distinct 
##    49005        0       77 
## 
## lowest : ..C 0   102 105 108, highest: 9   90  93  96  99 
## ---------------------------------------------------------------------------
## 2006_Census_number_of_rooms_for_occupied_private_dwellings_Two_Rooms 
##        n  missing distinct 
##    49005        0      126 
## 
## lowest : ..C  0    102  105  1071, highest: 93   9576 96   987  99  
## ---------------------------------------------------------------------------
## 2006_Census_number_of_rooms_for_occupied_private_dwellings_Three_Rooms 
##        n  missing distinct 
##    49005        0      198 
## 
## lowest : ..C  0    102  1026 1032, highest: 933  957  96   972  99  
## ---------------------------------------------------------------------------
## 2006_Census_number_of_rooms_for_occupied_private_dwellings_Four_Rooms 
##        n  missing distinct 
##    49005        0      271 
## 
## lowest : ..C  0    1005 1008 1014, highest: 930  96   960  969  99  
## ---------------------------------------------------------------------------
## 2006_Census_number_of_rooms_for_occupied_private_dwellings_Five_Rooms 
##        n  missing distinct 
##    49005        0      336 
## 
## lowest : ..C  0    1002 102  1032, highest: 96   9696 972  99   999 
## ---------------------------------------------------------------------------
## 2006_Census_number_of_rooms_for_occupied_private_dwellings_Six_Rooms 
##        n  missing distinct 
##    49005        0      414 
## 
## lowest : ..C   0     1005  1011  1017 , highest: 9741  98076 981   984   99   
## ---------------------------------------------------------------------------
## 2006_Census_number_of_rooms_for_occupied_private_dwellings_Seven_Rooms 
##        n  missing distinct 
##    49005        0      334 
## 
## lowest : ..C   0     10137 1017  102  , highest: 960   978   99    990   993  
## ---------------------------------------------------------------------------
## 2006_Census_number_of_rooms_for_occupied_private_dwellings_Eight_or_More_Rooms 
##        n  missing distinct 
##    49005        0      405 
## 
## lowest : ..C   0     1008  10098 102  , highest: 9840  99    996   99951 99954
## ---------------------------------------------------------------------------
## 2006_Census_number_of_rooms_for_occupied_private_dwellings_Total_dwellings_stated 
##        n  missing distinct 
##    49005        0      840 
## 
## lowest : ..C  0    1002 1005 1008, highest: 99   990  993  996  999 
## ---------------------------------------------------------------------------
## 2006_Census_number_of_rooms_for_occupied_private_dwellings_Not_Elsewhere_Included(2) 
##        n  missing distinct 
##    49005        0      200 
## 
## lowest : ..C  0    102  1020 1023, highest: 963  972  981  99   990 
## ---------------------------------------------------------------------------
## 2006_Census_number_of_rooms_for_occupied_private_dwellings_Total_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      858    0.998    159.1    277.1        0        3 
##      .25      .50      .75      .90      .95 
##       15       30       48       75      105 
## 
## lowest :      0      3      6      9     12, highest: 134730 139647 168849 201660 438609
## ---------------------------------------------------------------------------
## 2013_Census_number_of_rooms_for_occupied_private_dwellings_One_Room 
##        n  missing distinct 
##    49005        0       87 
## 
## lowest : ..C  0    1005 102  105 , highest: 9    90   93   96   99  
## ---------------------------------------------------------------------------
## 2013_Census_number_of_rooms_for_occupied_private_dwellings_Two_Rooms 
##        n  missing distinct 
##    49005        0      114 
## 
## lowest : ..C  0    105  1098 111 , highest: 927  93   96   978  99  
## ---------------------------------------------------------------------------
## 2013_Census_number_of_rooms_for_occupied_private_dwellings_Three_Rooms 
##        n  missing distinct 
##    49005        0      195 
## 
## lowest : ..C  0    102  1026 1029, highest: 96   978  984  99   990 
## ---------------------------------------------------------------------------
## 2013_Census_number_of_rooms_for_occupied_private_dwellings_Four_Rooms 
##        n  missing distinct 
##    49005        0      274 
## 
## lowest : ..C  0    102  1029 1041, highest: 957  96   960  99   993 
## ---------------------------------------------------------------------------
## 2013_Census_number_of_rooms_for_occupied_private_dwellings_Five_Rooms 
##        n  missing distinct 
##    49005        0      347 
## 
## lowest : ..C   0     1005  10191 102  , highest: 936   951   96    981   99   
## ---------------------------------------------------------------------------
## 2013_Census_number_of_rooms_for_occupied_private_dwellings_Six_Rooms 
##        n  missing distinct 
##    49005        0      418 
## 
## lowest : ..C   0     1002  10029 102  , highest: 981   9879  99    9972  999  
## ---------------------------------------------------------------------------
## 2013_Census_number_of_rooms_for_occupied_private_dwellings_Seven_Rooms 
##        n  missing distinct 
##    49005        0      338 
## 
## lowest : ..C  0    1011 1014 1017, highest: 963  9717 978  984  99  
## ---------------------------------------------------------------------------
## 2013_Census_number_of_rooms_for_occupied_private_dwellings_Eight_or_More_Rooms 
##        n  missing distinct 
##    49005        0      421 
## 
## lowest : ..C  0    1005 1011 102 , highest: 975  9789 981  99   9906
## ---------------------------------------------------------------------------
## 2013_Census_number_of_rooms_for_occupied_private_dwellings_Total_dwellings_stated 
##        n  missing distinct 
##    49005        0      861 
## 
## lowest : ..C  0    1002 1005 1008, highest: 99   990  993  996  999 
## ---------------------------------------------------------------------------
## 2013_Census_number_of_rooms_for_occupied_private_dwellings_Not_Elsewhere_Included(2) 
##        n  missing distinct 
##    49005        0      215 
## 
## lowest : ..C  0    1005 1011 102 , highest: 96   987  99   990  996 
## ---------------------------------------------------------------------------
## 2013_Census_number_of_rooms_for_occupied_private_dwellings_Total_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      891    0.998      169    294.4        0        3 
##      .25      .50      .75      .90      .95 
##       15       30       51       78      117 
## 
## lowest :      0      3      6      9     12, highest: 130428 151644 177165 206916 472044
## ---------------------------------------------------------------------------
## 2001_Census_number_of_bedrooms_for_occupied_private_dwellings_One_Bedroom 
##        n  missing distinct 
##    49005        0      213 
## 
## lowest : ..C  0    1005 1017 102 , highest: 9342 939  96   972  99  
## ---------------------------------------------------------------------------
## 2001_Census_number_of_bedrooms_for_occupied_private_dwellings_Two_Bedrooms 
##        n  missing distinct 
##    49005        0      368 
## 
## lowest : ..C   0     1002  1005  10095, highest: 978   987   99    990   993  
## ---------------------------------------------------------------------------
## 2001_Census_number_of_bedrooms_for_occupied_private_dwellings_Three_Bedrooms 
##        n  missing distinct 
##    49005        0      539 
## 
## lowest : ..C   0     10008 1008  10104, highest: 9855  99    990   9921  999  
## ---------------------------------------------------------------------------
## 2001_Census_number_of_bedrooms_for_occupied_private_dwellings_Four_Bedrooms 
##        n  missing distinct 
##    49005        0      365 
## 
## lowest : ..C  0    102  1026 1035, highest: 9762 9765 99   996  999 
## ---------------------------------------------------------------------------
## 2001_Census_number_of_bedrooms_for_occupied_private_dwellings_Five_Bedrooms 
##        n  missing distinct 
##    49005        0      184 
## 
## lowest : ..C  0    1008 1011 102 , highest: 978  99   990  993  999 
## ---------------------------------------------------------------------------
## 2001_Census_number_of_bedrooms_for_occupied_private_dwellings_Six_Bedrooms 
##        n  missing distinct 
##    49005        0       84 
## 
## lowest : ..C 0   102 105 108, highest: 87  9   90  96  99 
## ---------------------------------------------------------------------------
## 2001_Census_number_of_bedrooms_for_occupied_private_dwellings_Seven_Bedrooms 
##        n  missing distinct 
##    49005        0       47 
## 
## lowest : ..C 0   108 117 12 , highest: 84  9   90  96  99 
## ---------------------------------------------------------------------------
## 2001_Census_number_of_bedrooms_for_occupied_private_dwellings_Eight_or_More_Bedrooms 
##        n  missing distinct 
##    49005        0       58 
## 
## lowest : ..C 0   108 111 12 , highest: 9   90  93  96  99 
## ---------------------------------------------------------------------------
## 2001_Census_number_of_bedrooms_for_occupied_private_dwellings_Total_dwellings_stated 
##        n  missing distinct 
##    49005        0      813 
## 
## lowest : ..C   10005 1002  1005  1008 , highest: 990   993   9951  996   999  
## ---------------------------------------------------------------------------
## 2001_Census_number_of_bedrooms_for_occupied_private_dwellings_Not_Elsewhere_Included(3) 
##        n  missing distinct 
##    49005        0      179 
## 
## lowest : ..C  0    1011 1014 102 , highest: 96   963  975  978  99  
## ---------------------------------------------------------------------------
## 2001_Census_number_of_bedrooms_for_occupied_private_dwellings_Total_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      821    0.998    146.8    256.3        0        0 
##      .25      .50      .75      .90      .95 
##       12       27       45       69       96 
## 
## lowest :      0      3      6      9     12, highest: 126054 128571 157305 186423 393711
## ---------------------------------------------------------------------------
## 2001_Census_number_of_bedrooms_for_occupied_private_dwellings_Mean_Number_of_Bedrooms 
##        n  missing distinct 
##    49005        0       59 
## 
## lowest : ..C *   1   1.1 1.2, highest: 7.3 7.5 8   8.5 9  
## ---------------------------------------------------------------------------
## 2006_Census_number_of_bedrooms_for_occupied_private_dwellings_One_Bedroom 
##        n  missing distinct 
##    49005        0      219 
## 
## lowest : ..C  0    1008 102  105 , highest: 963  978  984  99   9927
## ---------------------------------------------------------------------------
## 2006_Census_number_of_bedrooms_for_occupied_private_dwellings_Two_Bedrooms 
##        n  missing distinct 
##    49005        0      360 
## 
## lowest : ..C  0    1011 1017 102 , highest: 963  975  99   9933 999 
## ---------------------------------------------------------------------------
## 2006_Census_number_of_bedrooms_for_occupied_private_dwellings_Three_Bedrooms 
##        n  missing distinct 
##    49005        0      550 
## 
## lowest : ..C  0    1002 1008 1011, highest: 99   990  993  999  9993
## ---------------------------------------------------------------------------
## 2006_Census_number_of_bedrooms_for_occupied_private_dwellings_Four_Bedrooms 
##        n  missing distinct 
##    49005        0      382 
## 
## lowest : ..C  0    1002 1005 1011, highest: 981  9888 99   990  9933
## ---------------------------------------------------------------------------
## 2006_Census_number_of_bedrooms_for_occupied_private_dwellings_Five_Bedrooms 
##        n  missing distinct 
##    49005        0      198 
## 
## lowest : ..C  0    1002 102  1029, highest: 954  96   99   993  996 
## ---------------------------------------------------------------------------
## 2006_Census_number_of_bedrooms_for_occupied_private_dwellings_Six_Bedrooms 
##        n  missing distinct 
##    49005        0      100 
## 
## lowest : ..C 0   102 105 108, highest: 90  93  951 96  99 
## ---------------------------------------------------------------------------
## 2006_Census_number_of_bedrooms_for_occupied_private_dwellings_Seven_Bedrooms 
##        n  missing distinct 
##    49005        0       46 
## 
## lowest : ..C  0    105  1059 108 , highest: 81   84   87   9    93  
## ---------------------------------------------------------------------------
## 2006_Census_number_of_bedrooms_for_occupied_private_dwellings_Eight_or_More_Bedrooms 
##        n  missing distinct 
##    49005        0       54 
## 
## lowest : ..C 0   102 108 111, highest: 87  9   90  93  96 
## ---------------------------------------------------------------------------
## 2006_Census_number_of_bedrooms_for_occupied_private_dwellings_Total_dwellings_stated 
##        n  missing distinct 
##    49005        0      836 
## 
## lowest : ..C  0    1002 1005 1008, highest: 99   990  993  996  999 
## ---------------------------------------------------------------------------
## 2006_Census_number_of_bedrooms_for_occupied_private_dwellings_Not_Elsewhere_Included(3) 
##        n  missing distinct 
##    49005        0      192 
## 
## lowest : ..C  0    102  1023 1038, highest: 942  945  96   99   990 
## ---------------------------------------------------------------------------
## 2006_Census_number_of_bedrooms_for_occupied_private_dwellings_Total_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      851    0.998    159.1    277.1        0        3 
##      .25      .50      .75      .90      .95 
##       15       30       48       75      105 
## 
## lowest :      0      3      6      9     12, highest: 134727 139647 168849 201660 438609
## ---------------------------------------------------------------------------
## 2006_Census_number_of_bedrooms_for_occupied_private_dwellings_Mean_Number_of_Bedrooms 
##        n  missing distinct 
##    49005        0       64 
## 
## lowest : ..C *   1   1.1 1.2, highest: 7   7.3 7.5 8.5 9  
## ---------------------------------------------------------------------------
## 2013_Census_number_of_bedrooms_for_occupied_private_dwellings_One_Bedroom 
##        n  missing distinct 
##    49005        0      219 
## 
## lowest : ..C  0    102  1032 105 , highest: 96   969  99   993  996 
## ---------------------------------------------------------------------------
## 2013_Census_number_of_bedrooms_for_occupied_private_dwellings_Two_Bedrooms 
##        n  missing distinct 
##    49005        0      371 
## 
## lowest : ..C   0     102   1020  10251, highest: 966   9768  981   99    993  
## ---------------------------------------------------------------------------
## 2013_Census_number_of_bedrooms_for_occupied_private_dwellings_Three_Bedrooms 
##        n  missing distinct 
##    49005        0      553 
## 
## lowest : ..C  0    1005 1008 102 , highest: 99   9936 996  9981 999 
## ---------------------------------------------------------------------------
## 2013_Census_number_of_bedrooms_for_occupied_private_dwellings_Four_Bedrooms 
##        n  missing distinct 
##    49005        0      422 
## 
## lowest : ..C  0    1011 1014 102 , highest: 978  9840 987  99   9975
## ---------------------------------------------------------------------------
## 2013_Census_number_of_bedrooms_for_occupied_private_dwellings_Five_Bedrooms 
##        n  missing distinct 
##    49005        0      217 
## 
## lowest : ..C   0     1017  10182 102  , highest: 954   96    963   99    999  
## ---------------------------------------------------------------------------
## 2013_Census_number_of_bedrooms_for_occupied_private_dwellings_Six_Bedrooms 
##        n  missing distinct 
##    49005        0      106 
## 
## lowest : ..C  0    102  1035 105 , highest: 90   918  924  93   99  
## ---------------------------------------------------------------------------
## 2013_Census_number_of_bedrooms_for_occupied_private_dwellings_Seven_Bedrooms 
##        n  missing distinct 
##    49005        0       52 
## 
## lowest : ..C 0   102 105 111, highest: 81  87  9   90  93 
## ---------------------------------------------------------------------------
## 2013_Census_number_of_bedrooms_for_occupied_private_dwellings_Eight_or_More_Bedrooms 
##        n  missing distinct 
##    49005        0       43 
## 
## lowest : ..C 0   105 108 12 , highest: 9   930 933 96  99 
## ---------------------------------------------------------------------------
## 2013_Census_number_of_bedrooms_for_occupied_private_dwellings_Total_dwellings_stated 
##        n  missing distinct 
##    49005        0      871 
## 
## lowest : ..C  0    1002 1005 1008, highest: 990  993  996  9969 999 
## ---------------------------------------------------------------------------
## 2013_Census_number_of_bedrooms_for_occupied_private_dwellings_Not_Elsewhere_Included(3) 
##        n  missing distinct 
##    49005        0      206 
## 
## lowest : ..C  0    1005 102  105 , highest: 966  972  984  99   993 
## ---------------------------------------------------------------------------
## 2013_Census_number_of_bedrooms_for_occupied_private_dwellings_Total_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      890    0.998      169    294.4        0        3 
##      .25      .50      .75      .90      .95 
##       15       30       51       78      117 
## 
## lowest :      0      3      6      9     12, highest: 151641 177162 206916 472041 472044
## ---------------------------------------------------------------------------
## 2013_Census_number_of_bedrooms_for_occupied_private_dwellings_Mean_Number_of_Bedrooms 
##        n  missing distinct 
##    49005        0       55 
## 
## lowest : ..C *   1   1.1 1.2, highest: 6   6.5 7.3 8   8.5
## ---------------------------------------------------------------------------
## 2001_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Electricity 
##        n  missing distinct 
##    49005        0      676 
## 
## lowest : ..C  0    1002 1005 1008, highest: 99   990  993  996  999 
## ---------------------------------------------------------------------------
## 2001_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Mains_Gas 
##        n  missing distinct 
##    49005        0      311 
## 
## lowest : ..C  0    1017 102  1041, highest: 96   9612 9630 966  99  
## ---------------------------------------------------------------------------
## 2001_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Bottled_Gas 
##        n  missing distinct 
##    49005        0      432 
## 
## lowest : ..C   0     10095 10143 10182, highest: 978   984   99    993   9981 
## ---------------------------------------------------------------------------
## 2001_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Wood 
##        n  missing distinct 
##    49005        0      567 
## 
## lowest : ..C  0    1002 1005 1008, highest: 981  987  99   990  999 
## ---------------------------------------------------------------------------
## 2001_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Coal 
##        n  missing distinct 
##    49005        0      284 
## 
## lowest : ..C  0    1011 102  1020, highest: 948  9573 96   99   999 
## ---------------------------------------------------------------------------
## 2001_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Solar_Power 
##        n  missing distinct 
##    49005        0       95 
## 
## lowest : ..C  0    1014 108  111 , highest: 9    90   93   957  96  
## ---------------------------------------------------------------------------
## 2001_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_No_Fuels_Used_in_this_Dwelling 
##        n  missing distinct 
##    49005        0      142 
## 
## lowest : ..C  0    102  105  1059, highest: 90   93   96   99   996 
## ---------------------------------------------------------------------------
## 2001_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Other_Fuel(s) 
##        n  missing distinct 
##    49005        0       98 
## 
## lowest : ..C  0    102  108  1122, highest: 9    90   93   99   993 
## ---------------------------------------------------------------------------
## 2001_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Total_dwellings_stated 
##        n  missing distinct 
##    49005        0      804 
## 
## lowest : ..C   1002  1005  10056 1008 , highest: 990   993   996   999   9999 
## ---------------------------------------------------------------------------
## 2001_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Not_Elsewhere_Included(5) 
##        n  missing distinct 
##    49005        0      178 
## 
## lowest : ..C  0    102  1020 105 , highest: 936  942  96   987  99  
## ---------------------------------------------------------------------------
## 2001_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Total_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      831    0.998    146.8    256.3        0        0 
##      .25      .50      .75      .90      .95 
##       12       27       45       69       96 
## 
## lowest :      0      3      6      9     12, highest: 128574 157302 186426 393711 393714
## ---------------------------------------------------------------------------
## 2006_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Electricity 
##        n  missing distinct 
##    49005        0      707 
## 
## lowest : ..C  0    1002 1005 1008, highest: 99   990  993  996  999 
## ---------------------------------------------------------------------------
## 2006_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Mains_Gas 
##        n  missing distinct 
##    49005        0      321 
## 
## lowest : ..C   0     1002  10074 1014 , highest: 951   954   96    99    993  
## ---------------------------------------------------------------------------
## 2006_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Bottled_Gas 
##        n  missing distinct 
##    49005        0      431 
## 
## lowest : ..C  0    1008 102  1029, highest: 972  975  9807 987  99  
## ---------------------------------------------------------------------------
## 2006_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Wood 
##        n  missing distinct 
##    49005        0      572 
## 
## lowest : ..C  0    1002 1005 1011, highest: 978  981  99   990  999 
## ---------------------------------------------------------------------------
## 2006_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Coal 
##        n  missing distinct 
##    49005        0      252 
## 
## lowest : ..C   0     1002  10182 102  , highest: 969   972   978   987   99   
## ---------------------------------------------------------------------------
## 2006_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Solar_Power 
##        n  missing distinct 
##    49005        0      103 
## 
## lowest : ..C 0   102 105 108, highest: 87  9   90  93  96 
## ---------------------------------------------------------------------------
## 2006_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_No_Fuels_Used_in_this_Dwelling 
##        n  missing distinct 
##    49005        0      127 
## 
## lowest : ..C  0    1005 1011 102 , highest: 9    90   93   96   99  
## ---------------------------------------------------------------------------
## 2006_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Other_Fuel(s) 
##        n  missing distinct 
##    49005        0      137 
## 
## lowest : ..C  0    1005 102  105 , highest: 93   954  96   978  99  
## ---------------------------------------------------------------------------
## 2006_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Total_dwellings_stated 
##        n  missing distinct 
##    49005        0      848 
## 
## lowest : ..C  0    1002 1005 1008, highest: 99   990  993  996  999 
## ---------------------------------------------------------------------------
## 2006_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Not_Elsewhere_Included(5) 
##        n  missing distinct 
##    49005        0      190 
## 
## lowest : ..C  0    1005 102  1041, highest: 96   960  99   990  993 
## ---------------------------------------------------------------------------
## 2006_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Total_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      858    0.998    159.1    277.1        0        3 
##      .25      .50      .75      .90      .95 
##       15       30       48       75      105 
## 
## lowest :      0      3      6      9     12, highest: 134730 139647 168849 201660 438609
## ---------------------------------------------------------------------------
## 2013_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Electricity 
##        n  missing distinct 
##    49005        0      754 
## 
## lowest : ..C  0    1002 1005 1008, highest: 99   990  9948 996  999 
## ---------------------------------------------------------------------------
## 2013_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Mains_Gas 
##        n  missing distinct 
##    49005        0      316 
## 
## lowest : ..C  0    1017 102  105 , highest: 9750 978  987  9894 99  
## ---------------------------------------------------------------------------
## 2013_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Bottled_Gas 
##        n  missing distinct 
##    49005        0      340 
## 
## lowest : ..C  0    1002 102  105 , highest: 96   960  963  99   993 
## ---------------------------------------------------------------------------
## 2013_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Wood 
##        n  missing distinct 
##    49005        0      561 
## 
## lowest : ..C   0     10029 10032 10038, highest: 987   99    993   99318 999  
## ---------------------------------------------------------------------------
## 2013_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Coal 
##        n  missing distinct 
##    49005        0      196 
## 
## lowest : ..C   0     10050 10053 1017 , highest: 96    966   99    990   996  
## ---------------------------------------------------------------------------
## 2013_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Solar_Power 
##        n  missing distinct 
##    49005        0      129 
## 
## lowest : ..C  0    102  105  1065, highest: 93   96   963  978  99  
## ---------------------------------------------------------------------------
## 2013_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_No_Fuels_Used_in_this_Dwelling 
##        n  missing distinct 
##    49005        0      147 
## 
## lowest : ..C  0    102  105  1053, highest: 912  93   96   960  99  
## ---------------------------------------------------------------------------
## 2013_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Other_Fuel(s) 
##        n  missing distinct 
##    49005        0      127 
## 
## lowest : ..C  0    102  1020 108 , highest: 90   93   945  96   99  
## ---------------------------------------------------------------------------
## 2013_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Total_dwellings_stated 
##        n  missing distinct 
##    49005        0      855 
## 
## lowest : ..C  0    1002 1005 1008, highest: 99   993  996  9960 999 
## ---------------------------------------------------------------------------
## 2013_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Not_Elsewhere_Included(5) 
##        n  missing distinct 
##    49005        0      223 
## 
## lowest : ..C  0    1002 1005 102 , highest: 96   963  978  99   999 
## ---------------------------------------------------------------------------
## 2013_Census_fuel_types_used_to_heat_dwellings_(total_responses)(4)_for_occupied_private_dwellings_Total_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      891    0.998      169    294.4        0        3 
##      .25      .50      .75      .90      .95 
##       15       30       51       78      117 
## 
## lowest :      0      3      6      9     12, highest: 130428 151644 177165 206916 472044
## ---------------------------------------------------------------------------
## code.Int 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0    48317        1  1462027  1073533   136204   234540 
##      .25      .50      .75      .90      .95 
##   619900  1346301  2291101  2800560  3007280 
## 
## lowest :       1       2       3       4       5
## highest: 3209002 3209003 3210001 3210002 3210003
## ---------------------------------------------------------------------------

9.1 Families

## faDT 
## 
##  97  Variables      49005  Observations
## ---------------------------------------------------------------------------
## 2001_Census_total_families_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      682    0.996    104.7    183.3        0        0 
##      .25      .50      .75      .90      .95 
##        9       18       33       51       72 
##                                                                          
## Value           0   5000  10000  15000  20000  25000  30000  35000  40000
## Frequency   48824     76     43     26     10      7      5      3      2
## Proportion  0.996  0.002  0.001  0.001  0.000  0.000  0.000  0.000  0.000
##                                                                   
## Value       45000  55000  65000  85000  90000 110000 130000 295000
## Frequency       1      1      1      1      1      1      1      2
## Proportion  0.000  0.000  0.000  0.000  0.000  0.000  0.000  0.000
## ---------------------------------------------------------------------------
## 2006_Census_total_families_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      723    0.997    115.8    202.2        0        3 
##      .25      .50      .75      .90      .95 
##        9       21       36       54       78 
##                                                                          
## Value           0   5000  10000  15000  20000  25000  30000  35000  40000
## Frequency   48813     86     33     33     12      4      7      4      3
## Proportion  0.996  0.002  0.001  0.001  0.000  0.000  0.000  0.000  0.000
##                                                                          
## Value       45000  50000  60000  70000  90000 100000 120000 140000 340000
## Frequency       1      1      1      1      1      1      1      1      2
## Proportion  0.000  0.000  0.000  0.000  0.000  0.000  0.000  0.000  0.000
## ---------------------------------------------------------------------------
## 2013_Census_total_families_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      756    0.997    123.6    216.1        0        3 
##      .25      .50      .75      .90      .95 
##        9       21       36       57       87 
##                                                                          
## Value           0   5000  10000  15000  20000  25000  30000  35000  40000
## Frequency   48808     87     27     35     18      5      4      6      5
## Proportion  0.996  0.002  0.001  0.001  0.000  0.000  0.000  0.000  0.000
##                                                                   
## Value       50000  60000  75000  90000 110000 125000 145000 375000
## Frequency       2      1      1      1      1      1      1      2
## Proportion  0.000  0.000  0.000  0.000  0.000  0.000  0.000  0.000
## ---------------------------------------------------------------------------
## 2001_Census_family_type_for_families_in_occupied_private_dwellings_Couple_without_children 
##        n  missing distinct 
##    49005        0      419 
## 
## lowest : ..C  0    1002 102  1020, highest: 963  978  99   990  9945
## ---------------------------------------------------------------------------
## 2001_Census_family_type_for_families_in_occupied_private_dwellings_Couple_with_child(ren) 
##        n  missing distinct 
##    49005        0      415 
## 
## lowest : ..C  0    1005 1008 1017, highest: 978  981  99   990  999 
## ---------------------------------------------------------------------------
## 2001_Census_family_type_for_families_in_occupied_private_dwellings_One_parent_with_child(ren) 
##        n  missing distinct 
##    49005        0      285 
## 
## lowest : ..C  0    1005 1011 102 , highest: 96   963  972  984  99  
## ---------------------------------------------------------------------------
## 2001_Census_family_type_for_families_in_occupied_private_dwellings_Total_families_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      668    0.996    104.7    183.3        0        0 
##      .25      .50      .75      .90      .95 
##        9       18       33       51       72 
##                                                                          
## Value           0   5000  10000  15000  20000  25000  30000  35000  40000
## Frequency   48824     76     43     26     10      7      5      3      2
## Proportion  0.996  0.002  0.001  0.001  0.000  0.000  0.000  0.000  0.000
##                                                                   
## Value       45000  55000  65000  85000  90000 110000 130000 295000
## Frequency       1      1      1      1      1      1      1      2
## Proportion  0.000  0.000  0.000  0.000  0.000  0.000  0.000  0.000
## ---------------------------------------------------------------------------
## 2006_Census_family_type_for_families_in_occupied_private_dwellings_Couple_without_children 
##        n  missing distinct 
##    49005        0      445 
## 
## lowest : ..C  0    1014 1017 102 , highest: 9513 96   960  981  99  
## ---------------------------------------------------------------------------
## 2006_Census_family_type_for_families_in_occupied_private_dwellings_Couple_with_child(ren) 
##        n  missing distinct 
##    49005        0      457 
## 
## lowest : ..C  0    1002 1008 1011, highest: 966  975  978  99   996 
## ---------------------------------------------------------------------------
## 2006_Census_family_type_for_families_in_occupied_private_dwellings_One_parent_with_child(ren) 
##        n  missing distinct 
##    49005        0      303 
## 
## lowest : ..C  0    1011 102  1020, highest: 96   981  984  99   993 
## ---------------------------------------------------------------------------
## 2006_Census_family_type_for_families_in_occupied_private_dwellings_Total_families_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      718    0.997    115.8    202.2        0        3 
##      .25      .50      .75      .90      .95 
##        9       21       36       54       78 
##                                                                          
## Value           0   5000  10000  15000  20000  25000  30000  35000  40000
## Frequency   48813     86     33     33     12      4      7      4      3
## Proportion  0.996  0.002  0.001  0.001  0.000  0.000  0.000  0.000  0.000
##                                                                          
## Value       45000  50000  60000  70000  90000 100000 120000 140000 340000
## Frequency       1      1      1      1      1      1      1      1      2
## Proportion  0.000  0.000  0.000  0.000  0.000  0.000  0.000  0.000  0.000
## ---------------------------------------------------------------------------
## 2013_Census_family_type_for_families_in_occupied_private_dwellings_Couple_without_children 
##        n  missing distinct 
##    49005        0      475 
## 
## lowest : ..C  0    1008 1014 1017, highest: 966  9774 981  99   999 
## ---------------------------------------------------------------------------
## 2013_Census_family_type_for_families_in_occupied_private_dwellings_Couple_with_child(ren) 
##        n  missing distinct 
##    49005        0      469 
## 
## lowest : ..C  0    1002 1005 1008, highest: 984  99   990  996  999 
## ---------------------------------------------------------------------------
## 2013_Census_family_type_for_families_in_occupied_private_dwellings_One_parent_with_child(ren) 
##        n  missing distinct 
##    49005        0      304 
## 
## lowest : ..C  0    1008 1014 102 , highest: 960  966  975  981  99  
## ---------------------------------------------------------------------------
## 2013_Census_family_type_for_families_in_occupied_private_dwellings_Total_families_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      746    0.997    123.6    216.1        0        3 
##      .25      .50      .75      .90      .95 
##        9       21       36       57       87 
##                                                                          
## Value           0   5000  10000  15000  20000  25000  30000  35000  40000
## Frequency   48808     87     27     35     18      5      4      6      5
## Proportion  0.996  0.002  0.001  0.001  0.000  0.000  0.000  0.000  0.000
##                                                                   
## Value       50000  60000  75000  90000 110000 125000 145000 375000
## Frequency       2      1      1      1      1      1      1      2
## Proportion  0.000  0.000  0.000  0.000  0.000  0.000  0.000  0.000
## ---------------------------------------------------------------------------
## 2001_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_$20000_or_Less 
##        n  missing distinct 
##    49005        0      268 
## 
## lowest : ..C  0    1005 1017 102 , highest: 942  96   972  975  99  
## ---------------------------------------------------------------------------
## 2001_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_$20001_$30000 
##        n  missing distinct 
##    49005        0      260 
## 
## lowest : ..C  0    102  105  1053, highest: 9711 978  981  984  99  
## ---------------------------------------------------------------------------
## 2001_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_$30001_$50000 
##        n  missing distinct 
##    49005        0      302 
## 
## lowest : ..C   0     1008  102   10335, highest: 951   957   96    99    996  
## ---------------------------------------------------------------------------
## 2001_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_$50001_$70000 
##        n  missing distinct 
##    49005        0      277 
## 
## lowest : ..C  0    1008 102  1035, highest: 942  945  96   99   9936
## ---------------------------------------------------------------------------
## 2001_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_$70001_$100000 
##        n  missing distinct 
##    49005        0      225 
## 
## lowest : ..C  0    1011 102  105 , highest: 9369 9564 96   972  99  
## ---------------------------------------------------------------------------
## 2001_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_$100001_or_More 
##        n  missing distinct 
##    49005        0      237 
## 
## lowest : ..C  0    1008 102  1032, highest: 939  948  957  96   99  
## ---------------------------------------------------------------------------
## 2001_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_Total_families_stated 
##        n  missing distinct 
##    49005        0      616 
## 
## lowest : ..C  1002 1011 1014 1017, highest: 993  9939 9951 996  9990
## ---------------------------------------------------------------------------
## 2001_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_Not_Stated(4) 
##        n  missing distinct 
##    49005        0      267 
## 
## lowest : ..C  0    102  1029 1044, highest: 9159 93   936  96   99  
## ---------------------------------------------------------------------------
## 2001_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_Total_families_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      681    0.996    104.7    183.3        0        0 
##      .25      .50      .75      .90      .95 
##        9       18       33       51       72 
##                                                                          
## Value           0   5000  10000  15000  20000  25000  30000  35000  40000
## Frequency   48824     76     43     26     10      7      5      3      2
## Proportion  0.996  0.002  0.001  0.001  0.000  0.000  0.000  0.000  0.000
##                                                                   
## Value       45000  55000  65000  85000  90000 110000 130000 295000
## Frequency       1      1      1      1      1      1      1      2
## Proportion  0.000  0.000  0.000  0.000  0.000  0.000  0.000  0.000
## ---------------------------------------------------------------------------
## 2001_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_Median_family_income_($)(5)(10) 
##        n  missing distinct 
##    49005        0      568 
## 
## lowest : ..C    *      0      100000 10800 , highest: 96300  97000  97400  97500  98400 
## ---------------------------------------------------------------------------
## 2006_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_$20000_or_Less 
##        n  missing distinct 
##    49005        0      212 
## 
## lowest : ..C  0    1008 102  1032, highest: 93   96   99   990  996 
## ---------------------------------------------------------------------------
## 2006_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_$20001_$30000 
##        n  missing distinct 
##    49005        0      257 
## 
## lowest : ..C  0    1005 1008 102 , highest: 975  984  99   993  996 
## ---------------------------------------------------------------------------
## 2006_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_$30001_$50000 
##        n  missing distinct 
##    49005        0      297 
## 
## lowest : ..C  0    102  1032 105 , highest: 963  966  99   993  999 
## ---------------------------------------------------------------------------
## 2006_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_$50001_$70000 
##        n  missing distinct 
##    49005        0      290 
## 
## lowest : ..C   0     10122 1014  102  , highest: 957   96    969   987   99   
## ---------------------------------------------------------------------------
## 2006_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_$70001_$100000 
##        n  missing distinct 
##    49005        0      277 
## 
## lowest : ..C  0    1002 1008 102 , highest: 975  99   990  993  999 
## ---------------------------------------------------------------------------
## 2006_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_$100001_or_More 
##        n  missing distinct 
##    49005        0      313 
## 
## lowest : ..C   0     10005 1005  1011 , highest: 9459  96    969   9879  99   
## ---------------------------------------------------------------------------
## 2006_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_Total_families_stated 
##        n  missing distinct 
##    49005        0      639 
## 
## lowest : ..C   10002 1002  1005  1008 , highest: 990   993   9942  996   999  
## ---------------------------------------------------------------------------
## 2006_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_Not_Stated(4) 
##        n  missing distinct 
##    49005        0      279 
## 
## lowest : ..C   0     1005  10164 102  , highest: 96    960   966   987   99   
## ---------------------------------------------------------------------------
## 2006_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_Total_families_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      726    0.997    115.8    202.2        0        3 
##      .25      .50      .75      .90      .95 
##        9       21       36       54       78 
##                                                                          
## Value           0   5000  10000  15000  20000  25000  30000  35000  40000
## Frequency   48813     86     33     33     12      4      7      4      3
## Proportion  0.996  0.002  0.001  0.001  0.000  0.000  0.000  0.000  0.000
##                                                                          
## Value       45000  50000  60000  70000  90000 100000 120000 140000 340000
## Frequency       1      1      1      1      1      1      1      1      2
## Proportion  0.000  0.000  0.000  0.000  0.000  0.000  0.000  0.000  0.000
## ---------------------------------------------------------------------------
## 2006_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_Median_family_income_($)(5)(10) 
##        n  missing distinct 
##    49005        0      608 
## 
## lowest : ..C    *      0      100000 10800 , highest: 97800  97900  98300  98600  98900 
## ---------------------------------------------------------------------------
## 2013_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_$20000_or_Less 
##        n  missing distinct 
##    49005        0      199 
## 
## lowest : ..C  0    102  1032 105 , highest: 954  96   987  99   996 
## ---------------------------------------------------------------------------
## 2013_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_$20001_$30000 
##        n  missing distinct 
##    49005        0      207 
## 
## lowest : ..C  0    1008 1017 102 , highest: 966  972  975  99   999 
## ---------------------------------------------------------------------------
## 2013_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_$30001_$50000 
##        n  missing distinct 
##    49005        0      303 
## 
## lowest : ..C  0    102  1032 1035, highest: 939  96   987  99   999 
## ---------------------------------------------------------------------------
## 2013_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_$50001_$70000 
##        n  missing distinct 
##    49005        0      284 
## 
## lowest : ..C 0   102 105 108, highest: 96  966 975 99  990
## ---------------------------------------------------------------------------
## 2013_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_$70001_$100000 
##        n  missing distinct 
##    49005        0      309 
## 
## lowest : ..C  0    1014 102  1029, highest: 954  96   960  972  99  
## ---------------------------------------------------------------------------
## 2013_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_$100001_or_More 
##        n  missing distinct 
##    49005        0      391 
## 
## lowest : ..C  0    102  1032 1038, highest: 9825 9867 99   993  996 
## ---------------------------------------------------------------------------
## 2013_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_Total_families_stated 
##        n  missing distinct 
##    49005        0      690 
## 
## lowest : ..C   10014 1005  1008  1011 , highest: 990   993   996   9972  999  
## ---------------------------------------------------------------------------
## 2013_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_Not_Stated(4) 
##        n  missing distinct 
##    49005        0      249 
## 
## lowest : ..C  0    1005 102  1035, highest: 945  96   969  99   999 
## ---------------------------------------------------------------------------
## 2013_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_Total_families_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      744    0.997    123.6    216.1        0        3 
##      .25      .50      .75      .90      .95 
##        9       21       36       57       87 
##                                                                          
## Value           0   5000  10000  15000  20000  25000  30000  35000  40000
## Frequency   48808     87     27     35     18      5      4      6      5
## Proportion  0.996  0.002  0.001  0.001  0.000  0.000  0.000  0.000  0.000
##                                                                   
## Value       50000  60000  75000  90000 110000 125000 145000 375000
## Frequency       2      1      1      1      1      1      1      2
## Proportion  0.000  0.000  0.000  0.000  0.000  0.000  0.000  0.000
## ---------------------------------------------------------------------------
## 2013_Census_total_family_income_(grouped)(1)(2)(3)_for_families_in_occupied_private_dwellings_Median_family_income_($)(5)(10) 
##        n  missing distinct 
##    49005        0      797 
## 
## lowest : ..C    *      0      100000 100100, highest: 98800  98900  99500  99600  99700 
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Wages_Salary_Commissions_Bonuses_etc 
##        n  missing distinct 
##    49005        0      561 
## 
## lowest : ..C   0     1002  10050 1008 , highest: 990   9909  9939  996   999  
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Self-employment_or_Business 
##        n  missing distinct 
##    49005        0      385 
## 
## lowest : ..C  0    1014 102  1029, highest: 969  99   9900 9948 999 
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Interest_Dividends_Rent_Other_Invest. 
##        n  missing distinct 
##    49005        0      400 
## 
## lowest : ..C   0     10140 1017  102  , highest: 969   9750  981   99    990  
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Payments_from_a_Work_Accident_Insurer 
##        n  missing distinct 
##    49005        0      138 
## 
## lowest : ..C  0    1017 102  1047, highest: 90   93   96   975  99  
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_NZ_Superannuation_or_Veterans_Pension 
##        n  missing distinct 
##    49005        0      284 
## 
## lowest : ..C  0    1011 102  1020, highest: 9381 954  96   99   999 
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Other_Super._Pensions_Annuities 
##        n  missing distinct 
##    49005        0      164 
## 
## lowest : ..C  0    102  105  1083, highest: 930  957  96   978  99  
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Unemployment_Benefit 
##        n  missing distinct 
##    49005        0      210 
## 
## lowest : ..C  0    1017 102  1044, highest: 939  9582 96   99   999 
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Sickness_Benefit 
##        n  missing distinct 
##    49005        0      129 
## 
## lowest : ..C  0    105  111  1131, highest: 90   93   96   969  99  
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Domestic_Purposes_Benefit 
##        n  missing distinct 
##    49005        0      223 
## 
## lowest : ..C  0    1005 1008 1011, highest: 963  969  9834 99   996 
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Invalids_Benefit 
##        n  missing distinct 
##    49005        0      137 
## 
## lowest : ..C 0   102 108 111, highest: 90  93  96  99  993
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Student_Allowance 
##        n  missing distinct 
##    49005        0      145 
## 
## lowest : ..C  0    1014 102  105 , highest: 93   96   966  987  99  
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Other_Govt_Benefits_Payments_or_Pension 
##        n  missing distinct 
##    49005        0      184 
## 
## lowest : ..C  0    102  105  1050, highest: 930  942  957  96   99  
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Other_Sources_of_Income 
##        n  missing distinct 
##    49005        0      140 
## 
## lowest : ..C  0    1005 102  105 , highest: 96   960  9759 9762 99  
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_No_Source_of_Income_During_That_Time 
##        n  missing distinct 
##    49005        0       72 
## 
## lowest : ..C 0   102 105 12 , highest: 78  9   90  93  96 
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Total_families_stated 
##        n  missing distinct 
##    49005        0      669 
## 
## lowest : ..C  1002 1005 1008 1011, highest: 9900 993  9954 996  999 
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Not_Stated 
##        n  missing distinct 
##    49005        0       94 
## 
## lowest : ..C  0    1017 102  105 , highest: 9    90   912  93   99  
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Total_families_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      684    0.996    104.7    183.3        0        0 
##      .25      .50      .75      .90      .95 
##        9       18       33       51       72 
##                                                                          
## Value           0   5000  10000  15000  20000  25000  30000  35000  40000
## Frequency   48824     76     43     26     10      7      5      3      2
## Proportion  0.996  0.002  0.001  0.001  0.000  0.000  0.000  0.000  0.000
##                                                                   
## Value       45000  55000  65000  85000  95000 110000 130000 295000
## Frequency       1      1      1      1      1      1      1      2
## Proportion  0.000  0.000  0.000  0.000  0.000  0.000  0.000  0.000
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Wages_Salary_Commissions_Bonuses_etc 
##        n  missing distinct 
##    49005        0      602 
## 
## lowest : ..C  0    1005 1008 1011, highest: 990  993  9948 996  999 
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Self-employment_or_Business 
##        n  missing distinct 
##    49005        0      399 
## 
## lowest : ..C  0    1002 1008 1011, highest: 948  96   981  99   990 
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Interest_Dividends_Rent_Other_Invest. 
##        n  missing distinct 
##    49005        0      414 
## 
## lowest : ..C   0     1011  10131 102  , highest: 9804  981   99    990   999  
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Payments_from_a_Work_Accident_Insurer 
##        n  missing distinct 
##    49005        0      144 
## 
## lowest : ..C  0    1002 102  1062, highest: 921  93   948  96   99  
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_NZ_Superannuation_or_Veterans_Pension 
##        n  missing distinct 
##    49005        0      296 
## 
## lowest : ..C   0     10068 102   1020 , highest: 936   951   96    99    990  
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Other_Super._Pensions_Annuities 
##        n  missing distinct 
##    49005        0      168 
## 
## lowest : ..C  0    1014 102  1032, highest: 939  957  96   960  99  
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Unemployment_Benefit 
##        n  missing distinct 
##    49005        0      163 
## 
## lowest : ..C  0    102  105  1059, highest: 942  96   960  984  99  
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Sickness_Benefit 
##        n  missing distinct 
##    49005        0      145 
## 
## lowest : ..C  0    102  105  1059, highest: 927  93   96   966  99  
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Domestic_Purposes_Benefit 
##        n  missing distinct 
##    49005        0      219 
## 
## lowest : ..C  0    1011 102  1023, highest: 93   951  96   963  99  
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Invalids_Benefit 
##        n  missing distinct 
##    49005        0      139 
## 
## lowest : ..C  0    102  1020 105 , highest: 912  93   930  942  99  
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Student_Allowance 
##        n  missing distinct 
##    49005        0      130 
## 
## lowest : ..C  0    102  1029 1041, highest: 90   93   948  96   99  
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Other_Govt_Benefits_Payments_or_Pension 
##        n  missing distinct 
##    49005        0      194 
## 
## lowest : ..C  0    1017 102  1041, highest: 93   936  945  96   99  
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Other_Sources_of_Income 
##        n  missing distinct 
##    49005        0      147 
## 
## lowest : ..C  0    102  1020 105 , highest: 93   948  96   975  984 
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_No_Source_of_Income_During_That_Time 
##        n  missing distinct 
##    49005        0       74 
## 
## lowest : ..C 0   102 105 114, highest: 849 87  9   96  99 
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Total_families_stated 
##        n  missing distinct 
##    49005        0      710 
## 
## lowest : ..C    100038 1002   1005   1008  , highest: 99     990    993    996    999   
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Not_Stated 
##        n  missing distinct 
##    49005        0       93 
## 
## lowest : ..C  0    102  108  1104, highest: 87   9    90   96   99  
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Total_families_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      717    0.997    115.8    202.2        0        3 
##      .25      .50      .75      .90      .95 
##        9       21       36       54       78 
##                                                                          
## Value           0   5000  10000  15000  20000  25000  30000  35000  40000
## Frequency   48813     86     33     33     12      4      7      4      3
## Proportion  0.996  0.002  0.001  0.001  0.000  0.000  0.000  0.000  0.000
##                                                                          
## Value       45000  50000  60000  70000  90000 100000 120000 140000 340000
## Frequency       1      1      1      1      1      1      1      1      2
## Proportion  0.000  0.000  0.000  0.000  0.000  0.000  0.000  0.000  0.000
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Wages_Salary_Commissions_Bonuses_etc 
##        n  missing distinct 
##    49005        0      626 
## 
## lowest : ..C   0     1002  1005  10056, highest: 984   99    990   993   999  
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Self-employment_or_Business 
##        n  missing distinct 
##    49005        0      403 
## 
## lowest : ..C   0     10107 102   1041 , highest: 99    99249 99252 9981  999  
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Interest_Dividends_Rent_Other_Invest. 
##        n  missing distinct 
##    49005        0      399 
## 
## lowest : ..C   0     10059 1017  102  , highest: 978   98181 987   99    9906 
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Payments_from_a_Work_Accident_Insurer 
##        n  missing distinct 
##    49005        0      137 
## 
## lowest : ..C 0   102 105 108, highest: 9   90  93  96  99 
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_NZ_Superannuation_or_Veterans_Pension 
##        n  missing distinct 
##    49005        0      332 
## 
## lowest : ..C  0    1011 102  1023, highest: 963  966  972  975  99  
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Other_Super._Pensions_Annuities 
##        n  missing distinct 
##    49005        0      169 
## 
## lowest : ..C  0    102  1047 105 , highest: 93   933  948  96   99  
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Unemployment_Benefit 
##        n  missing distinct 
##    49005        0      162 
## 
## lowest : ..C  0    102  1026 105 , highest: 93   942  954  96   99  
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Sickness_Benefit 
##        n  missing distinct 
##    49005        0      151 
## 
## lowest : ..C  0    1011 1014 102 , highest: 948  96   963  966  99  
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Domestic_Purposes_Benefit 
##        n  missing distinct 
##    49005        0      207 
## 
## lowest : ..C  0    1011 102  1023, highest: 951  96   963  987  99  
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Invalids_Benefit 
##        n  missing distinct 
##    49005        0      136 
## 
## lowest : ..C  0    1005 102  105 , highest: 90   93   96   969  99  
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Student_Allowance 
##        n  missing distinct 
##    49005        0      150 
## 
## lowest : ..C  0    102  1035 1038, highest: 921  93   96   984  99  
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Other_Govt_Benefits_Payments_or_Pension 
##        n  missing distinct 
##    49005        0      227 
## 
## lowest : ..C  0    1008 102  1020, highest: 96   969  972  975  99  
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Other_Sources_of_Income 
##        n  missing distinct 
##    49005        0      148 
## 
## lowest : ..C  0    102  1041 105 , highest: 93   96   960  987  99  
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_No_Source_of_Income_During_That_Time 
##        n  missing distinct 
##    49005        0       80 
## 
## lowest : ..C 0   105 111 114, highest: 84  87  9   90  96 
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Total_families_stated 
##        n  missing distinct 
##    49005        0      730 
## 
## lowest : ..C  1002 1008 1011 1014, highest: 99   990  993  996  999 
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Not_Stated 
##        n  missing distinct 
##    49005        0      104 
## 
## lowest : ..C 0   102 105 108, highest: 90  93  948 96  99 
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_family_income(6)(7)(8)(9)_for_families_in_occupied_private_dwellings_Total_families_in_private_occupied_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      746    0.997    123.6    216.1        0        3 
##      .25      .50      .75      .90      .95 
##        9       21       36       57       87 
##                                                                          
## Value           0   5000  10000  15000  20000  25000  30000  35000  40000
## Frequency   48808     87     27     35     18      5      4      6      5
## Proportion  0.996  0.002  0.001  0.001  0.000  0.000  0.000  0.000  0.000
##                                                                   
## Value       50000  60000  75000  90000 110000 125000 145000 375000
## Frequency       2      1      1      1      1      1      1      2
## Proportion  0.000  0.000  0.000  0.000  0.000  0.000  0.000  0.000
## ---------------------------------------------------------------------------
## code.Int 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0    48317        1  1462027  1073533   136204   234540 
##      .25      .50      .75      .90      .95 
##   619900  1346301  2291101  2800560  3007280 
## 
## lowest :       1       2       3       4       5
## highest: 3209002 3209003 3210001 3210002 3210003
## ---------------------------------------------------------------------------

9.2 Households

## hhDT 
## 
##  256  Variables      49005  Observations
## ---------------------------------------------------------------------------
## 2001_Census_total_households_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      817    0.998    145.1    253.5        0        0 
##      .25      .50      .75      .90      .95 
##       12       27       45       69       96 
## 
## 0 (48787, 0.996), 5000 (99, 0.002), 10000 (27, 0.001), 15000 (29, 0.001),
## 20000 (25, 0.001), 25000 (9, 0.000), 30000 (5, 0.000), 35000 (6, 0.000),
## 40000 (3, 0.000), 45000 (3, 0.000), 50000 (2, 0.000), 60000 (1, 0.000),
## 70000 (1, 0.000), 80000 (1, 0.000), 85000 (1, 0.000), 125000 (2, 0.000),
## 155000 (1, 0.000), 185000 (1, 0.000), 390000 (2, 0.000)
## ---------------------------------------------------------------------------
## 2006_Census_total_households_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      853    0.998    157.2    273.9        0        3 
##      .25      .50      .75      .90      .95 
##       15       27       48       72      105 
## 
## 0 (48773, 0.995), 5000 (111, 0.002), 10000 (24, 0.000), 15000 (32, 0.001),
## 20000 (18, 0.000), 25000 (11, 0.000), 30000 (9, 0.000), 35000 (7, 0.000),
## 40000 (2, 0.000), 45000 (6, 0.000), 55000 (2, 0.000), 70000 (1, 0.000),
## 75000 (1, 0.000), 85000 (1, 0.000), 95000 (1, 0.000), 135000 (1, 0.000),
## 140000 (1, 0.000), 165000 (1, 0.000), 2e+05 (1, 0.000), 435000 (2, 0.000)
## ---------------------------------------------------------------------------
## 2013_Census_total_households_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      877    0.998    167.7    292.3        0        3 
##      .25      .50      .75      .90      .95 
##       15       30       51       78      117 
## 
## lowest :      0      3      6      9     12, highest: 150174 176133 204843 469497 469500
## ---------------------------------------------------------------------------
## 2001_Census_household_composition_for_households_in_occupied_private_dwellings_One-family_household_(with_or_without_other_people) 
##        n  missing distinct 
##    49005        0      655 
## 
## lowest : ..C  0    1002 1008 1011, highest: 99   990  993  996  999 
## ---------------------------------------------------------------------------
## 2001_Census_household_composition_for_households_in_occupied_private_dwellings_Two-family_household_(with_or_without_other_people) 
##        n  missing distinct 
##    49005        0      123 
## 
## lowest : ..C  0    102  1026 105 , highest: 93   945  96   99   996 
## ---------------------------------------------------------------------------
## 2001_Census_household_composition_for_households_in_occupied_private_dwellings_Three_or_more_family_household_(with_or_without_other_people) 
##        n  missing distinct 
##    49005        0       33 
## 
## lowest : ..C  0    1017 105  12  , highest: 81   84   9    90   93  
## ---------------------------------------------------------------------------
## 2001_Census_household_composition_for_households_in_occupied_private_dwellings_Other_multi-person_household 
##        n  missing distinct 
##    49005        0      192 
## 
## lowest : ..C   0     102   1023  10431, highest: 948   96    969   981   99   
## ---------------------------------------------------------------------------
## 2001_Census_household_composition_for_households_in_occupied_private_dwellings_One-person_household 
##        n  missing distinct 
##    49005        0      399 
## 
## lowest : ..C   0     10020 1017  102  , highest: 972   9804  981   984   99   
## ---------------------------------------------------------------------------
## 2001_Census_household_composition_for_households_in_occupied_private_dwellings_Total_households_stated 
##        n  missing distinct 
##    49005        0      817 
## 
## lowest : ..C   1002  10029 10056 1008 , highest: 990   9900  993   996   999  
## ---------------------------------------------------------------------------
## 2001_Census_household_composition_for_households_in_occupied_private_dwellings_Household_composition_unidentifiable 
##        n  missing distinct 
##    49005        0      135 
## 
## lowest : ..C  0    102  105  1056, highest: 933  96   966  978  99  
## ---------------------------------------------------------------------------
## 2001_Census_household_composition_for_households_in_occupied_private_dwellings_Total_households_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      820    0.998    145.1    253.5        0        0 
##      .25      .50      .75      .90      .95 
##       12       27       45       69       96 
## 
## 0 (48787, 0.996), 5000 (99, 0.002), 10000 (27, 0.001), 15000 (29, 0.001),
## 20000 (25, 0.001), 25000 (9, 0.000), 30000 (5, 0.000), 35000 (6, 0.000),
## 40000 (3, 0.000), 45000 (3, 0.000), 50000 (2, 0.000), 60000 (1, 0.000),
## 70000 (1, 0.000), 80000 (1, 0.000), 85000 (1, 0.000), 125000 (2, 0.000),
## 155000 (1, 0.000), 185000 (1, 0.000), 390000 (2, 0.000)
## ---------------------------------------------------------------------------
## 2006_Census_household_composition_for_households_in_occupied_private_dwellings_One-family_household_(with_or_without_other_people) 
##        n  missing distinct 
##    49005        0      686 
## 
## lowest : ..C  0    1002 1005 1008, highest: 99   990  993  996  999 
## ---------------------------------------------------------------------------
## 2006_Census_household_composition_for_households_in_occupied_private_dwellings_Two-family_household_(with_or_without_other_people) 
##        n  missing distinct 
##    49005        0      144 
## 
## lowest : ..C  0    102  1044 105 , highest: 93   96   978  987  99  
## ---------------------------------------------------------------------------
## 2006_Census_household_composition_for_households_in_occupied_private_dwellings_Three_or_more_family_household_(with_or_without_other_people) 
##        n  missing distinct 
##    49005        0       42 
## 
## lowest : ..C 0   111 12  126, highest: 72  78  81  87  9  
## ---------------------------------------------------------------------------
## 2006_Census_household_composition_for_households_in_occupied_private_dwellings_Other_multi-person_household 
##        n  missing distinct 
##    49005        0      199 
## 
## lowest : ..C  0    1005 102  1029, highest: 945  96   969  99   9981
## ---------------------------------------------------------------------------
## 2006_Census_household_composition_for_households_in_occupied_private_dwellings_One-person_household 
##        n  missing distinct 
##    49005        0      396 
## 
## lowest : ..C   0     1008  10101 102  , highest: 9744  981   987   99    9969 
## ---------------------------------------------------------------------------
## 2006_Census_household_composition_for_households_in_occupied_private_dwellings_Total_households_stated 
##        n  missing distinct 
##    49005        0      836 
## 
## lowest : ..C  1002 1005 1008 1011, highest: 99   990  993  996  999 
## ---------------------------------------------------------------------------
## 2006_Census_household_composition_for_households_in_occupied_private_dwellings_Household_composition_unidentifiable 
##        n  missing distinct 
##    49005        0      131 
## 
## lowest : ..C  0    102  105  1062, highest: 915  93   930  96   99  
## ---------------------------------------------------------------------------
## 2006_Census_household_composition_for_households_in_occupied_private_dwellings_Total_households_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      848    0.998    157.2    273.9        0        3 
##      .25      .50      .75      .90      .95 
##       15       27       48       72      105 
## 
## 0 (48773, 0.995), 5000 (111, 0.002), 10000 (24, 0.000), 15000 (32, 0.001),
## 20000 (18, 0.000), 25000 (11, 0.000), 30000 (9, 0.000), 35000 (7, 0.000),
## 40000 (2, 0.000), 45000 (6, 0.000), 55000 (2, 0.000), 70000 (1, 0.000),
## 75000 (1, 0.000), 85000 (1, 0.000), 95000 (1, 0.000), 135000 (1, 0.000),
## 140000 (1, 0.000), 165000 (1, 0.000), 2e+05 (1, 0.000), 435000 (2, 0.000)
## ---------------------------------------------------------------------------
## 2013_Census_household_composition_for_households_in_occupied_private_dwellings_One-family_household_(with_or_without_other_people) 
##        n  missing distinct 
##    49005        0      697 
## 
## lowest : ..C   0     10002 1002  1005 , highest: 99    990   993   996   999  
## ---------------------------------------------------------------------------
## 2013_Census_household_composition_for_households_in_occupied_private_dwellings_Two-family_household_(with_or_without_other_people) 
##        n  missing distinct 
##    49005        0      153 
## 
## lowest : ..C  0    102  1026 1029, highest: 924  93   96   987  99  
## ---------------------------------------------------------------------------
## 2013_Census_household_composition_for_households_in_occupied_private_dwellings_Three_or_more_family_household_(with_or_without_other_people) 
##        n  missing distinct 
##    49005        0       48 
## 
## lowest : ..C 0   111 12  123, highest: 78  81  84  9   99 
## ---------------------------------------------------------------------------
## 2013_Census_household_composition_for_households_in_occupied_private_dwellings_Other_multi-person_household 
##        n  missing distinct 
##    49005        0      194 
## 
## lowest : ..C   0     1011  10146 102  , highest: 963   966   9735  981   99   
## ---------------------------------------------------------------------------
## 2013_Census_household_composition_for_households_in_occupied_private_dwellings_One-person_household 
##        n  missing distinct 
##    49005        0      423 
## 
## lowest : ..C   0     10101 1014  102  , highest: 9618  966   984   99    996  
## ---------------------------------------------------------------------------
## 2013_Census_household_composition_for_households_in_occupied_private_dwellings_Total_households_stated 
##        n  missing distinct 
##    49005        0      864 
## 
## lowest : ..C   1002  10035 1005  10050, highest: 99042 993   996   9966  999  
## ---------------------------------------------------------------------------
## 2013_Census_household_composition_for_households_in_occupied_private_dwellings_Household_composition_unidentifiable 
##        n  missing distinct 
##    49005        0      159 
## 
## lowest : ..C  0    1017 102  1020, highest: 93   930  96   963  99  
## ---------------------------------------------------------------------------
## 2013_Census_household_composition_for_households_in_occupied_private_dwellings_Total_households_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      879    0.998    167.7    292.3        0        3 
##      .25      .50      .75      .90      .95 
##       15       30       51       78      117 
## 
## lowest :      0      3      6      9     12, highest: 150174 176133 204840 469497 469500
## ---------------------------------------------------------------------------
## 2001_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_One_Usual_Resident 
##        n  missing distinct 
##    49005        0      400 
## 
## lowest : ..C   0     10029 102   1020 , highest: 9690  972   9810  984   99   
## ---------------------------------------------------------------------------
## 2001_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Two_Usual_Residents 
##        n  missing distinct 
##    49005        0      460 
## 
## lowest : ..C  0    1017 102  1032, highest: 972  975  984  99   999 
## ---------------------------------------------------------------------------
## 2001_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Three_Usual_Residents 
##        n  missing distinct 
##    49005        0      316 
## 
## lowest : ..C  0    1002 102  1041, highest: 978  984  99   993  996 
## ---------------------------------------------------------------------------
## 2001_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Four_Usual_Residents 
##        n  missing distinct 
##    49005        0      305 
## 
## lowest : ..C  0    102  105  1062, highest: 9369 951  96   981  99  
## ---------------------------------------------------------------------------
## 2001_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Five_Usual_Residents 
##        n  missing distinct 
##    49005        0      229 
## 
## lowest : ..C  0    1011 1014 102 , highest: 960  975  9768 99   993 
## ---------------------------------------------------------------------------
## 2001_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Six_Usual_Residents 
##        n  missing distinct 
##    49005        0      151 
## 
## lowest : ..C 0   102 105 108, highest: 963 978 981 984 99 
## ---------------------------------------------------------------------------
## 2001_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Seven_Usual_Residents 
##        n  missing distinct 
##    49005        0       91 
## 
## lowest : ..C 0   102 105 108, highest: 90  906 93  96  99 
## ---------------------------------------------------------------------------
## 2001_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Eight_or_More_Usual_Residents 
##        n  missing distinct 
##    49005        0       83 
## 
## lowest : ..C  0    102  1029 108 , highest: 93   96   981  99   993 
## ---------------------------------------------------------------------------
## 2001_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Total_households_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      829    0.998    145.1    253.5        0        0 
##      .25      .50      .75      .90      .95 
##       12       27       45       69       96 
## 
## 0 (48787, 0.996), 5000 (99, 0.002), 10000 (27, 0.001), 15000 (29, 0.001),
## 20000 (25, 0.001), 25000 (9, 0.000), 30000 (5, 0.000), 35000 (6, 0.000),
## 40000 (3, 0.000), 45000 (3, 0.000), 50000 (2, 0.000), 60000 (1, 0.000),
## 70000 (1, 0.000), 80000 (1, 0.000), 85000 (1, 0.000), 125000 (2, 0.000),
## 155000 (1, 0.000), 185000 (1, 0.000), 390000 (2, 0.000)
## ---------------------------------------------------------------------------
## 2001_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Mean_Number_of_Usual_Household_Members 
##        n  missing distinct 
##    49005        0       71 
## 
## lowest : *   0   0.5 0.8 0.9, highest: 7.2 7.3 7.5 8   9  
## ---------------------------------------------------------------------------
## 2006_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_One_Usual_Resident 
##        n  missing distinct 
##    49005        0      397 
## 
## lowest : ..C   0     1008  10104 102  , highest: 981   984   987   99    9969 
## ---------------------------------------------------------------------------
## 2006_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Two_Usual_Residents 
##        n  missing distinct 
##    49005        0      477 
## 
## lowest : ..C  0    1005 1008 1017, highest: 984  99   990  993  999 
## ---------------------------------------------------------------------------
## 2006_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Three_Usual_Residents 
##        n  missing distinct 
##    49005        0      315 
## 
## lowest : ..C  0    1005 1011 1014, highest: 96   963  984  99   999 
## ---------------------------------------------------------------------------
## 2006_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Four_Usual_Residents 
##        n  missing distinct 
##    49005        0      314 
## 
## lowest : ..C   0     102   10251 105  , highest: 936   96    975   99    999  
## ---------------------------------------------------------------------------
## 2006_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Five_Usual_Residents 
##        n  missing distinct 
##    49005        0      225 
## 
## lowest : ..C  0    1017 102  1035, highest: 975  987  99   990  9954
## ---------------------------------------------------------------------------
## 2006_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Six_Usual_Residents 
##        n  missing distinct 
##    49005        0      150 
## 
## lowest : ..C  0    1017 102  1029, highest: 924  93   942  96   99  
## ---------------------------------------------------------------------------
## 2006_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Seven_Usual_Residents 
##        n  missing distinct 
##    49005        0       91 
## 
## lowest : ..C  0    102  105  1065, highest: 93   96   960  99   993 
## ---------------------------------------------------------------------------
## 2006_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Eight_or_More_Usual_Residents 
##        n  missing distinct 
##    49005        0       93 
## 
## lowest : ..C  0    102  1035 108 , highest: 9    90   93   96   99  
## ---------------------------------------------------------------------------
## 2006_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Total_households_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      855    0.998    157.2    273.9        0        3 
##      .25      .50      .75      .90      .95 
##       15       27       48       72      105 
## 
## 0 (48773, 0.995), 5000 (111, 0.002), 10000 (24, 0.000), 15000 (32, 0.001),
## 20000 (18, 0.000), 25000 (11, 0.000), 30000 (9, 0.000), 35000 (7, 0.000),
## 40000 (2, 0.000), 45000 (6, 0.000), 55000 (2, 0.000), 70000 (1, 0.000),
## 75000 (1, 0.000), 85000 (1, 0.000), 95000 (1, 0.000), 135000 (1, 0.000),
## 140000 (1, 0.000), 165000 (1, 0.000), 2e+05 (1, 0.000), 435000 (2, 0.000)
## ---------------------------------------------------------------------------
## 2006_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Mean_Number_of_Usual_Household_Members 
##        n  missing distinct 
##    49005        0       71 
## 
## lowest : *   0   0.5 0.9 1  , highest: 7.3 7.8 8   8.5 9  
## ---------------------------------------------------------------------------
## 2013_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_One_Usual_Resident 
##        n  missing distinct 
##    49005        0      428 
## 
## lowest : ..C   0     10101 1014  102  , highest: 9618  963   984   99    993  
## ---------------------------------------------------------------------------
## 2013_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Two_Usual_Residents 
##        n  missing distinct 
##    49005        0      497 
## 
## lowest : ..C  0    102  1026 1032, highest: 969  972  987  99   9903
## ---------------------------------------------------------------------------
## 2013_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Three_Usual_Residents 
##        n  missing distinct 
##    49005        0      328 
## 
## lowest : ..C  0    1005 1008 102 , highest: 963  966  99   990  9999
## ---------------------------------------------------------------------------
## 2013_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Four_Usual_Residents 
##        n  missing distinct 
##    49005        0      323 
## 
## lowest : ..C   0     1005  10095 1011 , highest: 96    966   9720  975   99   
## ---------------------------------------------------------------------------
## 2013_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Five_Usual_Residents 
##        n  missing distinct 
##    49005        0      227 
## 
## lowest : ..C   0     1005  102   10395, highest: 915   93    948   96    99   
## ---------------------------------------------------------------------------
## 2013_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Six_Usual_Residents 
##        n  missing distinct 
##    49005        0      152 
## 
## lowest : ..C  0    102  1044 1047, highest: 912  93   951  96   99  
## ---------------------------------------------------------------------------
## 2013_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Seven_Usual_Residents 
##        n  missing distinct 
##    49005        0       97 
## 
## lowest : ..C 0   102 105 108, highest: 900 903 93  972 99 
## ---------------------------------------------------------------------------
## 2013_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Eight_or_More_Usual_Residents 
##        n  missing distinct 
##    49005        0       90 
## 
## lowest : ..C  0    102  1020 1026, highest: 90   93   939  96   99  
## ---------------------------------------------------------------------------
## 2013_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Total_households_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      884    0.998    167.7    292.3        0        3 
##      .25      .50      .75      .90      .95 
##       15       30       51       78      117 
## 
## lowest :      0      3      6      9     12, highest: 150174 176133 204843 469497 469500
## ---------------------------------------------------------------------------
## 2013_Census_number_of_usual_residents_in_household(1)_for_households_in_occupied_private_dwellings_Mean_Number_of_Usual_Household_Members 
##        n  missing distinct 
##    49005        0       69 
## 
## lowest : *   0   0.5 0.7 1  , highest: 7.4 7.5 7.7 8   9  
## ---------------------------------------------------------------------------
## 2001_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_$20000_or_Less 
##        n  missing distinct 
##    49005        0      372 
## 
## lowest : ..C  0    1005 1014 102 , highest: 963  975  984  99   993 
## ---------------------------------------------------------------------------
## 2001_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_$20001-$30000 
##        n  missing distinct 
##    49005        0      304 
## 
## lowest : ..C  0    1005 1014 102 , highest: 96   981  984  99   990 
## ---------------------------------------------------------------------------
## 2001_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_$30001-$50000 
##        n  missing distinct 
##    49005        0      331 
## 
## lowest : ..C  0    1002 1011 102 , highest: 9726 981  984  99   996 
## ---------------------------------------------------------------------------
## 2001_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_$50001-$70000 
##        n  missing distinct 
##    49005        0      293 
## 
## lowest : ..C   0     1008  1014  10143, highest: 93    948   96    963   99   
## ---------------------------------------------------------------------------
## 2001_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_$70001-$100000 
##        n  missing distinct 
##    49005        0      238 
## 
## lowest : ..C  0    1014 102  1032, highest: 975  981  984  99   990 
## ---------------------------------------------------------------------------
## 2001_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_$100001_or_More 
##        n  missing distinct 
##    49005        0      258 
## 
## lowest : ..C  0    1014 102  1029, highest: 987  99   990  996  9990
## ---------------------------------------------------------------------------
## 2001_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_Total_households_stated 
##        n  missing distinct 
##    49005        0      738 
## 
## lowest : ..C   1002  10020 1005  1008 , highest: 99    990   993   996   999  
## ---------------------------------------------------------------------------
## 2001_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_Not_Stated(5) 
##        n  missing distinct 
##    49005        0      339 
## 
## lowest : ..C  0    1002 1005 102 , highest: 954  96   9837 99   990 
## ---------------------------------------------------------------------------
## 2001_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_Total_households_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      824    0.998    145.1    253.5        0        0 
##      .25      .50      .75      .90      .95 
##       12       27       45       69       96 
## 
## 0 (48787, 0.996), 5000 (99, 0.002), 10000 (27, 0.001), 15000 (29, 0.001),
## 20000 (25, 0.001), 25000 (9, 0.000), 30000 (5, 0.000), 35000 (6, 0.000),
## 40000 (3, 0.000), 45000 (3, 0.000), 50000 (2, 0.000), 60000 (1, 0.000),
## 70000 (1, 0.000), 80000 (1, 0.000), 85000 (1, 0.000), 125000 (2, 0.000),
## 155000 (1, 0.000), 185000 (1, 0.000), 390000 (2, 0.000)
## ---------------------------------------------------------------------------
## 2001_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_Median_household_income_($)(18)(23) 
##        n  missing distinct 
##    49005        0      607 
## 
## lowest : ..C    *      0      100000 10300 , highest: 96300  96900  97000  97500  99300 
## ---------------------------------------------------------------------------
## 2006_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_$20000_or_Less 
##        n  missing distinct 
##    49005        0      315 
## 
## lowest : ..C  0    102  1026 1038, highest: 963  966  978  99   996 
## ---------------------------------------------------------------------------
## 2006_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_$20001-$30000 
##        n  missing distinct 
##    49005        0      290 
## 
## lowest : ..C  0    1002 1008 1017, highest: 978  99   990  993  999 
## ---------------------------------------------------------------------------
## 2006_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_$30001-$50000 
##        n  missing distinct 
##    49005        0      342 
## 
## lowest : ..C  0    1002 1008 1017, highest: 969  99   990  996  9984
## ---------------------------------------------------------------------------
## 2006_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_$50001-$70000 
##        n  missing distinct 
##    49005        0      308 
## 
## lowest : ..C  0    102  105  1056, highest: 942  96   99   990  999 
## ---------------------------------------------------------------------------
## 2006_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_$70001-$100000 
##        n  missing distinct 
##    49005        0      289 
## 
## lowest : ..C   0     1008  10143 102  , highest: 9486  96    984   99    990  
## ---------------------------------------------------------------------------
## 2006_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_$100001_or_More 
##        n  missing distinct 
##    49005        0      334 
## 
## lowest : ..C   0     10182 102   105  , highest: 957   96    99    99285 996  
## ---------------------------------------------------------------------------
## 2006_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_Total_households_stated 
##        n  missing distinct 
##    49005        0      778 
## 
## lowest : ..C  0    1002 1005 1008, highest: 990  993  996  999  9990
## ---------------------------------------------------------------------------
## 2006_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_Not_Stated(5) 
##        n  missing distinct 
##    49005        0      340 
## 
## lowest : ..C  0    1005 1008 102 , highest: 96   960  969  99   999 
## ---------------------------------------------------------------------------
## 2006_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_Total_households_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      842    0.998    157.2    273.9        0        3 
##      .25      .50      .75      .90      .95 
##       15       27       48       72      105 
## 
## 0 (48773, 0.995), 5000 (111, 0.002), 10000 (24, 0.000), 15000 (32, 0.001),
## 20000 (18, 0.000), 25000 (11, 0.000), 30000 (9, 0.000), 35000 (7, 0.000),
## 40000 (2, 0.000), 45000 (6, 0.000), 55000 (2, 0.000), 70000 (1, 0.000),
## 75000 (1, 0.000), 85000 (1, 0.000), 95000 (1, 0.000), 135000 (1, 0.000),
## 140000 (1, 0.000), 165000 (1, 0.000), 2e+05 (1, 0.000), 435000 (2, 0.000)
## ---------------------------------------------------------------------------
## 2006_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_Median_household_income_($)(18)(23) 
##        n  missing distinct 
##    49005        0      686 
## 
## lowest : ..C    *      0      100000 10300 , highest: 97300  97500  97900  98400  99100 
## ---------------------------------------------------------------------------
## 2013_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_$20000_or_Less 
##        n  missing distinct 
##    49005        0      272 
## 
## lowest : ..C  0    1002 102  1020, highest: 93   945  96   987  99  
## ---------------------------------------------------------------------------
## 2013_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_$20001-$30000 
##        n  missing distinct 
##    49005        0      284 
## 
## lowest : ..C  0    102  1020 1035, highest: 96   963  972  99   990 
## ---------------------------------------------------------------------------
## 2013_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_$30001-$50000 
##        n  missing distinct 
##    49005        0      346 
## 
## lowest : ..C  0    1014 102  1020, highest: 96   978  99   990  993 
## ---------------------------------------------------------------------------
## 2013_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_$50001-$70000 
##        n  missing distinct 
##    49005        0      313 
## 
## lowest : ..C  0    102  1038 105 , highest: 93   951  96   987  99  
## ---------------------------------------------------------------------------
## 2013_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_$70001-$100000 
##        n  missing distinct 
##    49005        0      328 
## 
## lowest : ..C  0    1002 1014 102 , highest: 951  96   960  975  99  
## ---------------------------------------------------------------------------
## 2013_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_$100001_or_More 
##        n  missing distinct 
##    49005        0      416 
## 
## lowest : ..C  0    1002 1011 1014, highest: 960  975  981  987  99  
## ---------------------------------------------------------------------------
## 2013_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_Total_households_stated 
##        n  missing distinct 
##    49005        0      812 
## 
## lowest : ..C   1002  1005  1008  10098, highest: 990   993   996   9975  999  
## ---------------------------------------------------------------------------
## 2013_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_Not_Stated(5) 
##        n  missing distinct 
##    49005        0      324 
## 
## lowest : ..C  0    1002 102  1020, highest: 957  96   960  99   999 
## ---------------------------------------------------------------------------
## 2013_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_Total_households_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      879    0.998    167.7    292.3        0        3 
##      .25      .50      .75      .90      .95 
##       15       30       51       78      117 
## 
## lowest :      0      3      6      9     12, highest: 129081 150174 176133 204840 469500
## ---------------------------------------------------------------------------
## 2013_Census_total_household_income_(grouped)(2)(3)(4)_for_households_in_occupied_private_dwellings_Median_household_income_($)(18)(23) 
##        n  missing distinct 
##    49005        0      866 
## 
## lowest : ..C    *      0      100000 100100, highest: 99400  99500  99600  99700  99800 
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Wages_Salary_Commissions_Bonuses_etc 
##        n  missing distinct 
##    49005        0      627 
## 
## lowest : ..C   0     1002  1005  10062, highest: 99    990   993   999   9999 
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Self-employment_or_Business 
##        n  missing distinct 
##    49005        0      402 
## 
## lowest : ..C  0    1008 1017 102 , highest: 987  99   990  993  996 
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Interest_Dividends_Rent_Other_Invest. 
##        n  missing distinct 
##    49005        0      466 
## 
## lowest : ..C  0    1008 1011 1014, highest: 984  987  99   993  996 
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Payments_from_a_Work_Accident_Insurer 
##        n  missing distinct 
##    49005        0      166 
## 
## lowest : ..C  0    102  105  1050, highest: 924  93   96   960  99  
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_NZ_Superannuation_or_Veterans_Pension 
##        n  missing distinct 
##    49005        0      382 
## 
## lowest : ..C  0    1002 102  105 , highest: 975  978  987  99   996 
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Other_Super._Pensions_Annuities 
##        n  missing distinct 
##    49005        0      207 
## 
## lowest : ..C  0    102  105  1056, highest: 93   945  954  96   99  
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Unemployment_Benefit 
##        n  missing distinct 
##    49005        0      255 
## 
## lowest : ..C  0    1017 102  105 , highest: 9396 96   963  987  99  
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Sickness_Benefit 
##        n  missing distinct 
##    49005        0      162 
## 
## lowest : ..C  0    102  1020 105 , highest: 936  942  951  96   99  
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Domestic_Purposes_Benefit 
##        n  missing distinct 
##    49005        0      235 
## 
## lowest : ..C  0    1005 1008 1011, highest: 9747 975  978  981  99  
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Invalids_Benefit 
##        n  missing distinct 
##    49005        0      166 
## 
## lowest : ..C  0    1008 102  1023, highest: 933  96   978  99   993 
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Student_Allowance 
##        n  missing distinct 
##    49005        0      179 
## 
## lowest : ..C  0    102  105  1056, highest: 96   966  972  975  99  
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Other_Govt_Benefits_Payments_or_Pension 
##        n  missing distinct 
##    49005        0      218 
## 
## lowest : ..C  0    102  1032 1044, highest: 915  93   96   99   990 
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Other_Sources_of_Income 
##        n  missing distinct 
##    49005        0      158 
## 
## lowest : ..C  0    1008 102  105 , highest: 948  96   960  978  99  
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_No_Source_of_Income_During_That_Time 
##        n  missing distinct 
##    49005        0       76 
## 
## lowest : ..C  0    1035 105  108 , highest: 84   87   9    90   99  
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Total_Households_Stated 
##        n  missing distinct 
##    49005        0      811 
## 
## lowest : ..C   1002  1005  10059 1008 , highest: 990   993   9936  996   999  
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Not_Stated 
##        n  missing distinct 
##    49005        0      172 
## 
## lowest : ..C  0    102  1032 105 , highest: 96   969  972  984  99  
## ---------------------------------------------------------------------------
## 2001_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Total_households_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      817    0.998    145.1    253.4        0        0 
##      .25      .50      .75      .90      .95 
##       12       27       45       69       96 
## 
## 0 (48787, 0.996), 5000 (99, 0.002), 10000 (27, 0.001), 15000 (29, 0.001),
## 20000 (25, 0.001), 25000 (9, 0.000), 30000 (5, 0.000), 35000 (6, 0.000),
## 40000 (3, 0.000), 45000 (3, 0.000), 50000 (2, 0.000), 60000 (1, 0.000),
## 70000 (1, 0.000), 80000 (1, 0.000), 85000 (1, 0.000), 125000 (2, 0.000),
## 155000 (1, 0.000), 185000 (1, 0.000), 390000 (2, 0.000)
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Wages_Salary_Commissions_Bonuses_etc 
##        n  missing distinct 
##    49005        0      683 
## 
## lowest : ..C   0     10017 1002  1005 , highest: 990   9909  993   996   999  
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Self-employment_or_Business 
##        n  missing distinct 
##    49005        0      420 
## 
## lowest : ..C   0     1002  1011  10194, highest: 954   96    960   972   99   
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Interest_Dividends_Rent_Other_Invest. 
##        n  missing distinct 
##    49005        0      478 
## 
## lowest : ..C   0     1002  1005  10149, highest: 981   99    990   993   996  
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Payments_from_a_Work_Accident_Insurer 
##        n  missing distinct 
##    49005        0      164 
## 
## lowest : ..C  0    102  105  1053, highest: 96   960  963  978  99  
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_NZ_Superannuation_or_Veterans_Pension 
##        n  missing distinct 
##    49005        0      396 
## 
## lowest : ..C  0    1005 1008 102 , highest: 981  99   990  993  996 
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Other_Super._Pensions_Annuities 
##        n  missing distinct 
##    49005        0      194 
## 
## lowest : ..C  0    1008 1011 1017, highest: 96   966  984  987  99  
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Unemployment_Benefit 
##        n  missing distinct 
##    49005        0      196 
## 
## lowest : ..C  0    102  1020 1047, highest: 9465 951  96   960  99  
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Sickness_Benefit 
##        n  missing distinct 
##    49005        0      183 
## 
## lowest : ..C  0    1005 102  1026, highest: 96   963  984  987  99  
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Domestic_Purposes_Benefit 
##        n  missing distinct 
##    49005        0      217 
## 
## lowest : ..C  0    1017 102  1047, highest: 96   9717 981  984  99  
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Invalids_Benefit 
##        n  missing distinct 
##    49005        0      184 
## 
## lowest : ..C  0    1002 1005 102 , highest: 96   984  99   996  999 
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Student_Allowance 
##        n  missing distinct 
##    49005        0      156 
## 
## lowest : ..C  0    102  1029 1035, highest: 945  96   981  99   996 
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Other_Govt_Benefits_Payments_or_Pension 
##        n  missing distinct 
##    49005        0      206 
## 
## lowest : ..C  0    1008 1011 102 , highest: 96   972  981  99   993 
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Other_Sources_of_Income 
##        n  missing distinct 
##    49005        0      174 
## 
## lowest : ..C  0    1011 102  105 , highest: 915  93   96   984  99  
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_No_Source_of_Income_During_That_Time 
##        n  missing distinct 
##    49005        0       82 
## 
## lowest : ..C  0    111  1110 114 , highest: 9    90   93   96   99  
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Total_Households_Stated 
##        n  missing distinct 
##    49005        0      832 
## 
## lowest : ..C  1002 1005 1008 1011, highest: 99   990  993  996  999 
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Not_Stated 
##        n  missing distinct 
##    49005        0      177 
## 
## lowest : ..C  0    1017 102  105 , highest: 951  957  96   99   999 
## ---------------------------------------------------------------------------
## 2006_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Total_households_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      855    0.998    157.2    273.9        0        3 
##      .25      .50      .75      .90      .95 
##       15       27       48       72      105 
## 
## 0 (48773, 0.995), 5000 (111, 0.002), 10000 (24, 0.000), 15000 (32, 0.001),
## 20000 (18, 0.000), 25000 (11, 0.000), 30000 (9, 0.000), 35000 (7, 0.000),
## 40000 (2, 0.000), 45000 (6, 0.000), 55000 (2, 0.000), 70000 (1, 0.000),
## 75000 (1, 0.000), 85000 (1, 0.000), 95000 (1, 0.000), 135000 (1, 0.000),
## 140000 (1, 0.000), 165000 (1, 0.000), 2e+05 (1, 0.000), 435000 (2, 0.000)
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Wages_Salary_Commissions_Bonuses_etc 
##        n  missing distinct 
##    49005        0      689 
## 
## lowest : ..C   0     1002  10020 1005 , highest: 9933  996   9966  999   9996 
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Self-employment_or_Business 
##        n  missing distinct 
##    49005        0      432 
## 
## lowest : ..C  0    1014 102  1029, highest: 963  9678 9687 99   999 
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Interest_Dividends_Rent_Other_Invest. 
##        n  missing distinct 
##    49005        0      464 
## 
## lowest : ..C   0     1002  1005  10095, highest: 981   99    990   9951  999  
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Payments_from_a_Work_Accident_Insurer 
##        n  missing distinct 
##    49005        0      152 
## 
## lowest : ..C  0    1017 102  1038, highest: 90   93   936  951  96  
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_NZ_Superannuation_or_Veterans_Pension 
##        n  missing distinct 
##    49005        0      432 
## 
## lowest : ..C  0    1002 1005 1008, highest: 9744 978  987  99   999 
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Other_Super._Pensions_Annuities 
##        n  missing distinct 
##    49005        0      203 
## 
## lowest : ..C  0    1005 102  1029, highest: 960  966  9696 987  99  
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Unemployment_Benefit 
##        n  missing distinct 
##    49005        0      196 
## 
## lowest : ..C  0    1005 102  105 , highest: 93   933  96   981  99  
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Sickness_Benefit 
##        n  missing distinct 
##    49005        0      183 
## 
## lowest : ..C  0    102  1023 1029, highest: 948  951  96   99   996 
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Domestic_Purposes_Benefit 
##        n  missing distinct 
##    49005        0      208 
## 
## lowest : ..C  0    1002 102  1032, highest: 942  945  96   963  99  
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Invalids_Benefit 
##        n  missing distinct 
##    49005        0      185 
## 
## lowest : ..C  0    1011 1014 102 , highest: 939  957  96   960  99  
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Student_Allowance 
##        n  missing distinct 
##    49005        0      179 
## 
## lowest : ..C  0    102  1029 105 , highest: 951  96   984  987  99  
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Other_Govt_Benefits_Payments_or_Pension 
##        n  missing distinct 
##    49005        0      229 
## 
## lowest : ..C  0    102  1026 105 , highest: 93   96   969  981  99  
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Other_Sources_of_Income 
##        n  missing distinct 
##    49005        0      169 
## 
## lowest : ..C  0    102  1041 105 , highest: 927  93   96   984  99  
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_No_Source_of_Income_During_That_Time 
##        n  missing distinct 
##    49005        0       87 
## 
## lowest : ..C  0    1005 102  1038, highest: 90   93   942  966  99  
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Total_Households_Stated 
##        n  missing distinct 
##    49005        0      859 
## 
## lowest : ..C  1002 1005 1008 1011, highest: 9852 987  99   990  999 
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Not_Stated 
##        n  missing distinct 
##    49005        0      202 
## 
## lowest : ..C  0    1005 102  1047, highest: 93   936  945  96   99  
## ---------------------------------------------------------------------------
## 2013_Census_sources_of_household_income(6)(7)(8)(9)_for_households_in_occupied_private_dwellings_Total_households_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      881    0.998    167.7    292.3        0        3 
##      .25      .50      .75      .90      .95 
##       15       30       51       78      117 
## 
## lowest :      0      3      6      9     12, highest: 129081 150174 176133 204840 469500
## ---------------------------------------------------------------------------
## 2001_Census_tenure_of_household(10)_for_households_in_occupied_private_dwellings_Dwelling_Owned_or_Partly_Owned 
##        n  missing distinct 
##    49005        0      651 
## 
## lowest : ..C   0     1002  1005  1008 , highest: 9927  993   996   999   99918
## ---------------------------------------------------------------------------
## 2001_Census_tenure_of_household(10)_for_households_in_occupied_private_dwellings_Dwelling_Not_Owned_and_Not_Held_in_a_Family_Trust(12) 
##        n  missing distinct 
##    49005        0      449 
## 
## lowest : ..C  0    1002 1005 1017, highest: 975  984  987  99   999 
## ---------------------------------------------------------------------------
## 2001_Census_tenure_of_household(10)_for_households_in_occupied_private_dwellings_Dwelling_Held_in_a_Family_Trust(13) 
##        n  missing distinct    value 
##    49005        0        1       .. 
##                 
## Value         ..
## Frequency  49005
## Proportion     1
## ---------------------------------------------------------------------------
## 2001_Census_tenure_of_household(10)_for_households_in_occupied_private_dwellings_Total_households_stated 
##        n  missing distinct 
##    49005        0      804 
## 
## lowest : ..C  0    1002 1005 1008, highest: 99   990  993  996  999 
## ---------------------------------------------------------------------------
## 2001_Census_tenure_of_household(10)_for_households_in_occupied_private_dwellings_Not_Elsewhere_Included(11) 
##        n  missing distinct 
##    49005        0      186 
## 
## lowest : ..C  0    1002 1005 102 , highest: 915  93   96   966  99  
## ---------------------------------------------------------------------------
## 2001_Census_tenure_of_household(10)_for_households_in_occupied_private_dwellings_Total_households_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      821    0.998    145.1    253.5        0        0 
##      .25      .50      .75      .90      .95 
##       12       27       45       69       96 
## 
## 0 (48787, 0.996), 5000 (99, 0.002), 10000 (27, 0.001), 15000 (29, 0.001),
## 20000 (25, 0.001), 25000 (9, 0.000), 30000 (5, 0.000), 35000 (6, 0.000),
## 40000 (3, 0.000), 45000 (3, 0.000), 50000 (2, 0.000), 60000 (1, 0.000),
## 70000 (1, 0.000), 80000 (1, 0.000), 85000 (1, 0.000), 125000 (2, 0.000),
## 155000 (1, 0.000), 185000 (1, 0.000), 390000 (2, 0.000)
## ---------------------------------------------------------------------------
## 2006_Census_tenure_of_household(10)_for_households_in_occupied_private_dwellings_Dwelling_Owned_or_Partly_Owned 
##        n  missing distinct 
##    49005        0      598 
## 
## lowest : ..C   0     10005 1002  10035, highest: 984   987   99    993   999  
## ---------------------------------------------------------------------------
## 2006_Census_tenure_of_household(10)_for_households_in_occupied_private_dwellings_Dwelling_Not_Owned_and_Not_Held_in_a_Family_Trust(12) 
##        n  missing distinct 
##    49005        0      454 
## 
## lowest : ..C  0    1002 1005 1014, highest: 963  969  99   9909 996 
## ---------------------------------------------------------------------------
## 2006_Census_tenure_of_household(10)_for_households_in_occupied_private_dwellings_Dwelling_Held_in_a_Family_Trust(13) 
##        n  missing distinct 
##    49005        0      301 
## 
## lowest : ..C  0    1005 102  105 , highest: 936  951  96   99   990 
## ---------------------------------------------------------------------------
## 2006_Census_tenure_of_household(10)_for_households_in_occupied_private_dwellings_Total_households_stated 
##        n  missing distinct 
##    49005        0      818 
## 
## lowest : ..C  0    1002 1005 1008, highest: 99   990  9936 996  999 
## ---------------------------------------------------------------------------
## 2006_Census_tenure_of_household(10)_for_households_in_occupied_private_dwellings_Not_Elsewhere_Included(11) 
##        n  missing distinct 
##    49005        0      226 
## 
## lowest : ..C  0    1005 102  1035, highest: 9528 957  96   987  99  
## ---------------------------------------------------------------------------
## 2006_Census_tenure_of_household(10)_for_households_in_occupied_private_dwellings_Total_households_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      856    0.998    157.2    273.9        0        3 
##      .25      .50      .75      .90      .95 
##       15       27       48       72      105 
## 
## 0 (48773, 0.995), 5000 (111, 0.002), 10000 (24, 0.000), 15000 (32, 0.001),
## 20000 (18, 0.000), 25000 (11, 0.000), 30000 (9, 0.000), 35000 (7, 0.000),
## 40000 (2, 0.000), 45000 (6, 0.000), 55000 (2, 0.000), 70000 (1, 0.000),
## 75000 (1, 0.000), 85000 (1, 0.000), 95000 (1, 0.000), 135000 (1, 0.000),
## 140000 (1, 0.000), 165000 (1, 0.000), 2e+05 (1, 0.000), 435000 (2, 0.000)
## ---------------------------------------------------------------------------
## 2013_Census_tenure_of_household(10)_for_households_in_occupied_private_dwellings_Dwelling_Owned_or_Partly_Owned 
##        n  missing distinct 
##    49005        0      593 
## 
## lowest : ..C   0     1002  10101 1011 , highest: 99    990   9948  996   999  
## ---------------------------------------------------------------------------
## 2013_Census_tenure_of_household(10)_for_households_in_occupied_private_dwellings_Dwelling_Not_Owned_and_Not_Held_in_a_Family_Trust(12) 
##        n  missing distinct 
##    49005        0      489 
## 
## lowest : ..C   0     1002  10089 10131, highest: 978   984   9849  99    996  
## ---------------------------------------------------------------------------
## 2013_Census_tenure_of_household(10)_for_households_in_occupied_private_dwellings_Dwelling_Held_in_a_Family_Trust(13) 
##        n  missing distinct 
##    49005        0      339 
## 
## lowest : ..C  0    1002 1008 102 , highest: 9672 978  99   990  996 
## ---------------------------------------------------------------------------
## 2013_Census_tenure_of_household(10)_for_households_in_occupied_private_dwellings_Total_households_stated 
##        n  missing distinct 
##    49005        0      859 
## 
## lowest : ..C   0     1002  10044 1005 , highest: 99    990   993   996   999  
## ---------------------------------------------------------------------------
## 2013_Census_tenure_of_household(10)_for_households_in_occupied_private_dwellings_Not_Elsewhere_Included(11) 
##        n  missing distinct 
##    49005        0      221 
## 
## lowest : ..C  0    1011 102  1020, highest: 954  96   960  99   990 
## ---------------------------------------------------------------------------
## 2013_Census_tenure_of_household(10)_for_households_in_occupied_private_dwellings_Total_households_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      878    0.998    167.7    292.3        0        3 
##      .25      .50      .75      .90      .95 
##       15       30       51       78      117 
## 
## lowest :      0      3      6      9     12, highest: 129078 150174 176133 204843 469500
## ---------------------------------------------------------------------------
## 2001_Census_sector_of_landlord_for_households_in_rented_occupied_private_dwellings(14)_Private_Person_Trust_or_Business 
##        n  missing distinct 
##    49005        0      350 
## 
## lowest : ..C  0    1005 1008 1017, highest: 960  9678 984  99   996 
## ---------------------------------------------------------------------------
## 2001_Census_sector_of_landlord_for_households_in_rented_occupied_private_dwellings(14)_Local_Authority_or_City_Council 
##        n  missing distinct 
##    49005        0       99 
## 
## lowest : ..C  0    1035 105  1077, highest: 9    90   93   96   99  
## ---------------------------------------------------------------------------
## 2001_Census_sector_of_landlord_for_households_in_rented_occupied_private_dwellings(14)_Housing_New_Zealand_Corporation 
##        n  missing distinct 
##    49005        0      186 
## 
## lowest : ..C  0    1014 102  1038, highest: 93   948  96   978  99  
## ---------------------------------------------------------------------------
## 2001_Census_sector_of_landlord_for_households_in_rented_occupied_private_dwellings(14)_Other_State-Owned_Corporation_or_State-Owned_Enterprise_or_Government_Department_or_Ministry 
##        n  missing distinct 
##    49005        0       70 
## 
## lowest : ..C 0   105 108 111, highest: 84  87  9   90  96 
## ---------------------------------------------------------------------------
## 2001_Census_sector_of_landlord_for_households_in_rented_occupied_private_dwellings(14)_Total_households_stated 
##        n  missing distinct 
##    49005        0      396 
## 
## lowest : ..C  1017 102  1047 105 , highest: 9672 987  99   990  9927
## ---------------------------------------------------------------------------
## 2001_Census_sector_of_landlord_for_households_in_rented_occupied_private_dwellings(14)_Not_Elsewhere_Included(15) 
##        n  missing distinct 
##    49005        0      115 
## 
## lowest : ..C  0    102  105  1056, highest: 909  93   954  96   99  
## ---------------------------------------------------------------------------
## 2001_Census_sector_of_landlord_for_households_in_rented_occupied_private_dwellings(14)_Total_households_in_rented_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      408     0.97       39    70.25        0        0 
##      .25      .50      .75      .90      .95 
##        0        6       12       24       39 
## 
## lowest :      0      3      6      9     12, highest:  33798  34488  44430  44910 116694
## ---------------------------------------------------------------------------
## 2006_Census_sector_of_landlord_for_households_in_rented_occupied_private_dwellings(14)_Private_Person_Trust_or_Business 
##        n  missing distinct 
##    49005        0      373 
## 
## lowest : ..C   0     102   10221 1038 , highest: 9855  99    990   993   996  
## ---------------------------------------------------------------------------
## 2006_Census_sector_of_landlord_for_households_in_rented_occupied_private_dwellings(14)_Local_Authority_or_City_Council 
##        n  missing distinct 
##    49005        0       86 
## 
## lowest : ..C 0   102 105 108, highest: 90  93  936 96  972
## ---------------------------------------------------------------------------
## 2006_Census_sector_of_landlord_for_households_in_rented_occupied_private_dwellings(14)_Housing_New_Zealand_Corporation 
##        n  missing distinct 
##    49005        0      180 
## 
## lowest : ..C  0    1017 102  1026, highest: 93   96   963  99   993 
## ---------------------------------------------------------------------------
## 2006_Census_sector_of_landlord_for_households_in_rented_occupied_private_dwellings(14)_Other_State-Owned_Corporation_or_State-Owned_Enterprise_or_Government_Department_or_Ministry 
##        n  missing distinct 
##    49005        0       74 
## 
## lowest : ..C  0    102  1023 108 , highest: 87   9    90   93   99  
## ---------------------------------------------------------------------------
## 2006_Census_sector_of_landlord_for_households_in_rented_occupied_private_dwellings(14)_Total_households_stated 
##        n  missing distinct 
##    49005        0      403 
## 
## lowest : ..C  1002 1008 1017 102 , highest: 984  99   990  993  996 
## ---------------------------------------------------------------------------
## 2006_Census_sector_of_landlord_for_households_in_rented_occupied_private_dwellings(14)_Not_Elsewhere_Included(15) 
##        n  missing distinct 
##    49005        0      126 
## 
## lowest : ..C  0    102  105  1056, highest: 8757 9    90   93   96  
## ---------------------------------------------------------------------------
## 2006_Census_sector_of_landlord_for_households_in_rented_occupied_private_dwellings(14)_Total_households_in_rented_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      416    0.975    42.28    75.89        0        0 
##      .25      .50      .75      .90      .95 
##        3        6       12       24       39 
## 
## lowest :      0      3      6      9     12, highest:  36828  48087  48414 130227 130230
## ---------------------------------------------------------------------------
## 2013_Census_sector_of_landlord_for_households_in_rented_occupied_private_dwellings(14)_Private_Person_Trust_or_Business 
##        n  missing distinct 
##    49005        0      409 
## 
## lowest : ..C  0    1002 1014 102 , highest: 975  984  99   990  9945
## ---------------------------------------------------------------------------
## 2013_Census_sector_of_landlord_for_households_in_rented_occupied_private_dwellings(14)_Local_Authority_or_City_Council 
##        n  missing distinct 
##    49005        0       89 
## 
## lowest : ..C  0    102  105  1062, highest: 9    909  93   96   99  
## ---------------------------------------------------------------------------
## 2013_Census_sector_of_landlord_for_households_in_rented_occupied_private_dwellings(14)_Housing_New_Zealand_Corporation 
##        n  missing distinct 
##    49005        0      180 
## 
## lowest : ..C  0    1002 1008 1014, highest: 96   960  975  987  99  
## ---------------------------------------------------------------------------
## 2013_Census_sector_of_landlord_for_households_in_rented_occupied_private_dwellings(14)_Other_State-Owned_Corporation_or_State-Owned_Enterprise_or_Government_Department_or_Ministry 
##        n  missing distinct 
##    49005        0       66 
## 
## lowest : ..C 0   102 105 108, highest: 87  9   90  96  99 
## ---------------------------------------------------------------------------
## 2013_Census_sector_of_landlord_for_households_in_rented_occupied_private_dwellings(14)_Total_households_stated 
##        n  missing distinct 
##    49005        0      436 
## 
## lowest : ..C   10035 1011  102   10302, highest: 969   972   9762  981   99   
## ---------------------------------------------------------------------------
## 2013_Census_sector_of_landlord_for_households_in_rented_occupied_private_dwellings(14)_Not_Elsewhere_Included(15) 
##        n  missing distinct 
##    49005        0      132 
## 
## lowest : ..C 0   102 105 108, highest: 90  915 93  96  99 
## ---------------------------------------------------------------------------
## 2013_Census_sector_of_landlord_for_households_in_rented_occupied_private_dwellings(14)_Total_households_in_rented_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      457    0.981    49.38    88.35        0        0 
##      .25      .50      .75      .90      .95 
##        3        6       15       27       45 
##                                                                          
## Value           0   2000   4000   6000   8000  10000  12000  14000  16000
## Frequency   48813     82     36     22     16     11      4      4      3
## Proportion  0.996  0.002  0.001  0.000  0.000  0.000  0.000  0.000  0.000
##                                                                          
## Value       18000  20000  24000  26000  30000  40000  44000  54000 154000
## Frequency       4      1      1      1      1      1      1      2      2
## Proportion  0.000  0.000  0.000  0.000  0.000  0.000  0.000  0.000  0.000
## ---------------------------------------------------------------------------
## 2001_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_Under_$100 
##        n  missing distinct 
##    49005        0      221 
## 
## lowest : ..C  0    1011 1014 102 , highest: 93   96   960  984  99  
## ---------------------------------------------------------------------------
## 2001_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_$100-$149 
##        n  missing distinct 
##    49005        0      233 
## 
## lowest : ..C  0    1017 102  1026, highest: 900  93   9387 96   99  
## ---------------------------------------------------------------------------
## 2001_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_$150-$199 
##        n  missing distinct 
##    49005        0      207 
## 
## lowest : ..C  0    1008 1014 102 , highest: 972  9768 984  99   996 
## ---------------------------------------------------------------------------
## 2001_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_$200-$249 
##        n  missing distinct 
##    49005        0      160 
## 
## lowest : ..C  0    102  1023 105 , highest: 948  951  96   972  99  
## ---------------------------------------------------------------------------
## 2001_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_$250-$299 
##        n  missing distinct 
##    49005        0      123 
## 
## lowest : ..C  0    1011 102  1032, highest: 93   939  96   972  99  
## ---------------------------------------------------------------------------
## 2001_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_$300-$349 
##        n  missing distinct 
##    49005        0       86 
## 
## lowest : ..C  0    102  105  108 , highest: 93   96   9699 9702 99  
## ---------------------------------------------------------------------------
## 2001_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_$350_and_Over 
##        n  missing distinct 
##    49005        0       98 
## 
## lowest : ..C 0   102 105 108, highest: 909 912 93  96  99 
## ---------------------------------------------------------------------------
## 2001_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_Total_households_stated 
##        n  missing distinct 
##    49005        0      400 
## 
## lowest : ..C  102  1026 1032 1041, highest: 9819 99   990  9978 999 
## ---------------------------------------------------------------------------
## 2001_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_Not_Elsewhere_Included(17) 
##        n  missing distinct 
##    49005        0      112 
## 
## lowest : ..C  0    102  105  1068, highest: 9    90   93   96   99  
## ---------------------------------------------------------------------------
## 2001_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_Total_households_in_rented_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      409     0.97       39    70.26        0        0 
##      .25      .50      .75      .90      .95 
##        0        6       12       24       39 
## 
## lowest :      0      3      6      9     12, highest:  33798  34488  44427  44913 116694
## ---------------------------------------------------------------------------
## 2001_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_Median_Weekly_Rent_Paid_($)(16)(18) 
##        n  missing distinct 
##    49005        0       81 
## 
## lowest : ..C  *    10   100  1000, highest: 90   900  910  950  980 
## ---------------------------------------------------------------------------
## 2006_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_Under_$100 
##        n  missing distinct 
##    49005        0      189 
## 
## lowest : ..C  0    1008 102  1020, highest: 939  96   960  981  99  
## ---------------------------------------------------------------------------
## 2006_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_$100-$149 
##        n  missing distinct 
##    49005        0      181 
## 
## lowest : ..C  0    102  1029 1035, highest: 93   96   969  972  99  
## ---------------------------------------------------------------------------
## 2006_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_$150-$199 
##        n  missing distinct 
##    49005        0      213 
## 
## lowest : ..C  0    102  1020 1035, highest: 9303 948  96   99   990 
## ---------------------------------------------------------------------------
## 2006_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_$200-$249 
##        n  missing distinct 
##    49005        0      192 
## 
## lowest : ..C  0    1011 1014 102 , highest: 951  96   981  99   996 
## ---------------------------------------------------------------------------
## 2006_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_$250-$299 
##        n  missing distinct 
##    49005        0      165 
## 
## lowest : ..C  0    102  105  1056, highest: 96   960  981  984  99  
## ---------------------------------------------------------------------------
## 2006_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_$300-$349 
##        n  missing distinct 
##    49005        0      134 
## 
## lowest : ..C 0   102 105 108, highest: 921 93  96  963 99 
## ---------------------------------------------------------------------------
## 2006_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_$350_and_Over 
##        n  missing distinct 
##    49005        0      155 
## 
## lowest : ..C 0   102 105 108, highest: 930 957 96  960 99 
## ---------------------------------------------------------------------------
## 2006_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_Total_households_stated 
##        n  missing distinct 
##    49005        0      416 
## 
## lowest : ..C  0    102  1020 1023, highest: 993  9933 9936 9972 999 
## ---------------------------------------------------------------------------
## 2006_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_Not_Elsewhere_Included(17) 
##        n  missing distinct 
##    49005        0       87 
## 
## lowest : ..C 0   102 105 108, highest: 90  93  954 96  99 
## ---------------------------------------------------------------------------
## 2006_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_Total_households_in_rented_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      418    0.975    42.27    75.88        0        0 
##      .25      .50      .75      .90      .95 
##        3        6       12       24       39 
## 
## lowest :      0      3      6      9     12, highest:  36828  48090  48414 130227 130230
## ---------------------------------------------------------------------------
## 2006_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_Median_Weekly_Rent_Paid_($)(16)(18) 
##        n  missing distinct 
##    49005        0       83 
## 
## lowest : ..C  *    100  1000 110 , highest: 90   920  950  960  980 
## ---------------------------------------------------------------------------
## 2013_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_Under_$100 
##        n  missing distinct 
##    49005        0      158 
## 
## lowest : ..C  0    102  105  1053, highest: 939  96   963  981  99  
## ---------------------------------------------------------------------------
## 2013_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_$100-$149 
##        n  missing distinct 
##    49005        0      155 
## 
## lowest : ..C  0    102  1041 105 , highest: 9    90   93   96   99  
## ---------------------------------------------------------------------------
## 2013_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_$150-$199 
##        n  missing distinct 
##    49005        0      176 
## 
## lowest : ..C  0    102  105  1065, highest: 93   936  948  96   99  
## ---------------------------------------------------------------------------
## 2013_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_$200-$249 
##        n  missing distinct 
##    49005        0      194 
## 
## lowest : ..C 0   102 105 108, highest: 93  933 96  972 99 
## ---------------------------------------------------------------------------
## 2013_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_$250-$299 
##        n  missing distinct 
##    49005        0      201 
## 
## lowest : ..C  0    1011 1017 102 , highest: 969  978  981  99   999 
## ---------------------------------------------------------------------------
## 2013_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_$300-$349 
##        n  missing distinct 
##    49005        0      188 
## 
## lowest : ..C  0    102  105  1062, highest: 963  975  99   993  996 
## ---------------------------------------------------------------------------
## 2013_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_$350_and_Over 
##        n  missing distinct 
##    49005        0      246 
## 
## lowest : ..C  0    102  105  108 , highest: 96   972  978  99   9909
## ---------------------------------------------------------------------------
## 2013_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_Total_households_stated 
##        n  missing distinct 
##    49005        0      448 
## 
## lowest : ..C   1014  102   1020  10281, highest: 990   9912  996   9990  9999 
## ---------------------------------------------------------------------------
## 2013_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_Not_Elsewhere_Included(17) 
##        n  missing distinct 
##    49005        0      107 
## 
## lowest : ..C 0   105 108 111, highest: 90  93  930 96  99 
## ---------------------------------------------------------------------------
## 2013_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_Total_households_in_rented_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      460    0.981    49.38    88.37        0        0 
##      .25      .50      .75      .90      .95 
##        3        6       15       27       45 
##                                                                          
## Value           0   2000   4000   6000   8000  10000  12000  14000  16000
## Frequency   48813     82     36     22     16     11      4      4      3
## Proportion  0.996  0.002  0.001  0.000  0.000  0.000  0.000  0.000  0.000
##                                                                          
## Value       18000  20000  24000  26000  30000  40000  44000  54000 154000
## Frequency       4      1      1      1      1      1      1      2      2
## Proportion  0.000  0.000  0.000  0.000  0.000  0.000  0.000  0.000  0.000
## ---------------------------------------------------------------------------
## 2013_Census_weekly_rent_paid_for_households_in_rented_occupied_private_dwellings(14)_Median_Weekly_Rent_Paid_($)(16)(18) 
##        n  missing distinct 
##    49005        0       96 
## 
## lowest : ..C  *    100  1000 110 , highest: 920  930  950  980  990 
## ---------------------------------------------------------------------------
## 2001_Census_number_of_motor_vehicles_for_households_in_occupied_private_dwellings_No_Motor_Vehicle 
##        n  missing distinct 
##    49005        0      262 
## 
## lowest : ..C  0    1008 1014 102 , highest: 933  945  954  96   99  
## ---------------------------------------------------------------------------
## 2001_Census_number_of_motor_vehicles_for_households_in_occupied_private_dwellings_One_Motor_Vehicle 
##        n  missing distinct 
##    49005        0      492 
## 
## lowest : ..C  0    1008 1014 1017, highest: 987  99   990  993  996 
## ---------------------------------------------------------------------------
## 2001_Census_number_of_motor_vehicles_for_households_in_occupied_private_dwellings_Two_Motor_Vehicles 
##        n  missing distinct 
##    49005        0      468 
## 
## lowest : ..C  0    1002 1008 1014, highest: 981  9846 987  99   9975
## ---------------------------------------------------------------------------
## 2001_Census_number_of_motor_vehicles_for_households_in_occupied_private_dwellings_Three_or_More_Motor_Vehicles 
##        n  missing distinct 
##    49005        0      292 
## 
## lowest : ..C  0    1011 102  1026, highest: 966  9675 984  99   990 
## ---------------------------------------------------------------------------
## 2001_Census_number_of_motor_vehicles_for_households_in_occupied_private_dwellings_Total_households_stated 
##        n  missing distinct 
##    49005        0      790 
## 
## lowest : ..C  1005 1008 1011 1014, highest: 9906 993  996  9960 999 
## ---------------------------------------------------------------------------
## 2001_Census_number_of_motor_vehicles_for_households_in_occupied_private_dwellings_Not_Elsewhere_Included(19) 
##        n  missing distinct 
##    49005        0      172 
## 
## lowest : ..C  0    102  1041 105 , highest: 915  93   942  96   99  
## ---------------------------------------------------------------------------
## 2001_Census_number_of_motor_vehicles_for_households_in_occupied_private_dwellings_Total_households_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      817    0.998    145.1    253.5        0        0 
##      .25      .50      .75      .90      .95 
##       12       27       45       69       96 
## 
## 0 (48787, 0.996), 5000 (99, 0.002), 10000 (27, 0.001), 15000 (29, 0.001),
## 20000 (25, 0.001), 25000 (9, 0.000), 30000 (5, 0.000), 35000 (6, 0.000),
## 40000 (3, 0.000), 45000 (3, 0.000), 50000 (2, 0.000), 60000 (1, 0.000),
## 70000 (1, 0.000), 80000 (1, 0.000), 85000 (1, 0.000), 125000 (2, 0.000),
## 155000 (1, 0.000), 185000 (1, 0.000), 390000 (2, 0.000)
## ---------------------------------------------------------------------------
## 2006_Census_number_of_motor_vehicles_for_households_in_occupied_private_dwellings_No_Motor_Vehicle 
##        n  missing distinct 
##    49005        0      252 
## 
## lowest : ..C  0    102  1038 105 , highest: 960  966  987  99   993 
## ---------------------------------------------------------------------------
## 2006_Census_number_of_motor_vehicles_for_households_in_occupied_private_dwellings_One_Motor_Vehicle 
##        n  missing distinct 
##    49005        0      495 
## 
## lowest : ..C   0     1002  1008  10140, highest: 978   981   987   99    999  
## ---------------------------------------------------------------------------
## 2006_Census_number_of_motor_vehicles_for_households_in_occupied_private_dwellings_Two_Motor_Vehicles 
##        n  missing distinct 
##    49005        0      509 
## 
## lowest : ..C   0     10098 1017  102  , highest: 975   99    990   9978  999  
## ---------------------------------------------------------------------------
## 2006_Census_number_of_motor_vehicles_for_households_in_occupied_private_dwellings_Three_or_More_Motor_Vehicles 
##        n  missing distinct 
##    49005        0      323 
## 
## lowest : ..C  0    1008 102  1023, highest: 954  96   981  987  99  
## ---------------------------------------------------------------------------
## 2006_Census_number_of_motor_vehicles_for_households_in_occupied_private_dwellings_Total_households_stated 
##        n  missing distinct 
##    49005        0      838 
## 
## lowest : ..C  0    1002 1005 1008, highest: 99   990  993  996  999 
## ---------------------------------------------------------------------------
## 2006_Census_number_of_motor_vehicles_for_households_in_occupied_private_dwellings_Not_Elsewhere_Included(19) 
##        n  missing distinct 
##    49005        0      181 
## 
## lowest : ..C  0    1005 1014 102 , highest: 936  945  96   972  99  
## ---------------------------------------------------------------------------
## 2006_Census_number_of_motor_vehicles_for_households_in_occupied_private_dwellings_Total_households_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      859    0.998    157.2    273.9        0        3 
##      .25      .50      .75      .90      .95 
##       15       27       48       72      105 
## 
## 0 (48773, 0.995), 5000 (111, 0.002), 10000 (24, 0.000), 15000 (32, 0.001),
## 20000 (18, 0.000), 25000 (11, 0.000), 30000 (9, 0.000), 35000 (7, 0.000),
## 40000 (2, 0.000), 45000 (6, 0.000), 55000 (2, 0.000), 70000 (1, 0.000),
## 75000 (1, 0.000), 85000 (1, 0.000), 95000 (1, 0.000), 135000 (1, 0.000),
## 140000 (1, 0.000), 165000 (1, 0.000), 2e+05 (1, 0.000), 435000 (2, 0.000)
## ---------------------------------------------------------------------------
## 2013_Census_number_of_motor_vehicles_for_households_in_occupied_private_dwellings_No_Motor_Vehicle 
##        n  missing distinct 
##    49005        0      252 
## 
## lowest : ..C   0     102   10296 105  , highest: 96    969   9786  9807  99   
## ---------------------------------------------------------------------------
## 2013_Census_number_of_motor_vehicles_for_households_in_occupied_private_dwellings_One_Motor_Vehicle 
##        n  missing distinct 
##    49005        0      508 
## 
## lowest : ..C  0    1002 1008 102 , highest: 99   990  993  996  999 
## ---------------------------------------------------------------------------
## 2013_Census_number_of_motor_vehicles_for_households_in_occupied_private_dwellings_Two_Motor_Vehicles 
##        n  missing distinct 
##    49005        0      515 
## 
## lowest : ..C  0    1005 1008 1011, highest: 981  99   990  993  996 
## ---------------------------------------------------------------------------
## 2013_Census_number_of_motor_vehicles_for_households_in_occupied_private_dwellings_Three_or_More_Motor_Vehicles 
##        n  missing distinct 
##    49005        0      335 
## 
## lowest : ..C  0    1005 1008 1011, highest: 96   966  987  99   999 
## ---------------------------------------------------------------------------
## 2013_Census_number_of_motor_vehicles_for_households_in_occupied_private_dwellings_Total_households_stated 
##        n  missing distinct 
##    49005        0      864 
## 
## lowest : ..C  0    1002 1005 1008, highest: 99   990  993  996  999 
## ---------------------------------------------------------------------------
## 2013_Census_number_of_motor_vehicles_for_households_in_occupied_private_dwellings_Not_Elsewhere_Included(19) 
##        n  missing distinct 
##    49005        0      201 
## 
## lowest : ..C  0    1005 102  105 , highest: 957  96   969  99   996 
## ---------------------------------------------------------------------------
## 2013_Census_number_of_motor_vehicles_for_households_in_occupied_private_dwellings_Total_households_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      873    0.998    167.7    292.3        0        3 
##      .25      .50      .75      .90      .95 
##       15       30       51       78      117 
## 
## lowest :      0      3      6      9     12, highest: 129078 150174 176133 204840 469500
## ---------------------------------------------------------------------------
## 2001_Census_access_to_telecommunications(20)(21)_for_households_in_occupied_private_dwellings_No_Access_to_Telecommunication_Systems 
##        n  missing distinct 
##    49005        0      174 
## 
## lowest : ..C  0    1005 102  1020, highest: 951  957  96   99   990 
## ---------------------------------------------------------------------------
## 2001_Census_access_to_telecommunications(20)(21)_for_households_in_occupied_private_dwellings_Access_to_a_Cellphone/Mobile_Phone 
##        n  missing distinct    value 
##    49005        0        1       .. 
##                 
## Value         ..
## Frequency  49005
## Proportion     1
## ---------------------------------------------------------------------------
## 2001_Census_access_to_telecommunications(20)(21)_for_households_in_occupied_private_dwellings_Access_to_a_Telephone 
##        n  missing distinct 
##    49005        0      789 
## 
## lowest : ..C  1002 1005 1008 1011, highest: 9921 9930 996  999  9996
## ---------------------------------------------------------------------------
## 2001_Census_access_to_telecommunications(20)(21)_for_households_in_occupied_private_dwellings_Access_to_a_Fax_Machine 
##        n  missing distinct 
##    49005        0      409 
## 
## lowest : ..C  0    1002 1014 102 , highest: 963  975  984  99   990 
## ---------------------------------------------------------------------------
## 2001_Census_access_to_telecommunications(20)(21)_for_households_in_occupied_private_dwellings_Access_to_the_Internet 
##        n  missing distinct 
##    49005        0      467 
## 
## lowest : ..C  0    1014 1017 102 , highest: 987  99   990  9924 999 
## ---------------------------------------------------------------------------
## 2001_Census_access_to_telecommunications(20)(21)_for_households_in_occupied_private_dwellings_Total_households_stated 
##        n  missing distinct 
##    49005        0      805 
## 
## lowest : ..C  1002 1005 1011 1014, highest: 993  9933 996  9966 999 
## ---------------------------------------------------------------------------
## 2001_Census_access_to_telecommunications(20)(21)_for_households_in_occupied_private_dwellings_Not_Elsewhere_Included(22) 
##        n  missing distinct 
##    49005        0      178 
## 
## lowest : ..C  0    102  1026 1032, highest: 93   945  96   99   990 
## ---------------------------------------------------------------------------
## 2001_Census_access_to_telecommunications(20)(21)_for_households_in_occupied_private_dwellings_Total_households_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      817    0.998    145.1    253.5        0        0 
##      .25      .50      .75      .90      .95 
##       12       27       45       69       96 
## 
## 0 (48787, 0.996), 5000 (99, 0.002), 10000 (27, 0.001), 15000 (29, 0.001),
## 20000 (25, 0.001), 25000 (9, 0.000), 30000 (5, 0.000), 35000 (6, 0.000),
## 40000 (3, 0.000), 45000 (3, 0.000), 50000 (2, 0.000), 60000 (1, 0.000),
## 70000 (1, 0.000), 80000 (1, 0.000), 85000 (1, 0.000), 125000 (2, 0.000),
## 155000 (1, 0.000), 185000 (1, 0.000), 390000 (2, 0.000)
## ---------------------------------------------------------------------------
## 2006_Census_access_to_telecommunications(20)(21)_for_households_in_occupied_private_dwellings_No_Access_to_Telecommunication_Systems 
##        n  missing distinct 
##    49005        0      146 
## 
## lowest : ..C 0   102 105 108, highest: 9   90  93  96  99 
## ---------------------------------------------------------------------------
## 2006_Census_access_to_telecommunications(20)(21)_for_households_in_occupied_private_dwellings_Access_to_a_Cellphone/Mobile_Phone 
##        n  missing distinct 
##    49005        0      702 
## 
## lowest : ..C  0    1005 1008 1011, highest: 99   990  993  996  999 
## ---------------------------------------------------------------------------
## 2006_Census_access_to_telecommunications(20)(21)_for_households_in_occupied_private_dwellings_Access_to_a_Telephone 
##        n  missing distinct 
##    49005        0      799 
## 
## lowest : ..C  0    1002 1005 1008, highest: 99   990  9912 993  999 
## ---------------------------------------------------------------------------
## 2006_Census_access_to_telecommunications(20)(21)_for_households_in_occupied_private_dwellings_Access_to_a_Fax_Machine 
##        n  missing distinct 
##    49005        0      437 
## 
## lowest : ..C  0    1008 1011 1017, highest: 963  972  984  99   996 
## ---------------------------------------------------------------------------
## 2006_Census_access_to_telecommunications(20)(21)_for_households_in_occupied_private_dwellings_Access_to_the_Internet 
##        n  missing distinct 
##    49005        0      635 
## 
## lowest : ..C   0     1002  10062 1008 , highest: 990   993   9939  9942  996  
## ---------------------------------------------------------------------------
## 2006_Census_access_to_telecommunications(20)(21)_for_households_in_occupied_private_dwellings_Total_households_stated 
##        n  missing distinct 
##    49005        0      831 
## 
## lowest : ..C  0    1002 1005 1011, highest: 99   990  993  996  999 
## ---------------------------------------------------------------------------
## 2006_Census_access_to_telecommunications(20)(21)_for_households_in_occupied_private_dwellings_Not_Elsewhere_Included(22) 
##        n  missing distinct 
##    49005        0      188 
## 
## lowest : ..C  0    102  1041 105 , highest: 963  966  987  99   996 
## ---------------------------------------------------------------------------
## 2006_Census_access_to_telecommunications(20)(21)_for_households_in_occupied_private_dwellings_Total_households_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      848    0.998    157.2    273.9        0        3 
##      .25      .50      .75      .90      .95 
##       15       27       48       72      105 
## 
## 0 (48773, 0.995), 5000 (111, 0.002), 10000 (24, 0.000), 15000 (32, 0.001),
## 20000 (18, 0.000), 25000 (11, 0.000), 30000 (9, 0.000), 35000 (7, 0.000),
## 40000 (2, 0.000), 45000 (6, 0.000), 55000 (2, 0.000), 70000 (1, 0.000),
## 75000 (1, 0.000), 85000 (1, 0.000), 95000 (1, 0.000), 135000 (1, 0.000),
## 140000 (1, 0.000), 165000 (1, 0.000), 2e+05 (1, 0.000), 435000 (2, 0.000)
## ---------------------------------------------------------------------------
## 2013_Census_access_to_telecommunications(20)(21)_for_households_in_occupied_private_dwellings_No_Access_to_Telecommunication_Systems 
##        n  missing distinct 
##    49005        0      133 
## 
## lowest : ..C  0    102  1026 105 , highest: 90   921  93   96   99  
## ---------------------------------------------------------------------------
## 2013_Census_access_to_telecommunications(20)(21)_for_households_in_occupied_private_dwellings_Access_to_a_Cellphone/Mobile_Phone 
##        n  missing distinct 
##    49005        0      774 
## 
## lowest : ..C   0     1002  10047 1005 , highest: 990   993   9936  996   999  
## ---------------------------------------------------------------------------
## 2013_Census_access_to_telecommunications(20)(21)_for_households_in_occupied_private_dwellings_Access_to_a_Telephone 
##        n  missing distinct 
##    49005        0      789 
## 
## lowest : ..C  0    1002 1005 1008, highest: 99   990  993  996  999 
## ---------------------------------------------------------------------------
## 2013_Census_access_to_telecommunications(20)(21)_for_households_in_occupied_private_dwellings_Access_to_a_Fax_Machine 
##        n  missing distinct 
##    49005        0      344 
## 
## lowest : ..C  0    102  1047 105 , highest: 972  981  99   993  999 
## ---------------------------------------------------------------------------
## 2013_Census_access_to_telecommunications(20)(21)_for_households_in_occupied_private_dwellings_Access_to_the_Internet 
##        n  missing distinct 
##    49005        0      743 
## 
## lowest : ..C  0    1002 1005 1008, highest: 99   990  993  996  999 
## ---------------------------------------------------------------------------
## 2013_Census_access_to_telecommunications(20)(21)_for_households_in_occupied_private_dwellings_Total_households_stated 
##        n  missing distinct 
##    49005        0      860 
## 
## lowest : ..C  0    1002 1005 1008, highest: 987  99   990  993  999 
## ---------------------------------------------------------------------------
## 2013_Census_access_to_telecommunications(20)(21)_for_households_in_occupied_private_dwellings_Not_Elsewhere_Included(22) 
##        n  missing distinct 
##    49005        0      204 
## 
## lowest : ..C  0    1002 102  1035, highest: 957  96   963  984  99  
## ---------------------------------------------------------------------------
## 2013_Census_access_to_telecommunications(20)(21)_for_households_in_occupied_private_dwellings_Total_households_in_occupied_private_dwellings 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0      879    0.998    167.7    292.3        0        3 
##      .25      .50      .75      .90      .95 
##       15       30       51       78      117 
## 
## lowest :      0      3      6      9     12, highest: 150174 176133 204840 469497 469500
## ---------------------------------------------------------------------------
## code.Int 
##        n  missing distinct     Info     Mean      Gmd      .05      .10 
##    49005        0    48317        1  1462027  1073533   136204   234540 
##      .25      .50      .75      .90      .95 
##   619900  1346301  2291101  2800560  3007280 
## 
## lowest :       1       2       3       4       5
## highest: 3209002 3209003 3210001 3210002 3210003
## ---------------------------------------------------------------------------

10 References