10.57 ID Variables
20180723 From our observations so far we note that the
variable (date) acts as an identifier as does the variable
(location). Given a date and a
location we have an observation of the remaining
variables. Thus we note that these two variables are so-called
identifiers. Identifiers would not usually be used as independent
variables for building predictive analytics models.
We might get a sense of how this works with the following which will list a random sample of locations and how long the observations for that location have been collected.
ds[id] %>%
group_by(location) %>%
count() %>%
rename(days=n) %>%
mutate(years=round(days/365)) %>%
as.data.frame() %>%
sample_n(10)## location days years
## 1 Nhil 2887 8
## 2 Moree 4318 12
## 3 Cairns 4349 12
## 4 Adelaide 3924 11
## 5 MountGambier 4348 12
## 6 Wollongong 4349 12
## 7 NorfolkIsland 4318 12
## 8 Cobar 4318 12
## 9 Launceston 4349 12
## 10 Bendigo 4340 12
The data for each location ranges in length from 4 years up to 9 years, though most have 8 years of data.
ds[id] %>%
group_by(location) %>%
count() %>%
rename(days=n) %>%
mutate(years=round(days/365)) %>%
ungroup() %>%
select(years) %>%
summary()## years
## Min. : 8.00
## 1st Qu.:12.00
## Median :12.00
## Mean :11.73
## 3rd Qu.:12.00
## Max. :13.00
Your donation will support ongoing availability and give you access to the PDF version of this book. Desktop Survival Guides include Data Science, GNU/Linux, and MLHub. Books available on Amazon include Data Mining with Rattle and Essentials of Data Science. Popular open source software includes rattle, wajig, and mlhub. Hosted by Togaware, a pioneer of free and open source software since 1984. Copyright © 1995-2022 Graham.Williams@togaware.com Creative Commons Attribution-ShareAlike 4.0