Search notes:

Street number 13 in the Canton of Zürich

Frequencies of street number

The open data dataset adressen-gis-zh of the Canton of Zürich allows to plot the frequency of street numbers:
library(RMySQL)
library(tidyverse)

mySQL_kt_zh = dbConnect(MySQL(), user='rene', password='rene', dbname='kt_zh', host='localhost')

streetNumberCount <- dbGetQuery (mySQL_kt_zh, "select
   count(*)       as Anzahl,
   hausnummer     as Hausnummer
from
   kt_zh.arv_adressen_p
group by
   hausnummer
having
   count(*) > 2800");
 
streetNumberCount$Hausnummer <- as.numeric(streetNumberCount$Hausnummer);

ggplot(
    data = streetNumberCount,
    aes(Hausnummer, Anzahl)
  ) +
  geom_bar(stat='identity', fill='#ff9933') +
  geom_text(aes(label = Hausnummer, vjust= -1), size=2.5) +
  theme(axis.title.x=element_blank(),
        axis.text.x =element_blank(),
        axis.ticks.x=element_blank(),
        axis.title.y=element_blank()
  );
Github repository open-data.Kanton-Zuerich, path: /scripts/street-number-13/distribution.R
Clearly, the street number 13 is assigned significanly less often than its neighboring numbers 12 and 14:

See also

Open Data Canton of Zürich: Addresses

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1759456616, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/Data/open/Switzerland/Canton-of-Zuerich/dataset/adressen-gis-zh/street-number-13/index(77): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78