-
Notifications
You must be signed in to change notification settings - Fork 2
88 lines (56 loc) · 2.82 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: "2025-01-07"
output: html_document
---
## Dataset: Anfragestatistik des Data Shop im Statistischen Amt des Kantons Zürich ab 2015
Die Abteilung «Data» des Statistischen Amts ist die Anlaufstelle für alle Fragen zu statistischen Informationen. Das Team bewirtschaftet das statistische Grundangebot des Kanton Zürich und bietet Nutzenden kostenlose Auskunft und Beratung zu Anfragen per Telefon oder E-Mail. Seit 2015 werden Anfragen mit Metadaten erfasst und in einer Anfragenstatistik archiviert.
[Direct data shop link for dataset](https://www.zh.ch/de/politik-staat/statistik-daten/datenkatalog.html#/datasets/698@statistisches-amt-kanton-zuerich)
Auto generated R starter code for data set 698@statistisches-amt-kanton-zuerich.
## Metadata
- **Issued** `2020-08-24T00:00:00`
- **Modified** `2025-01-01T04:28:12`
- **Startdate** `2015-01-05`
- **Enddate** `2024-12-23`
- **Theme** `['http://publications.europa.eu/resource/authority/data-theme/GOVE', 'http://publications.europa.eu/resource/authority/data-theme/ECON']`
- **Keyword** `['ogd']`
- **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 : 3668
# Title : Anfragestatistik des Data Shop im Statistischen Amt des Kantons Zürich ab 2015
# Description : Spaltenüberschriften: 'id' = Nummer der Anfrage; 'erfassung' = Datum- und Zeitstempel der Anfragenerfassung; 'nutzertyp' = Nutzertyp der Anfrage; 'anfragetyp' = Anfragetyp; 'thema' = Thema der Anfrage; 'kanal' = Eingangskanal der Anfrage; 'zeitaufwand' = Geschätzter Aufwand in Minuten, um die Anfrage zu beantworten (erhoben ab 29.11.2017)
# Issued : 2022-12-02T12:18:50
# Modified : 2025-01-01T05:28:11
df <- read_delim('https://www.web.statistik.zh.ch/ogd/daten/ressourcen/KTZH_00000698_00003668.csv')
# Distribution 1
# Ktzhdistid : 3669
# Title : Anfragestatistik des Data Shop im Statistischen Amt des Kantons Zürich - kontrollierte Vokabulare
# Description : None
# Issued : 2022-12-19T13:20:10
# Modified : 2025-01-01T05:28:12
df <- read_delim('https://www.web.statistik.zh.ch/ogd/daten/ressourcen/KTZH_00000698_00003669.csv')
```
# Analyze data
```{r}
glimpse(df)
str(df)
skim(df)
head(df)
tail(df)
```
# Continue your code here...
```{r}
```
------------------------------------------------------------------------
# Questions about the data?
Statistisches Amt des Kantons Zürich | Data Shop | [email protected]