Go to TogaWare.com Home Page. Data Science Desktop Survival Guide
by Graham Williams
Duck Duck Go



CLICK HERE TO VISIT THE UPDATED SURVIVAL GUIDE

Location

20180723 From our review of the data so far we start to make some observations about the character variables. The first is location. We note that several locations were reported in the above exploration of the dataset. We can confirm the number of locations by counting the number of base::unique() values the variable has in the original dataset.

# How many locations are represented in the dataset.

ds$location %>%
  unique() %>%
  length()
## [1] 49

We may not know in general what other locations we will come across in related datasets and we already have quite a collection of 49 locations. We will retain this variable as a character data type.

Here is a list of locations and their frequencies in the dataset.

ds$location %>%
  table()
## .
##         Adelaide           Albany           Albury     AliceSprings 
##             3832             3679             3680             3680 
##    BadgerysCreek         Ballarat          Bendigo         Brisbane 
##             3632             3680             3671             3833 
##           Cairns         Canberra            Cobar     CoffsHarbour 
##             3680             4076             3649             3649 
##         Dartmoor           Darwin        GoldCoast           Hobart 
##             3649             3833             3680             3833 
##        Katherine       Launceston        Melbourne MelbourneAirport 
##             2218             3680             3833             3649 
##          Mildura            Moree     MountGambier      MountGinini 
##             3649             3649             3679             3680 
##        Newcastle             Nhil        NorahHead    NorfolkIsland 
##             3680             2218             3644             3649 
##        Nuriootpa       PearceRAAF          Penrith            Perth 
##             3648             3648             3679             3832 
##     PerthAirport         Portland         Richmond             Sale 
##             3648             3649             3649             3649 
##       SalmonGums           Sydney    SydneyAirport       Townsville 
##             3602             3984             3649             3680 
##      Tuggeranong            Uluru       WaggaWagga          Walpole 
##             3679             2218             3649             3645 
##         Watsonia      Williamtown      Witchcliffe       Wollongong 
....


Support further development by purchasing the PDF version of the book.
Other online resources include the GNU/Linux Desktop Survival Guide.
Books available on Amazon include Data Mining with Rattle and Essentials of Data Science.
Popular open source software includes rattle and wajig.
Hosted by Togaware, a pioneer of free and open source software since 1984.
Copyright © 2000-2020 Togaware Pty Ltd. . Creative Commons ShareAlike V4.