-
Notifications
You must be signed in to change notification settings - Fork 0
88 lines (56 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
---
title: "Open Government Data, provided by Canton Zurich"
date: "2024-11-30"
output: html_document
---
## Dataset: Quartalsbericht Wohnbautätigkeit
Daten werden nicht mehr nachgeführt.
[Direct data shop link for dataset](https://www.zh.ch/de/politik-staat/statistik-daten/datenkatalog.html#/datasets/120@statistisches-amt-kanton-zuerich)
Auto generated R starter code for data set 120@statistisches-amt-kanton-zuerich.
## Metadata
- **Issued** `2019-02-27T00:00:00`
- **Modified** `2024-07-15T11:49:53`
- **Startdate** `2000-12-31`
- **Enddate** `2019-12-31`
- **Theme** `['http://publications.europa.eu/resource/authority/data-theme/SOCI']`
- **Keyword** `['bautaetigkeit', 'eigentumswohnung', 'mietwohnungen', 'wohnbautaetigkeit']`
- **Publisher** `['Statistisches Amt des Kantons Zürich']`
- **Landingpage** `None`
# Load packages
```{r}
library(tidyverse)
library(skimr)
```
# Load data
- The dataset has 2 distribution(s) in CSV format.
- All available CSV distributions are listed below and can be read into a tibble.
```{r}
# Distribution 0
# Ktzhdistid : 1220
# Title : Jahresentwicklung Wohnbautätigkeit (Daten)
# Description : Daten zur Jahresentwicklung der Wohnbautätigkeit ab 2000
# Issued : 2020-02-01T00:00:00
# Modified : 2020-02-01T00:00:00
df <- read_delim('https://www.web.statistik.zh.ch/ogd/daten/ressourcen/KTZH_00000120_00001220.csv')
# Distribution 1
# Ktzhdistid : 1225
# Title : Quartalsentwicklung Wohnbautätigkeit (Daten)
# Description : Daten zur Quartalsentwicklung der Wohnbautätigkeit ab 2014
# Issued : 2020-02-01T00:00:00
# Modified : 2020-02-01T00:00:00
df <- read_delim('https://www.web.statistik.zh.ch/ogd/daten/ressourcen/KTZH_00000120_00001225.csv')
```
# Analyze data
```{r}
glimpse(df)
str(df)
skim(df)
head(df)
tail(df)
```
# Continue your code here...
```{r}
```
------------------------------------------------------------------------
# Contact
Statistisches Amt des Kantons Zürich | Analysen & Studien | [email protected]